diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-19 09:29:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 09:29:05 -0500 |
commit | 8301a7cd828c4576c1e581cb2dd376f42a363a11 (patch) | |
tree | 92a32bf4246be2be4cd5325372de7f538c41a27c /test/python/docker/compat/test_system.py | |
parent | b63e716ffc95f4c4c77a06a9d20085bdcbb67059 (diff) | |
parent | 4b384e08a9680d480976ab575ecf54acdb4d1922 (diff) | |
download | podman-8301a7cd828c4576c1e581cb2dd376f42a363a11.tar.gz podman-8301a7cd828c4576c1e581cb2dd376f42a363a11.tar.bz2 podman-8301a7cd828c4576c1e581cb2dd376f42a363a11.zip |
Merge pull request #12862 from matejvasek/fix-info-ep
Add IndexConfigs info to compat /info endpoint
Diffstat (limited to 'test/python/docker/compat/test_system.py')
-rw-r--r-- | test/python/docker/compat/test_system.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/python/docker/compat/test_system.py b/test/python/docker/compat/test_system.py index 131b18991..a928de0ee 100644 --- a/test/python/docker/compat/test_system.py +++ b/test/python/docker/compat/test_system.py @@ -54,7 +54,10 @@ class TestSystem(unittest.TestCase): return super().tearDownClass() def test_Info(self): - self.assertIsNotNone(self.client.info()) + info = self.client.info() + self.assertIsNotNone(info) + self.assertEqual(info["RegistryConfig"]["IndexConfigs"]["localhost:5000"]["Secure"], False) + self.assertEqual(info["RegistryConfig"]["IndexConfigs"]["localhost:5000"]["Mirrors"], ["mirror.localhost:5000"]) def test_info_container_details(self): info = self.client.info() |