diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2019-05-30 18:12:37 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-05-31 11:38:57 +0200 |
commit | a4ec92b7918a9a5273ad5e0263c52b5a513470fc (patch) | |
tree | 0e34a545831799897587c79f6ec24dbb526cb3dc /admin | |
parent | 7137439d0b41c03c5ca0eeed67ab726efabcd391 (diff) |
#915 add test for POST /clients REST API
Diffstat (limited to 'admin')
-rw-r--r-- | admin/Sources/Services/ogAdmServer/tests/units/0002-post-clients.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/admin/Sources/Services/ogAdmServer/tests/units/0002-post-clients.py b/admin/Sources/Services/ogAdmServer/tests/units/0002-post-clients.py new file mode 100644 index 00000000..536255f7 --- /dev/null +++ b/admin/Sources/Services/ogAdmServer/tests/units/0002-post-clients.py @@ -0,0 +1,19 @@ +import requests +import unittest + +class TestPostClientsMethods(unittest.TestCase): + + def setUp(self): + self.url = 'http://localhost:8888/clients' + self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ] } + + def test_post(self): + returned = requests.post(self.url, json=self.json) + self.assertEqual(returned.status_code, 200) + + def test_get(self): + returned = requests.post(self.url) + self.assertEqual(returned.status_code, 404) + +if __name__ == '__main__': + unittest.main() |