From ba3b1ad54322e4bc97813d649235ed75afa97662 Mon Sep 17 00:00:00 2001 From: Roberto Hueso Gómez Date: Thu, 31 Oct 2019 11:44:24 +0100 Subject: #915 Add test for POST /image/restore REST API This test covers 3 scenarios: 1. Correct usage. 2. Incorrect usage, without payload. 3. Incorrect usage, use this command with GET. --- tests/units/test_0017_post_image_restore.py | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/units/test_0017_post_image_restore.py (limited to 'tests/units') diff --git a/tests/units/test_0017_post_image_restore.py b/tests/units/test_0017_post_image_restore.py new file mode 100644 index 0000000..ad6ec70 --- /dev/null +++ b/tests/units/test_0017_post_image_restore.py @@ -0,0 +1,31 @@ +import requests +import unittest + +class TestPostRestoreImageMethods(unittest.TestCase): + + def setUp(self): + self.url = 'http://localhost:8888/image/restore' + self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'} + self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ], + 'disk' : '1', + 'partition' : '1', + 'name' : 'test', + 'repository' : '192.168.56.10', + 'type' : 'UNICAST', + 'profile': '1', + 'id': '1' } + + def test_post(self): + returned = requests.post(self.url, headers=self.headers, json=self.json) + self.assertEqual(returned.status_code, 200) + + def test_no_payload(self): + returned = requests.post(self.url, headers=self.headers, json=None) + self.assertEqual(returned.status_code, 400) + + def test_get(self): + returned = requests.get(self.url, headers=self.headers) + self.assertEqual(returned.status_code, 405) + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.3-18-g5258