From 4b384e08a9680d480976ab575ecf54acdb4d1922 Mon Sep 17 00:00:00 2001 From: Matej Vasek Date: Fri, 14 Jan 2022 17:08:52 +0100 Subject: Add IndexConfigs to compat /info endpoint Signed-off-by: Matej Vasek --- test/python/docker/compat/test_system.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/python/docker/compat') 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() -- cgit v1.2.3-54-g00ecf