mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
1a65993d36
Signed-off-by: Adam Williamson <awilliam@redhat.com>
33 lines
919 B
Perl
33 lines
919 B
Perl
use base "anacondatest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
select_rescue_mode;
|
|
# continue
|
|
type_string "1\n";
|
|
assert_screen "rescue_enter_pass", 60; # it might take time to scan all disks
|
|
type_string get_var("ENCRYPT_PASSWORD", "weakpassword");
|
|
send_key "ret";
|
|
assert_screen "rescue_mounted", 60; # it also might take time to mount disk
|
|
send_key "ret";
|
|
|
|
# check whether disk was mounted
|
|
validate_script_output "mount", sub { $_ =~ m/\/mnt\/sysimage/ };
|
|
# try to access home in chroot
|
|
assert_script_run "chroot /mnt/sysimage ls -la /home/test";
|
|
# try to write and read a file
|
|
assert_script_run "chroot /mnt/sysimage /bin/bash -c 'echo Hello, world > /tmp/openqa_test'";
|
|
validate_script_output "chroot /mnt/sysimage cat /tmp/openqa_test", sub { $_ =~ m/Hello, world/ };
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|