diff options
author | cdoern <cbdoer23@g.holycross.edu> | 2021-06-08 12:58:48 -0400 |
---|---|---|
committer | cdoern <cbdoer23@g.holycross.edu> | 2021-06-08 14:23:05 -0400 |
commit | 5117deda04b765cd3dc7bd454286764a7c1ea6bc (patch) | |
tree | 0b4861832c7cd3669cc1a78abaa299a7ab19c3bb /test/apiv2/python/rest_api | |
parent | 448b582909c958f339a531b4651a0315bef21497 (diff) | |
download | podman-5117deda04b765cd3dc7bd454286764a7c1ea6bc.tar.gz podman-5117deda04b765cd3dc7bd454286764a7c1ea6bc.tar.bz2 podman-5117deda04b765cd3dc7bd454286764a7c1ea6bc.zip |
fixed docs and schemas
Signed-off-by: cdoern <cbdoer23@g.holycross.edu>
Diffstat (limited to 'test/apiv2/python/rest_api')
-rw-r--r-- | test/apiv2/python/rest_api/test_v2_0_0_network.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/apiv2/python/rest_api/test_v2_0_0_network.py b/test/apiv2/python/rest_api/test_v2_0_0_network.py index 3888123fb..d606b9351 100644 --- a/test/apiv2/python/rest_api/test_v2_0_0_network.py +++ b/test/apiv2/python/rest_api/test_v2_0_0_network.py @@ -102,6 +102,33 @@ class NetworkTestCase(APITestCase): "TestNetwork", payload["NetworkSettings"]["Networks"]["TestNetwork"]["NetworkID"], ) + def test_inspect(self): + name = f"Network_{random.getrandbits(160):x}" + create = requests.post(self.podman_url + "/v1.40/networks/create", json={"Name": name}) + self.assertEqual(create.status_code, 201, create.text) + self.assertId(create.content) + + net = create.json() + self.assertIsInstance(net, dict) + self.assertNotEqual(net["Id"], name) + ident = net["Id"] + + ls = requests.get(self.podman_url + "/v1.40/networks") + self.assertEqual(ls.status_code, 200, ls.text) + + networks = ls.json() + self.assertIsInstance(networks, list) + + found = False + for net in networks: + if net["Name"] == name: + found = True + break + self.assertTrue(found, f"Network '{name}' not found") + + inspect = requests.get(self.podman_url + f"/v1.40/networks/{ident}?verbose=false&scope=local") + self.assertEqual(inspect.status_code, 200, inspect.text) + def test_crud(self): name = f"Network_{random.getrandbits(160):x}" |