aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-19 07:54:39 -0400
committerGitHub <noreply@github.com>2022-04-19 07:54:39 -0400
commit712c3bb226a84c8a5593d62648975611cea7839d (patch)
tree3430ac7e1125e02ed6c3413e3f887ac017e874fe /test
parentd6f47e692bc694d3ec4f3505acaccf7fa0b73231 (diff)
parentbe0da4a22265ade11c603fb847531a080d844a06 (diff)
downloadpodman-712c3bb226a84c8a5593d62648975611cea7839d.tar.gz
podman-712c3bb226a84c8a5593d62648975611cea7839d.tar.bz2
podman-712c3bb226a84c8a5593d62648975611cea7839d.zip
Merge pull request #13839 from cdoern/swap
Translate Memory Limit to Swap in API
Diffstat (limited to 'test')
-rw-r--r--test/apiv2/python/rest_api/test_v2_0_0_container.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/apiv2/python/rest_api/test_v2_0_0_container.py b/test/apiv2/python/rest_api/test_v2_0_0_container.py
index 0386116a8..a44786c0d 100644
--- a/test/apiv2/python/rest_api/test_v2_0_0_container.py
+++ b/test/apiv2/python/rest_api/test_v2_0_0_container.py
@@ -328,6 +328,35 @@ class ContainerTestCase(APITestCase):
self.fail("Server failed to respond in 10s")
top.join()
+ def test_memory(self):
+ r = requests.post(
+ self.podman_url + "/v1.4.0/libpod/containers/create",
+ json={
+ "Name": "memory",
+ "Cmd": ["top"],
+ "Image": "alpine:latest",
+ "Resource_Limits": {
+ "Memory":{
+ "Limit": 1000,
+ },
+ "CPU":{
+ "Shares": 200,
+ },
+ },
+ },
+ )
+ self.assertEqual(r.status_code, 201, r.text)
+ payload = r.json()
+ container_id = payload["Id"]
+ self.assertIsNotNone(container_id)
+
+ r = requests.get(self.podman_url + f"/v1.40/containers/{container_id}/json")
+ self.assertEqual(r.status_code, 200, r.text)
+ self.assertId(r.content)
+ out = r.json()
+ self.assertEqual(2000, out["HostConfig"]["MemorySwap"])
+ self.assertEqual(1000, out["HostConfig"]["Memory"])
+
if __name__ == "__main__":
unittest.main()