From Fedora Project Wiki

No edit summary
No edit summary
Line 14: Line 14:
##How to call virt-manager by command from Python
##How to call virt-manager by command from Python
##How to create different virtual machines from command.
##How to create different virtual machines from command.
<pre>
#!/bin/bash
virt-install \
--connect qemu:///system \
--virt-type kvm \
--name demo \
--ram 500 \
--disk path=~/Desktop/fedora/Fedora-14-i686-Live-Desktop.iso,size=8 \
--vnc \
--cdrom /dev/cdrom \
--os-variant fedora14
</pre>
##How to log the test result.
##How to log the test result.



Revision as of 06:53, 28 December 2010

Fedora Installation Automatic Test

Note.png
Note:
This is for personal note, please do not refer this.
  1. Platform
    1. virt-manager/lib-virt+KVM
  2. Test case
    1. Download installation media (which media to install? patch, rpm,iso...)
    2. Check installation media, refer QA:Installer image presence test case http://fedoraproject.org/wiki/QA:Installer_image_presence_test_case
    3. Install fedora on different archs
    4. Installation successes, exception occurs but do not block the installation, exception occurs and block the installation.
  3. Development
    1. AutoQA patch Process, refer: http://fedoraproject.org/wiki/AutoQA_Patch_Process
    2. How to download installation media from Koji and Bodhi refer: The current test events being monitored. http://git.fedorahosted.org/git/?p=autoqa.git;a=tree;f=hooks or Writing AutoQA Hooks http://fedoraproject.org/wiki/Writing_AutoQA_Hooks or by command virt-install.
    3. How to check the images and archs
    4. How to call virt-manager by command from Python
    5. How to create different virtual machines from command.
#!/bin/bash
virt-install \
--connect qemu:///system \
--virt-type kvm \
--name demo \
--ram 500 \
--disk path=~/Desktop/fedora/Fedora-14-i686-Live-Desktop.iso,size=8 \
--vnc \
--cdrom /dev/cdrom \
--os-variant fedora14

    1. How to log the test result.