diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2019-11-14 10:49:48 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-11-14 14:51:13 +0100 |
commit | abd2b913d8b352388eb093f0e03b67138db9c490 (patch) | |
tree | f04b45e644dd1856382b5758d601d143fa77a81e /tests/units/test_0009_post_stop.py | |
parent | 1cdbc5facf0055c4996e4da9457299b0280baf58 (diff) |
#915 Test malformed payload for POST commands
This patch includes tests for the remaining REST API commands:
POST /shell/output
POST /session
POST /poweroff
POST /reboot
POST /stop
POST /refresh
POST /hardware
POST /software
POST /image/create
POST /image/restore
POST /setup
POST /image/create/basic
POST /image/create/incremental
POST /image/restore/basic
POST /image/restore/incremental
POST /run/schedule
This test covers requests that are missing one of the parameters in its
payload.
Diffstat (limited to 'tests/units/test_0009_post_stop.py')
-rw-r--r-- | tests/units/test_0009_post_stop.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/units/test_0009_post_stop.py b/tests/units/test_0009_post_stop.py index 4f6e2bf..68b1b7c 100644 --- a/tests/units/test_0009_post_stop.py +++ b/tests/units/test_0009_post_stop.py @@ -16,6 +16,10 @@ class TestPostStopMethods(unittest.TestCase): returned = requests.post(self.url, headers=self.headers, json=None) self.assertEqual(returned.status_code, 400) + def test_malformed_payload(self): + returned = requests.post(self.url, headers=self.headers, json={}) + self.assertEqual(returned.status_code, 400) + def test_get(self): returned = requests.get(self.url, headers=self.headers) self.assertEqual(returned.status_code, 405) |