2015-01-28 10:00:58 +00:00
TESTCASES = {
" QA:Testcase_Boot_default_install Server offline " : {
2015-01-30 13:58:12 +00:00
" section " : ' Default boot and install ' ,
" env " : " $RUNARCH$ " ,
" type " : " Installation " ,
} ,
" QA:Testcase_Boot_default_install Server netinst " : {
" section " : ' Default boot and install ' ,
2015-01-28 10:00:58 +00:00
" env " : " $RUNARCH$ " ,
" type " : " Installation " ,
} ,
" QA:Testcase_install_to_VirtIO " : {
" section " : " Storage devices " ,
" env " : " x86 " ,
" type " : " Installation " ,
} ,
" QA:Testcase_partitioning_guided_empty " : {
" section " : " Guided storage configuration " ,
2015-01-30 13:58:12 +00:00
" env " : " x86 " , # Probably a bug in relval - column name is "x86 BIOS", but there is a comment there just behind 'x86' which probably makes it strip the rest
2015-01-28 10:00:58 +00:00
" type " : " Installation " ,
} ,
" QA:Testcase_Anaconda_User_Interface_Graphical " : {
" section " : " User interface " ,
" env " : " Result " ,
" type " : " Installation " ,
} ,
" QA:Testcase_Anaconda_user_creation " : {
" section " : " Miscellaneous " ,
" env " : " x86 " ,
" type " : " Installation " ,
} ,
" QA:Testcase_install_to_PATA " : {
" section " : " Storage devices " ,
" env " : " x86 " ,
" type " : " Installation " ,
} ,
" QA:Testcase_partitioning_guided_delete_all " : {
" section " : " Guided storage configuration " ,
2015-01-30 13:58:12 +00:00
" env " : " x86 " , # Probably a bug in relval - column name is "x86 BIOS", but there is a comment there just behind 'x86' which probably makes it strip the rest
2015-01-28 10:00:58 +00:00
" type " : " Installation " ,
} ,
" QA:Testcase_install_to_SATA " : {
" section " : " Storage devices " ,
" env " : " x86 " ,
" type " : " Installation " ,
} ,
" QA:Testcase_partitioning_guided_multi_select " : {
" section " : " Guided storage configuration " ,
2015-01-30 13:58:12 +00:00
" env " : " x86 " , # Probably a bug in relval - column name is "x86 BIOS", but there is a comment there just behind 'x86' which probably makes it strip the rest
2015-01-28 10:00:58 +00:00
" type " : " Installation " ,
} ,
" QA:Testcase_install_to_SCSI " : {
" section " : " Storage devices " ,
" env " : " x86 " ,
" type " : " Installation " ,
} ,
" QA:Testcase_Anaconda_updates.img_via_URL " : {
" section " : " Miscellaneous " ,
" env " : " Result " ,
" type " : " Installation " ,
} ,
" QA:Testcase_kickstart_user_creation " : {
" section " : " Kickstart " ,
" env " : " Result " ,
" type " : " Installation " ,
} ,
" QA:Testcase_Kickstart_Http_Server_Ks_Cfg " : {
" section " : " Kickstart " ,
" env " : " Result " ,
" type " : " Installation " ,
} ,
2015-02-04 13:54:20 +00:00
" QA:Testcase_install_repository_Mirrorlist_graphical " : {
" section " : " Installation repositories " ,
" env " : " result " ,
" type " : " Installation " ,
} ,
" QA:Testcase_install_repository_HTTP/FTP_graphical " : {
" section " : " Installation repositories " ,
" env " : " result " ,
" type " : " Installation " ,
} ,
" QA:Testcase_install_repository_HTTP/FTP_variation " : {
" section " : " Installation repositories " ,
" env " : " result " ,
" type " : " Installation " ,
} ,
2015-01-28 10:00:58 +00:00
# "": {
# "section": "",
# "env": "x86",
# "type": "Installation",
# },
}
TESTSUITES = {
" server_simple " : [
2015-01-30 13:58:12 +00:00
" QA:Testcase_Boot_default_install Server netinst " ,
2015-01-28 10:00:58 +00:00
" QA:Testcase_install_to_VirtIO " ,
2015-02-04 13:54:20 +00:00
" QA:Testcase_partitioning_guided_empty " ,
2015-01-28 10:00:58 +00:00
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
] ,
" server_delete_pata " : [
2015-01-30 13:58:12 +00:00
" QA:Testcase_Boot_default_install Server netinst " ,
2015-01-28 10:00:58 +00:00
" QA:Testcase_install_to_PATA " ,
" QA:Testcase_partitioning_guided_delete_all " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
] ,
" server_sata_multi " : [
2015-01-30 13:58:12 +00:00
" QA:Testcase_Boot_default_install Server netinst " ,
2015-01-28 10:00:58 +00:00
" QA:Testcase_install_to_SATA " ,
" QA:Testcase_partitioning_guided_multi_select " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
] ,
2015-01-30 13:58:12 +00:00
" server_scsi_updates_img " : [
" QA:Testcase_Boot_default_install Server netinst " ,
2015-01-28 10:00:58 +00:00
" QA:Testcase_install_to_SCSI " ,
" QA:Testcase_partitioning_guided_empty " ,
" QA:Testcase_Anaconda_updates.img_via_URL " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
] ,
" server_kickstart_user_creation " : [
" QA:Testcase_install_to_VirtIO " ,
" QA:Testcase_Anaconda_user_creation " ,
" QA:Testcase_kickstart_user_creation " ,
" QA:Testcase_Kickstart_Http_Server_Ks_Cfg " ,
] ,
2015-02-04 13:54:20 +00:00
" server_mirrorlist_graphical " : [
" QA:Testcase_Boot_default_install Server netinst " ,
" QA:Testcase_install_to_VirtIO " ,
" QA:Testcase_partitioning_guided_empty " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
" QA:Testcase_install_repository_Mirrorlist_graphical " ,
] ,
" server_repository_http_graphical " : [
" QA:Testcase_Boot_default_install Server netinst " ,
" QA:Testcase_install_to_VirtIO " ,
" QA:Testcase_partitioning_guided_empty " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
" QA:Testcase_install_repository_HTTP/FTP_graphical " ,
] ,
" server_mirrorlist_http_variation " : [
" QA:Testcase_Boot_default_install Server netinst " ,
" QA:Testcase_install_to_VirtIO " ,
" QA:Testcase_partitioning_guided_empty " ,
" QA:Testcase_Anaconda_User_Interface_Graphical " ,
" QA:Testcase_Anaconda_user_creation " ,
" QA:Testcase_install_repository_HTTP/FTP_variation " ,
] ,
2015-01-28 10:00:58 +00:00
}