summaryrefslogtreecommitdiff
path: root/test/python/dockerpy/tests/test_info_version.py
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-06-24 12:40:55 -0700
committerJhon Honce <jhonce@redhat.com>2020-06-24 12:40:55 -0700
commitd7770df5ef9f6085a5e31e3260f7dc1f0056f162 (patch)
treee4b6b381ff67448209f3787483e24ae960e3911e /test/python/dockerpy/tests/test_info_version.py
parent988fd27541dfa852ee9543c2d8a916896ef0c774 (diff)
downloadpodman-d7770df5ef9f6085a5e31e3260f7dc1f0056f162.tar.gz
podman-d7770df5ef9f6085a5e31e3260f7dc1f0056f162.tar.bz2
podman-d7770df5ef9f6085a5e31e3260f7dc1f0056f162.zip
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 <jhonce@redhat.com>
Diffstat (limited to 'test/python/dockerpy/tests/test_info_version.py')
-rw-r--r--test/python/dockerpy/tests/test_info_version.py44
1 files changed, 44 insertions, 0 deletions
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())