summaryrefslogtreecommitdiffstats
path: root/tests/units
diff options
context:
space:
mode:
authorDiego Crespo Quinta <diegocrespodcq98@gmail.com>2021-03-30 13:08:48 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2021-03-30 16:11:45 +0200
commitd9e1521a16f4633d895f7b6734acc59565f5f8d0 (patch)
tree2664fb8547a38bb383ef35543f9fab54c48d706b /tests/units
parenta71cba4df1c0ba98d9db44cff45fcaa111e00430 (diff)
#1004 Add GET /images test
Fix incorrect error if json is missing.
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/test_0029_get_images.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/units/test_0029_get_images.py b/tests/units/test_0029_get_images.py
new file mode 100644
index 0000000..2afd33d
--- /dev/null
+++ b/tests/units/test_0029_get_images.py
@@ -0,0 +1,25 @@
+import requests
+import unittest
+
+class TestGetImagesMethods(unittest.TestCase):
+
+ def setUp(self):
+ self.url = 'http://localhost:8888/images'
+ 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