From Fedora Project Wiki

Line 57: Line 57:
The kick start options are below <ref> Kick start options: http://fedoraproject.org/wiki/Anaconda/Kickstart</ref>:
The kick start options are below <ref> Kick start options: http://fedoraproject.org/wiki/Anaconda/Kickstart</ref>:
{| class="wikitable collapsible collapsed" border="1" width="85%"
{| class="wikitable collapsible collapsed" border="1" width="85%"
! colspan="7"| Kick start options
! colspan="8"| Kick start options
|-
|-
! Options!! Values !! Description !! Install Required !! Typical Install Options !! Upgrade Required !! Typical Upgrade Options
! Operation !!Options!! Values !! Description !! Install Required !! Typical Install Options !! Upgrade Required !! Typical Upgrade Options
|-
| rowspan=6 | Install or Upgrade
|-
|-
| rowspan="4" style="background-color:green;"|install
| rowspan="4" style="background-color:green;"|install
Line 96: Line 98:
| style="background-color:green;" |graphical
| style="background-color:green;" |graphical
|
|
|-
|rowspan= 8|After Installation
|-
|style="background-color:green;"|reboot
| --reject
|
|
|
|
|
|-
|rowspan="3"|firstboot
|  --enable or --enabled
|
|rowspan="3"|no
|rowspan="3"|
|rowspan="3"|no
|rowspan="3"|
|-
| --disable or --disabled
|
|-
| --reconfig
|
|-
|shutdown
|shutdown
|
|
|
|
|
|-
|poweroff
|poweroff
|
|no
|poweroff
|no
|poweroff
|-
|-
|halt
|halt
Line 120: Line 162:
|yes
|yes
|
|
|-
|rowspan= 28|Disk Operation
|-
|-
| rowspan="5" |clearpart
| rowspan="5" |clearpart
Line 291: Line 335:
|-
|-
| --service=
| --service=
|
|-
|rowspan="3"|firstboot
|  --enable or --enabled
|
|rowspan="3"|no
|rowspan="3"|
|rowspan="3"|no
|rowspan="3"|
|-
| --disable or --disabled
|
|-
| --reconfig
|
|
|-
|-
Line 328: Line 358:
| --level=
| --level=
|
|
|-
|poweroff
|poweroff
|
|no
|poweroff
|no
|poweroff
|-
|-
| rowspan="12"| raid
| rowspan="12"| raid
Line 376: Line 398:
|-
|-
| --backuppassphrase
| --backuppassphrase
|
|-
|style="background-color:green;"|reboot
| --reject
|
|
|
|
|
|-
|shutdown
|shutdown
|
|
|
|
|
|
|-
|-

Revision as of 07:08, 16 March 2011

QA.png


This page provides a high-level roadmap for implementing the Is_anaconda_broken_proposal project. More detailed tasks can be found in autoqa TRAC roadmap. We follow these steps to define the methods by which we initiate testing

Step 1: Identify boot methods, retrieve files and check file sanity

Method Files Sanity Implementation
URL initrd.img, vmlinuz sha256sum,md5sum /autoinstall/url_install/url_sanity.py
DVD DVD.iso size,sha256sum, md5sum /autoinstall/dvd_install/dvd_sanity.py
CD 4 CDs size,sha256sum, md5sum /autoinstall/cd_install/cd_sanity.py
Minimal Boot Media boot.iso size,sha256sum, md5sum /autoinstall/bootiso_install/bootiso_sanity.py
Live live.iso size,sha256sum, md5sum /autoinstall/live_install/live_sanity.py

Step 2: Prepare kick start file to cover test cases

Most of the test cases can be covered by configure different kick start files. There are kickstart templates in different installation method folders.

Method Kick Start File Template
URL /autoinstall/url_install/url_ks.cfg
DVD /autoinstall/dvd_install/dvd_ks.cfg
CD /autoinstall/cd_install/cd_ks.cfg
Minimal Boot Media /autoinstall/bootiso_install/bootiso_ks.cfg
Live /autoinstall/live_install/live_ks.cfg

The kick start options are below [1]:


List test scenarios,it will make clear that which suite needs to support.

Step 3: Install Fedora with virt-install

from virtguest import VirtGuest, the methods to initialize a guest for both tree compose and iso image have been implemented.

step 4

Identify potential test drivers that trigger off of those events.

Step 5

Write test drivers using requirements gathered in steps #2,#3,#4


Key

Set priorities for each test. The test drivers will support the tests with high priority.

Colour Explanation
yes supported and default (high priority)
yes supported (medium priority)
yes supported (low priority)
no unsupported configuration
unknown unknown

References