2015-08-05 06:23:59 +00:00
|
|
|
use base "anacondatest";
|
2015-02-04 16:16:21 +00:00
|
|
|
use strict;
|
|
|
|
use testapi;
|
2017-01-18 07:15:44 +00:00
|
|
|
use utils;
|
|
|
|
use anaconda;
|
2015-02-04 16:16:21 +00:00
|
|
|
|
|
|
|
sub run {
|
2015-07-31 08:31:27 +00:00
|
|
|
my $self = shift;
|
2015-02-04 16:16:21 +00:00
|
|
|
# Anaconda hub
|
2015-07-31 08:31:27 +00:00
|
|
|
# Go to INSTALLATION DESTINATION and ensure one disk is selected.
|
2017-01-18 07:15:44 +00:00
|
|
|
select_disks();
|
2015-08-05 06:23:59 +00:00
|
|
|
|
|
|
|
# check "encrypt data" checkbox
|
2015-02-04 16:16:21 +00:00
|
|
|
assert_and_click "anaconda_install_destination_encrypt_data";
|
|
|
|
assert_and_click "anaconda_spoke_done";
|
|
|
|
|
2015-08-05 06:23:59 +00:00
|
|
|
# type password for disk encryption
|
2020-01-03 01:44:45 +00:00
|
|
|
sleep 5;
|
2016-05-20 18:56:48 +00:00
|
|
|
if (get_var("SWITCHED_LAYOUT")) {
|
2016-12-21 16:41:00 +00:00
|
|
|
desktop_switch_layout "ascii", "anaconda";
|
2016-05-20 18:56:48 +00:00
|
|
|
}
|
2016-09-12 17:24:30 +00:00
|
|
|
type_safely get_var("ENCRYPT_PASSWORD");
|
|
|
|
wait_screen_change { send_key "tab"; };
|
|
|
|
type_safely get_var("ENCRYPT_PASSWORD");
|
2015-02-04 16:16:21 +00:00
|
|
|
|
|
|
|
assert_and_click "anaconda_install_destination_save_passphrase";
|
|
|
|
|
|
|
|
# Anaconda hub
|
2022-07-28 20:32:57 +00:00
|
|
|
assert_screen "anaconda_main_hub", 300;
|
2015-02-04 16:16:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1};
|
2015-02-04 16:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|