summaryrefslogtreecommitdiffstats
path: root/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py')
-rw-r--r--meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py
new file mode 100644
index 0000000000..123e7259f1
--- /dev/null
+++ b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py
@@ -0,0 +1,42 @@
1from oeqa.core.decorator.depends import OETestDepends
2from oeqa.runtime.cases.dnf import DnfTest
3from oeqa.utils.httpserver import HTTPService
4
5class DnfSelftest(DnfTest):
6
7 @classmethod
8 def setUpClass(cls):
9 cls.repo_server = HTTPService(os.path.join(cls.tc.td['WORKDIR'], 'oe-rootfs-repo'),
10 cls.tc.target.server_ip)
11 cls.repo_server.start()
12
13 @classmethod
14 def tearDownClass(cls):
15 cls.repo_server.stop()
16
17 @OETestDepends(['dnf.DnfBasicTest.test_dnf_help'])
18 def test_verify_package_feeds(self):
19 """
20 Summary: Check correct setting of PACKAGE_FEED_URIS var
21 Expected: 1. Feeds were correctly set for dnf
22 2. Update recovers packages from host's repo
23 Author: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
24 Author: Alexander Kanavin <alexander.kanavin@intel.com>
25 """
26 # When we created an image, we had to supply fake ip and port
27 # for the feeds. Now we can patch the real ones into the config file.
28 import tempfile
29 temp_file = tempfile.TemporaryDirectory(prefix="oeqa-remotefeeds-").name
30 self.tc.target.copyFrom("/etc/yum.repos.d/oe-remote-repo.repo", temp_file)
31 fixed_config = open(temp_file, "r").read().replace("bogus_ip", self.tc.target.server_ip).replace("bogus_port", str(self.repo_server.port))
32 open(temp_file, "w").write(fixed_config)
33 self.tc.target.copyTo(temp_file, "/etc/yum.repos.d/oe-remote-repo.repo")
34
35 import re
36 output_makecache = self.dnf('makecache')
37 self.assertTrue(re.match(r".*Metadata cache created", output_makecache, re.DOTALL) is not None, msg = "dnf makecache failed: %s" %(output_makecache))
38
39 output_repoinfo = self.dnf('repoinfo')
40 matchobj = re.match(r".*Repo-pkgs\s*:\s*(?P<n_pkgs>[0-9]+)", output_repoinfo, re.DOTALL)
41 self.assertTrue(matchobj is not None, msg = "Could not find the amount of packages in dnf repoinfo output: %s" %(output_repoinfo))
42 self.assertTrue(int(matchobj.group('n_pkgs')) > 0, msg = "Amount of remote packages is not more than zero: %s\n" %(output_repoinfo))