1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-18 05:24:30 +00:00
os-autoinst-distri-fedora/tests/desktop_background.pm
Lukas Ruzicka 5bcbaeeb5c Add the graphical upgrade tests.
This PR builds on some elements of the current upgrade process,
such as upgrade_boot, upgrade_preinstall, upgrade_postinstall, but
replaces the upgrade_run with graphical_upgrade_run to use graphical
methods to upgrade the system.
This would not be possible without necessary settings, that are
performed by graphical_upgrade_prerequisites.
Works for both Gnome and KDE.
2024-02-29 11:20:37 +01:00

33 lines
918 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
sub run {
check_desktop;
# If we want to check that there is a correct background used, as a part
# of self identification test, we will do it here. For now we don't do
# this for Rawhide as Rawhide doesn't have its own backgrounds and we
# don't have any requirement for what background Rawhide uses.
my $version = get_var('VERSION');
my $rawrel = get_var('RAWREL');
if ($version ne "Rawhide" && $version ne $rawrel) {
unless (check_screen "${version}_background", 30) {
if ($version eq "40") {
record_soft_failure "No backgrounds for F40 yet: https://bugzilla.redhat.com/show_bug.cgi?id=2230720";
}
else {
die "Correct background not found!";
}
}
}
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: