From bbde0c133ce00d084bc909a53fe7faeb7953228a Mon Sep 17 00:00:00 2001 From: Roberto Hueso Gómez Date: Wed, 13 Nov 2019 13:40:18 +0100 Subject: #915 Test malformed payload for POST /clients This test covers requests that do not contain 1 of the parameters in their payloads. --- .../Services/ogAdmServer/tests/units/test_0002_post_clients.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin/Sources/Services/ogAdmServer/tests/units/test_0002_post_clients.py b/admin/Sources/Services/ogAdmServer/tests/units/test_0002_post_clients.py index 590d6bab..3e0d4e5d 100644 --- a/admin/Sources/Services/ogAdmServer/tests/units/test_0002_post_clients.py +++ b/admin/Sources/Services/ogAdmServer/tests/units/test_0002_post_clients.py @@ -16,5 +16,9 @@ class TestPostClientsMethods(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) + if __name__ == '__main__': unittest.main() -- cgit v1.2.3-18-g5258