From 2c8c5393a492929b75dd459889a1c1ef28e2b393 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 1 Mar 2021 08:42:48 -0600 Subject: Support label type dict on compat build The compatibility endpoint for build labels should be of type dict (not list). For backwards compatibility, we support both. Fixes: #9517 Signed-off-by: baude --- test/python/docker/compat/test_images.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/python/docker/compat/test_images.py') diff --git a/test/python/docker/compat/test_images.py b/test/python/docker/compat/test_images.py index 842e38f31..4a90069a9 100644 --- a/test/python/docker/compat/test_images.py +++ b/test/python/docker/compat/test_images.py @@ -149,6 +149,14 @@ class TestImages(unittest.TestCase): self.assertEqual(len(self.client.images.list()), 2) + def test_build_image(self): + labels = {"apple": "red", "grape": "green"} + _ = self.client.images.build(path="test/python/docker/build_labels", labels=labels, tag="labels") + image = self.client.images.get("labels") + self.assertEqual(image.labels["apple"], labels["apple"]) + self.assertEqual(image.labels["grape"], labels["grape"]) + + if __name__ == "__main__": # Setup temporary space -- cgit v1.2.3-54-g00ecf