1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2026-07-27 07:45:59 +00:00
os-autoinst-distri-fedora/tests/disk_guided_encrypted.pm
Lukáš Růžička 4a5673d313 Test keyboard layout in webUI
This PR tests that a keyboard layout can be selected during the
installation process and that this keyboard layout copies into
the installed system.

According to the filed issue it should:

1. boot the GNOME image - passed
2. click on keyboard settings and select a second layout - passed
3. verify that installation is blocked and warning shown - passed
4. remove the US layout and leave just the other - passed
5. enable LUKS encryption with the alternative layout - passed
6. proceed with installation - passed
7. provide correct LUKS password in alternative layout to log onto the
   system - passed
8. check that 'localectl' matches the previous selection - passed

Fixes: https://pagure.io/fedora-qa/os-autoinst-distri-fedora/issue/388
2025-09-05 11:19:11 -07:00

47 lines
1.1 KiB
Perl

use base "anacondatest";
use strict;
use testapi;
use utils;
use anaconda;
sub run {
my $self = shift;
# If this is on webUI, handle the encryption the webUI style.
# Otherwise proceed the old way.
if (check_screen("anaconda_webui_review", timeout => 120)) {
webui_encrypt_disk();
}
else {
# Anaconda hub
# Go to INSTALLATION DESTINATION and ensure one disk is selected.
select_disks();
# check "encrypt data" checkbox
assert_and_click "anaconda_install_destination_encrypt_data";
assert_and_click "anaconda_spoke_done";
# type password for disk encryption
sleep 5;
if (get_var("SWITCHED_LAYOUT")) {
desktop_switch_layout "ascii", "anaconda";
}
type_safely get_var("ENCRYPT_PASSWORD");
wait_screen_change { send_key "tab"; };
type_safely get_var("ENCRYPT_PASSWORD");
assert_and_click "anaconda_install_destination_save_passphrase";
# Anaconda hub
assert_screen "anaconda_main_hub", 300;
}
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: