mirror of https://git.48k.eu/ogserver
parent
0dd3edd27c
commit
aeb53bd351
|
@ -3859,6 +3859,11 @@ int og_client_state_process_payload_rest(struct og_client *cli)
|
|||
if (method != OG_METHOD_GET)
|
||||
return og_client_method_not_found(cli);
|
||||
|
||||
if (root) {
|
||||
syslog(LOG_ERR, "command scopes with payload\n");
|
||||
return og_client_bad_request(cli);
|
||||
}
|
||||
|
||||
err = og_cmd_scope_get(root, ¶ms, buf_reply);
|
||||
} else if (!strncmp(cmd, "poweroff", strlen("poweroff"))) {
|
||||
if (method != OG_METHOD_POST)
|
||||
|
|
|
@ -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()
|
Loading…
Reference in New Issue