1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-18 21:47:23 +00:00
os-autoinst-distri-fedora/tests/unwanted_packages.pm
Adam Williamson 6c5507b174 Add an 'unwanted packages' test, run on Workstation for now (#218)
This adds a test that just fails if any one of a given list of
unwanted packages is installed. This was a request for the
Workstation edition from @catanzaro so I've just implemented it
for Workstation so far, but it's designed to be easily extended
to cover other subvariants too if we want.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2021-05-03 08:59:46 -07:00

29 lines
528 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
sub run {
my $self = shift;
bypass_1691487 unless (get_var("DESKTOP"));
# switch to TTY3 for both, graphical and console tests
$self->root_console(tty=>3);
my @unwanteds;
my $subv = get_var("SUBVARIANT");
if ($subv eq "Workstation") {
@unwanteds = ("gtk2");
}
for my $unwanted (@unwanteds) {
assert_script_run "! rpm -q $unwanted";
}
}
sub test_flags {
return { fatal => 1 };
}
1;
# vim: set sw=4 et: