mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-22 13:11:26 +00:00
Check default package selection is correct
This adds a check that the default package set selection is actually correct, where possible and appropriate, as part of the `_software_selection` test. We do this by examining the `packaging.log` log file and checking which environment group was selected. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
ffa7ca2447
commit
d070ad44a5
@ -3,13 +3,28 @@ use strict;
|
|||||||
use testapi;
|
use testapi;
|
||||||
|
|
||||||
sub run {
|
sub run {
|
||||||
|
my $self = shift;
|
||||||
# Anaconda hub
|
# Anaconda hub
|
||||||
assert_screen "anaconda_main_hub", 300; #
|
assert_screen "anaconda_main_hub", 300; #
|
||||||
|
|
||||||
# Select package set. Minimal is the default, if 'default' is specified, skip selection.
|
# Select package set. Minimal is the default, if 'default' is specified, skip selection,
|
||||||
|
# but verify correct default in some cases
|
||||||
my $packageset = get_var('PACKAGE_SET', 'minimal');
|
my $packageset = get_var('PACKAGE_SET', 'minimal');
|
||||||
if ($packageset eq 'default' || get_var('MODULAR')) {
|
if ($packageset eq 'default' || get_var('MODULAR')) {
|
||||||
return
|
# we can't or don't want to check the selected package set in these cases
|
||||||
|
return if (get_var('CANNED') || get_var('LIVE') || get_var('MEMCHECK'));
|
||||||
|
$self->root_console;
|
||||||
|
my $env = 'custom-environment';
|
||||||
|
if (get_var('SUBVARIANT') eq 'Server') {
|
||||||
|
$env = 'server-product-environment';
|
||||||
|
}
|
||||||
|
elsif (get_var('SUBVARIANT') eq 'Workstation') {
|
||||||
|
$env = 'workstation-product-environment';
|
||||||
|
}
|
||||||
|
assert_script_run "grep 'selected env' /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";
|
assert_and_click "anaconda_main_hub_select_packages";
|
||||||
|
Loading…
Reference in New Issue
Block a user