2016-09-20 18:41:12 +00:00
|
|
|
package packagetest;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use base 'Exporter';
|
|
|
|
use Exporter;
|
|
|
|
|
|
|
|
use testapi;
|
|
|
|
our @EXPORT = qw/prepare_test_packages verify_installed_packages verify_updated_packages/;
|
|
|
|
|
|
|
|
# enable the openqa test package repositories and install the main
|
|
|
|
# test packages, remove python3-kickstart and install the fake one
|
|
|
|
sub prepare_test_packages {
|
|
|
|
# remove python3-kickstart if installed (we don't use assert
|
|
|
|
# here in case it's not)
|
2016-10-20 16:24:48 +00:00
|
|
|
script_run 'dnf -y remove python3-kickstart', 180;
|
2016-09-20 18:41:12 +00:00
|
|
|
# grab the test repo definitions
|
|
|
|
assert_script_run 'curl -o /etc/yum.repos.d/openqa-testrepo-1.repo https://fedorapeople.org/groups/qa/openqa-repos/openqa-testrepo-1.repo';
|
|
|
|
# install the test packages from repo1
|
|
|
|
assert_script_run 'dnf -y --disablerepo=* --enablerepo=openqa-testrepo-1 install python3-kickstart';
|
2018-03-29 02:42:31 +00:00
|
|
|
if (get_var("DESKTOP") eq 'kde' && get_var("TEST") eq 'desktop_update_graphical') {
|
|
|
|
# kick pkcon so our special update will definitely get installed
|
|
|
|
assert_script_run 'pkcon refresh force';
|
|
|
|
}
|
2016-09-20 18:41:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# check our test packages installed correctly (this is a test that dnf
|
|
|
|
# actually does what it claims)
|
|
|
|
sub verify_installed_packages {
|
|
|
|
validate_script_output 'rpm -q python3-kickstart', sub { $_ =~ m/^python3-kickstart-1.1.noarch$/ };
|
|
|
|
assert_script_run 'rpm -V python3-kickstart';
|
|
|
|
}
|
|
|
|
|
|
|
|
# check updating the test packages and the fake python3-kickstart work
|
|
|
|
# as expected
|
|
|
|
sub verify_updated_packages {
|
|
|
|
# we don't know what version of python3-kickstart we'll actually
|
|
|
|
# get, so just check it's *not* the fake one
|
|
|
|
validate_script_output 'rpm -q python3-kickstart', sub { $_ !~ m/^python3-kickstart-1-1.noarch$/ };
|
|
|
|
assert_script_run 'rpm -V python3-kickstart';
|
|
|
|
}
|