66 lines
1.9 KiB
Perl
66 lines
1.9 KiB
Perl
use base "anacondatest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# Anaconda hub
|
|
assert_screen "anaconda_main_hub", 300; #
|
|
|
|
# Select package set. Default is 'graphical-server', unless FLAVOR=minimal, where default is 'server'.
|
|
# If 'default' is specified, skip selection, but verify correct default
|
|
my $packageset = get_var('PACKAGE_SET', 'graphical-server');
|
|
if ($packageset eq 'default') {
|
|
# if PACKAGE_SET=default, actually check for these:
|
|
# dvd-iso = graphical-server
|
|
# minimal-iso = server
|
|
# boot-iso = graphical-server
|
|
$self->root_console;
|
|
my $env = "graphical-server-environment";
|
|
if ( get_var('FLAVOR') eq 'minimal-iso') {
|
|
$env = "server-environment";
|
|
}
|
|
|
|
assert_script_run "egrep 'selected environment:' /tmp/anaconda.log /tmp/packaging.log | tail -1 | grep $env";
|
|
send_key "ctrl-alt-f6";
|
|
assert_screen "anaconda_main_hub", 30;
|
|
return;
|
|
}
|
|
|
|
assert_and_click "anaconda_main_hub_select_packages";
|
|
|
|
# Focus on "base environment" list
|
|
send_key "tab";
|
|
wait_still_screen 1;
|
|
send_key "tab";
|
|
wait_still_screen 1;
|
|
|
|
# In Rocky, graphical-server starts out selected in the DVD ISO so if that's
|
|
# what we're looking for we're done
|
|
if (!check_screen("anaconda_".$packageset."_selected", 1)) {
|
|
# select desired environment
|
|
# go through the list 20 times at max (to prevent infinite loop when it's missing)
|
|
for (my $i = 0; !check_screen("anaconda_".$packageset."_highlighted", 1) && $i < 20; $i++) {
|
|
send_key "down";
|
|
}
|
|
|
|
send_key "spc";
|
|
}
|
|
|
|
# check that desired environment is selected
|
|
assert_screen "anaconda_".$packageset."_selected";
|
|
|
|
assert_and_click "anaconda_spoke_done";
|
|
|
|
# Anaconda hub
|
|
assert_screen "anaconda_main_hub", 50; #
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|