Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 5 | import os |
| 6 | import re |
| 7 | import subprocess |
| 8 | from oeqa.utils.httpserver import HTTPService |
| 9 | |
| 10 | from oeqa.runtime.case import OERuntimeTestCase |
| 11 | from oeqa.core.decorator.depends import OETestDepends |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 12 | from oeqa.core.decorator.data import skipIfNotDataVar, skipIfNotFeature, skipIfInDataVar, skipIfNotInDataVar |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 13 | from oeqa.runtime.decorator.package import OEHasPackage |
| 14 | |
| 15 | class DnfTest(OERuntimeTestCase): |
| 16 | |
| 17 | def dnf(self, command, expected = 0): |
| 18 | command = 'dnf %s' % command |
| 19 | status, output = self.target.run(command, 1500) |
| 20 | message = os.linesep.join([command, output]) |
| 21 | self.assertEqual(status, expected, message) |
| 22 | return output |
| 23 | |
| 24 | class DnfBasicTest(DnfTest): |
| 25 | |
| 26 | @skipIfNotFeature('package-management', |
| 27 | 'Test requires package-management to be in IMAGE_FEATURES') |
| 28 | @skipIfNotDataVar('IMAGE_PKGTYPE', 'rpm', |
| 29 | 'RPM is not the primary package manager') |
| 30 | @OEHasPackage(['dnf']) |
| 31 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 32 | def test_dnf_help(self): |
| 33 | self.dnf('--help') |
| 34 | |
| 35 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 36 | def test_dnf_version(self): |
| 37 | self.dnf('--version') |
| 38 | |
| 39 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 40 | def test_dnf_info(self): |
| 41 | self.dnf('info dnf') |
| 42 | |
| 43 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 44 | def test_dnf_search(self): |
| 45 | self.dnf('search dnf') |
| 46 | |
| 47 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 48 | def test_dnf_history(self): |
| 49 | self.dnf('history') |
| 50 | |
| 51 | class DnfRepoTest(DnfTest): |
| 52 | |
| 53 | @classmethod |
| 54 | def setUpClass(cls): |
| 55 | cls.repo_server = HTTPService(os.path.join(cls.tc.td['WORKDIR'], 'oe-testimage-repo'), |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 56 | cls.tc.target.server_ip, logger=cls.tc.logger) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 57 | cls.repo_server.start() |
| 58 | |
| 59 | @classmethod |
| 60 | def tearDownClass(cls): |
| 61 | cls.repo_server.stop() |
| 62 | |
| 63 | def dnf_with_repo(self, command): |
| 64 | pkgarchs = os.listdir(os.path.join(self.tc.td['WORKDIR'], 'oe-testimage-repo')) |
| 65 | deploy_url = 'http://%s:%s/' %(self.target.server_ip, self.repo_server.port) |
| 66 | cmdlinerepoopts = ["--repofrompath=oe-testimage-repo-%s,%s%s" %(arch, deploy_url, arch) for arch in pkgarchs] |
| 67 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 68 | output = self.dnf(" ".join(cmdlinerepoopts) + " --nogpgcheck " + command) |
| 69 | return output |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 70 | |
| 71 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 72 | def test_dnf_makecache(self): |
| 73 | self.dnf_with_repo('makecache') |
| 74 | |
| 75 | |
| 76 | # Does not work when repo is specified on the command line |
| 77 | # @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
| 78 | # def test_dnf_repolist(self): |
| 79 | # self.dnf_with_repo('repolist') |
| 80 | |
| 81 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 82 | def test_dnf_repoinfo(self): |
| 83 | self.dnf_with_repo('repoinfo') |
| 84 | |
| 85 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 86 | def test_dnf_install(self): |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 87 | output = self.dnf_with_repo('list run-postinsts-dev') |
| 88 | if 'Installed Packages' in output: |
| 89 | self.dnf_with_repo('remove -y run-postinsts-dev') |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 90 | self.dnf_with_repo('install -y run-postinsts-dev') |
| 91 | |
| 92 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 93 | def test_dnf_install_dependency(self): |
| 94 | self.dnf_with_repo('remove -y run-postinsts') |
| 95 | self.dnf_with_repo('install -y run-postinsts-dev') |
| 96 | |
| 97 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install_dependency']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 98 | def test_dnf_install_from_disk(self): |
| 99 | self.dnf_with_repo('remove -y run-postinsts-dev') |
| 100 | self.dnf_with_repo('install -y --downloadonly run-postinsts-dev') |
| 101 | status, output = self.target.run('find /var/cache/dnf -name run-postinsts-dev*rpm', 1500) |
| 102 | self.assertEqual(status, 0, output) |
| 103 | self.dnf_with_repo('install -y %s' % output) |
| 104 | |
| 105 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install_from_disk']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 106 | def test_dnf_install_from_http(self): |
| 107 | output = subprocess.check_output('%s %s -name run-postinsts-dev*' % (bb.utils.which(os.getenv('PATH'), "find"), |
| 108 | os.path.join(self.tc.td['WORKDIR'], 'oe-testimage-repo')), shell=True).decode("utf-8") |
| 109 | rpm_path = output.split("/")[-2] + "/" + output.split("/")[-1] |
| 110 | url = 'http://%s:%s/%s' %(self.target.server_ip, self.repo_server.port, rpm_path) |
| 111 | self.dnf_with_repo('remove -y run-postinsts-dev') |
| 112 | self.dnf_with_repo('install -y %s' % url) |
| 113 | |
| 114 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 115 | def test_dnf_reinstall(self): |
| 116 | self.dnf_with_repo('reinstall -y run-postinsts-dev') |
| 117 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 118 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 119 | @skipIfInDataVar('DISTRO_FEATURES', 'usrmerge', 'Test run when not enable usrmerge') |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 120 | @OEHasPackage('busybox') |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 121 | def test_dnf_installroot(self): |
| 122 | rootpath = '/home/root/chroot/test' |
| 123 | #Copy necessary files to avoid errors with not yet installed tools on |
| 124 | #installroot directory. |
| 125 | self.target.run('mkdir -p %s/etc' % rootpath, 1500) |
| 126 | self.target.run('mkdir -p %s/bin %s/sbin %s/usr/bin %s/usr/sbin' % (rootpath, rootpath, rootpath, rootpath), 1500) |
| 127 | self.target.run('mkdir -p %s/dev' % rootpath, 1500) |
| 128 | #Handle different architectures lib dirs |
| 129 | self.target.run('mkdir -p %s/lib' % rootpath, 1500) |
| 130 | self.target.run('mkdir -p %s/libx32' % rootpath, 1500) |
| 131 | self.target.run('mkdir -p %s/lib64' % rootpath, 1500) |
| 132 | self.target.run('cp /lib/libtinfo.so.5 %s/lib' % rootpath, 1500) |
| 133 | self.target.run('cp /libx32/libtinfo.so.5 %s/libx32' % rootpath, 1500) |
| 134 | self.target.run('cp /lib64/libtinfo.so.5 %s/lib64' % rootpath, 1500) |
| 135 | self.target.run('cp -r /etc/rpm %s/etc' % rootpath, 1500) |
| 136 | self.target.run('cp -r /etc/dnf %s/etc' % rootpath, 1500) |
| 137 | self.target.run('cp /bin/sh %s/bin' % rootpath, 1500) |
| 138 | self.target.run('mount -o bind /dev %s/dev/' % rootpath, 1500) |
| 139 | self.dnf_with_repo('install --installroot=%s -v -y --rpmverbosity=debug busybox run-postinsts' % rootpath) |
| 140 | status, output = self.target.run('test -e %s/var/cache/dnf' % rootpath, 1500) |
| 141 | self.assertEqual(0, status, output) |
| 142 | status, output = self.target.run('test -e %s/bin/busybox' % rootpath, 1500) |
| 143 | self.assertEqual(0, status, output) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 144 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 145 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 146 | @skipIfNotInDataVar('DISTRO_FEATURES', 'usrmerge', 'Test run when enable usrmege') |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 147 | @OEHasPackage('busybox') |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 148 | def test_dnf_installroot_usrmerge(self): |
| 149 | rootpath = '/home/root/chroot/test' |
| 150 | #Copy necessary files to avoid errors with not yet installed tools on |
| 151 | #installroot directory. |
| 152 | self.target.run('mkdir -p %s/etc' % rootpath, 1500) |
| 153 | self.target.run('mkdir -p %s/usr/bin %s/usr/sbin' % (rootpath, rootpath), 1500) |
| 154 | self.target.run('ln -sf -r %s/usr/bin %s/bin' % (rootpath, rootpath), 1500) |
| 155 | self.target.run('ln -sf -r %s/usr/sbin %s/sbin' % (rootpath, rootpath), 1500) |
| 156 | self.target.run('mkdir -p %s/dev' % rootpath, 1500) |
| 157 | #Handle different architectures lib dirs |
| 158 | self.target.run('mkdir -p %s/usr/lib' % rootpath, 1500) |
| 159 | self.target.run('mkdir -p %s/usr/libx32' % rootpath, 1500) |
| 160 | self.target.run('mkdir -p %s/usr/lib64' % rootpath, 1500) |
| 161 | self.target.run('cp /lib/libtinfo.so.5 %s/usr/lib' % rootpath, 1500) |
| 162 | self.target.run('cp /libx32/libtinfo.so.5 %s/usr/libx32' % rootpath, 1500) |
| 163 | self.target.run('cp /lib64/libtinfo.so.5 %s/usr/lib64' % rootpath, 1500) |
| 164 | self.target.run('ln -sf -r %s/lib %s/usr/lib' % (rootpath,rootpath), 1500) |
| 165 | self.target.run('ln -sf -r %s/libx32 %s/usr/libx32' % (rootpath,rootpath), 1500) |
| 166 | self.target.run('ln -sf -r %s/lib64 %s/usr/lib64' % (rootpath,rootpath), 1500) |
| 167 | self.target.run('cp -r /etc/rpm %s/etc' % rootpath, 1500) |
| 168 | self.target.run('cp -r /etc/dnf %s/etc' % rootpath, 1500) |
| 169 | self.target.run('cp /bin/sh %s/bin' % rootpath, 1500) |
| 170 | self.target.run('mount -o bind /dev %s/dev/' % rootpath, 1500) |
| 171 | self.dnf_with_repo('install --installroot=%s -v -y --rpmverbosity=debug busybox run-postinsts' % rootpath) |
| 172 | status, output = self.target.run('test -e %s/var/cache/dnf' % rootpath, 1500) |
| 173 | self.assertEqual(0, status, output) |
| 174 | status, output = self.target.run('test -e %s/bin/busybox' % rootpath, 1500) |
| 175 | self.assertEqual(0, status, output) |
| 176 | |
| 177 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_makecache']) |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 178 | def test_dnf_exclude(self): |
| 179 | excludepkg = 'curl-dev' |
| 180 | self.dnf_with_repo('install -y curl*') |
| 181 | self.dnf('list %s' % excludepkg, 0) |
| 182 | #Avoid remove dependencies to skip some errors on different archs and images |
| 183 | self.dnf_with_repo('remove --setopt=clean_requirements_on_remove=0 -y curl*') |
| 184 | #check curl-dev is not installed adter removing all curl occurrences |
| 185 | status, output = self.target.run('dnf list --installed | grep %s'% excludepkg, 1500) |
| 186 | self.assertEqual(1, status, "%s was not removed, is listed as installed"%excludepkg) |
| 187 | self.dnf_with_repo('install -y --exclude=%s --exclude=curl-staticdev curl*' % excludepkg) |
| 188 | #check curl-dev is not installed after being excluded |
| 189 | status, output = self.target.run('dnf list --installed | grep %s'% excludepkg , 1500) |
| 190 | self.assertEqual(1, status, "%s was not excluded, is listed as installed"%excludepkg) |