summaryrefslogtreecommitdiffstats
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
parenta71cba4df1c0ba98d9db44cff45fcaa111e00430 (diff)
#1004 Add GET /images test
Fix incorrect error if json is missing.
-rw-r--r--src/rest.c2
-rw-r--r--tests/units/test_0029_get_images.py25
2 files changed, 26 insertions, 1 deletions
diff --git a/src/rest.c b/src/rest.c
index 81dfa7c..39b0022 100644
--- a/src/rest.c
+++ b/src/rest.c
@@ -4128,7 +4128,7 @@ int og_client_state_process_payload_rest(struct og_client *cli)
}
if (root) {
- err = og_client_method_not_found(cli);
+ err = og_client_bad_request(cli);
goto err_process_rest_payload;
}
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