1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-07 08:13:09 +00:00
os-autoinst-distri-fedora/tests/disk_webui_ext4.pm
Adam Williamson bf895fe6e7 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-28 15:40:26 -08:00

27 lines
532 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_installmethod";
assert_and_click "anaconda_webui_next";
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: