diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2020-06-23 12:29:49 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-06-23 13:04:06 +0200 |
commit | 1f43ddcb59974fe3c61e4414511ebac5661952fd (patch) | |
tree | c37904f1a680d7b9a3ab203bb163d7aa202b7a8c /admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py | |
parent | bbf5371425f80e0b82eff65f1a570ef3a4e2f5ea (diff) |
#985 Remove ogAdmServer folder
ogAdmServer now has its own repo as ogServer. Check:
https://github.com/opengnsys/ogServer
Diffstat (limited to 'admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py')
-rw-r--r-- | admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py b/admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py deleted file mode 100644 index 1f3e1604..00000000 --- a/admin/Sources/Services/ogAdmServer/tests/units/test_0011_post_hardware.py +++ /dev/null @@ -1,28 +0,0 @@ -import requests -import unittest - -class TestPostHardwareMethods(unittest.TestCase): - - def setUp(self): - self.url = 'http://localhost:8888/hardware' - self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'} - self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ] } - - 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_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) - -if __name__ == '__main__': - unittest.main() |