2016-09-20 18:41:12 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use packagetest;
|
2023-05-06 14:56:50 +00:00
|
|
|
use utils;
|
2016-09-20 18:41:12 +00:00
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2016-09-20 18:41:12 +00:00
|
|
|
# switch to TTY3 for both, graphical and console tests
|
2023-02-12 22:59:37 +00:00
|
|
|
$self->root_console(tty => 3);
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2016-09-20 18:41:12 +00:00
|
|
|
# enable test repos and install test packages
|
|
|
|
prepare_test_packages;
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2016-09-20 18:41:12 +00:00
|
|
|
# check rpm agrees they installed good
|
|
|
|
verify_installed_packages;
|
2023-04-29 17:36:08 +00:00
|
|
|
if (get_var("DISTRI") eq "rocky") {
|
2023-05-06 03:57:13 +00:00
|
|
|
if (get_version_major() < 9) {
|
|
|
|
# pandoc-common is in PowerTools in Rocky Linux 8
|
|
|
|
assert_script_run 'dnf config-manager --set-enabled powertools', 60;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
# pandoc-common is in CRB in Rocky Linux 8
|
|
|
|
assert_script_run 'dnf config-manager --set-enabled crb', 60;
|
|
|
|
}
|
2023-04-29 17:36:08 +00:00
|
|
|
}
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2023-04-29 17:41:51 +00:00
|
|
|
# update the fake pandoc-common (should come from the real repo)
|
|
|
|
# this can take a long time if we get unlucky with the metadata refresh
|
|
|
|
assert_script_run 'dnf -y --disablerepo=openqa-testrepo* --disablerepo=updates-testing update pandoc-common', 600;
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2016-09-20 18:41:12 +00:00
|
|
|
# check we got the updated version
|
|
|
|
verify_updated_packages;
|
2023-05-06 03:57:13 +00:00
|
|
|
|
2023-03-18 16:44:02 +00:00
|
|
|
# now remove pandoc-common, and see if we can do a straight
|
2016-09-20 18:41:12 +00:00
|
|
|
# install from the default repos
|
2023-03-18 16:44:02 +00:00
|
|
|
assert_script_run 'dnf -y remove pandoc-common';
|
|
|
|
assert_script_run 'dnf -y --disablerepo=openqa-testrepo* --disablerepo=updates-testing install pandoc-common', 120;
|
|
|
|
assert_script_run 'rpm -V pandoc-common';
|
2016-09-20 18:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2023-02-12 22:59:37 +00:00
|
|
|
return {fatal => 1};
|
2016-09-20 18:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|