summaryrefslogtreecommitdiffstats
path: root/tests/units
diff options
context:
space:
mode:
authorDiego Crespo Quinta <diegocrespodcq98@gmail.com>2020-11-28 00:11:10 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-12-01 19:29:37 +0100
commitaeb53bd3512a2b7878c66334b2e36b6f89befdfc (patch)
treebfdfdc2a3fc907566b78f63495ed5883b7293bff /tests/units
parent0dd3edd27c78b903e4a667a0d18d8092cd653982 (diff)
#915 Test GET /scopes
And fix ogserver, report error if GET /scopes have a JSON body.
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/test_0025_get_scopes.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/units/test_0025_get_scopes.py b/tests/units/test_0025_get_scopes.py
new file mode 100644
index 0000000..dcfc04f
--- /dev/null
+++ b/tests/units/test_0025_get_scopes.py
@@ -0,0 +1,25 @@
+import requests
+import unittest
+
+class TestGetScopesMethods(unittest.TestCase):
+
+ def setUp(self):
+ self.url = 'http://localhost:8888/scopes'
+ self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
+ self.json = None
+
+ def test_get(self):
+ returned = requests.get(self.url, headers=self.headers, json=self.json)
+ self.assertEqual(returned.status_code, 200)
+
+ def test_empty_payload(self):
+ returned = requests.get(self.url, headers=self.headers, json={})
+ self.assertEqual(returned.status_code, 400)
+
+ def test_malformed_payload(self):
+ returned = requests.get(self.url, headers=self.headers, json={ 'client': ['192.168.56.11'] })
+ self.assertEqual(returned.status_code, 400)
+
+
+if __name__ == '__main__':
+ unittest.main() \ No newline at end of file