1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-01-30 04:03:08 +00:00
os-autoinst-distri-fedora/tests/disk_webui_ext4.pm
Adam Williamson 10c5ff7038 Add initial webUI custom install tests (xfs, ext4)
This adds two initial custom layout install tests for webUI, and
wires up some library functions for other tests to use. They may
need refining over time but this should be good enough for a
start.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2025-01-17 10:27:17 -08:00

27 lines
526 B
Perl

use base "anacondatest";
use strict;
use testapi;
use anaconda;
sub run {
my $self = shift;
webui_custom_start;
webui_custom_create_disklabel;
webui_custom_boot_partitions;
webui_custom_add_partition(filesystem => 'ext4', mountpoint => '/');
assert_and_click "anaconda_webui_custom_return";
assert_and_click "anaconda_webui_continue";
assert_screen "anaconda_webui_welcome";
assert_and_click "anaconda_webui_next";
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: