mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-10-31 21:44:23 +00:00
866a8efa72
This PR adds a test that uses the Blivet interface to create an LVM layout with ext4 filesystem as well as a postinstall test that checks that the LVM layout has been created correctly.
33 lines
827 B
Perl
33 lines
827 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
|
|
sub run {
|
|
assert_screen "root_console";
|
|
my $devboot = 'vda1';
|
|
|
|
if (get_var('OFW') || get_var('UEFI')) {
|
|
$devboot = 'vda2';
|
|
}
|
|
# check that lvm is present:
|
|
validate_script_output "lvdisplay | grep 'LV Status'", sub { $_ =~ m/available/ };
|
|
|
|
# Check for standard LVM attributes, w - writable, i-inherited, a-active, o-open
|
|
validate_script_output "lvs -o lv_attr", sub { $_ =~ m/wi-ao/ };
|
|
|
|
# Check that the partitions are ext4.
|
|
validate_script_output "mount | grep /dev/$devboot", sub { $_ =~ m/on \/boot type ext4/ };
|
|
|
|
# There should be one partition in the LVM.
|
|
validate_script_output "mount | grep /dev/mapper", sub { $_ =~ m/on \/ type ext4/ };
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|