From d7770df5ef9f6085a5e31e3260f7dc1f0056f162 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Wed, 24 Jun 2020 12:40:55 -0700 Subject: Fix python dockerpy tests * Refactor packaging so unittest discovery works * Refactor tests to use python3-docker.rpm that ships with Fedora32 * Flush image cache between tests suites * Update documentation to reflect changes Outstanding issue: * client.get_image() does not fail if image does not exist Signed-off-by: Jhon Honce --- test/python/dockerpy/tests/test_info_version.py | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 test/python/dockerpy/tests/test_info_version.py (limited to 'test/python/dockerpy/tests/test_info_version.py') diff --git a/test/python/dockerpy/tests/test_info_version.py b/test/python/dockerpy/tests/test_info_version.py new file mode 100644 index 000000000..e3ee18ec7 --- /dev/null +++ b/test/python/dockerpy/tests/test_info_version.py @@ -0,0 +1,44 @@ +import unittest + +from . import common, constant + +client = common.get_client() + + +class TestInfo_Version(unittest.TestCase): + + podman = None + topContainerId = "" + + def setUp(self): + super().setUp() + common.restore_image_from_cache(self) + TestInfo_Version.topContainerId = common.run_top_container() + + def tearDown(self): + common.remove_all_containers() + common.remove_all_images() + return super().tearDown() + + @classmethod + def setUpClass(cls): + super().setUpClass() + common.enable_sock(cls) + + @classmethod + def tearDownClass(cls): + common.terminate_connection(cls) + return super().tearDownClass() + + def test_Info(self): + self.assertIsNotNone(client.info()) + + def test_info_container_details(self): + info = client.info() + self.assertEqual(info["Containers"], 1) + client.create_container(image=constant.ALPINE) + info = client.info() + self.assertEqual(info["Containers"], 2) + + def test_version(self): + self.assertIsNotNone(client.version()) -- cgit v1.2.3-54-g00ecf