2015-09-08 13:54:22 +00:00
|
|
|
use base "anacondatest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
2017-01-18 07:15:44 +00:00
|
|
|
use anaconda;
|
2015-09-08 13:54:22 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# Anaconda hub
|
|
|
|
# Go to INSTALLATION DESTINATION and ensure one disk is selected.
|
2017-01-18 07:15:44 +00:00
|
|
|
select_disks();
|
2015-09-08 13:54:22 +00:00
|
|
|
assert_and_click "anaconda_spoke_done";
|
|
|
|
|
|
|
|
# the only provided disk should be automatically selected and full
|
|
|
|
assert_and_click "anaconda_install_destination_reclaim_space_btn";
|
|
|
|
|
|
|
|
# select first partition
|
|
|
|
assert_and_click "anaconda_install_destination_reclaim_space_first_partition";
|
|
|
|
|
|
|
|
# shrink partition
|
|
|
|
assert_and_click "anaconda_install_destination_reclaim_space_shrink_btn";
|
|
|
|
assert_and_click "anaconda_install_destination_reclaim_space_shrink_slider";
|
|
|
|
|
|
|
|
assert_and_click "anaconda_install_destination_reclaim_space_btn";
|
|
|
|
|
|
|
|
# Anaconda hub
|
2022-07-28 20:32:57 +00:00
|
|
|
assert_screen "anaconda_main_hub", 300;
|
2015-09-08 13:54:22 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1};
|
2015-09-08 13:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|