blob: 3e0d4e5dd8055a925548b9cfeaeebe31afca34fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import requests
import unittest
class TestPostClientsMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/clients'
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)
if __name__ == '__main__':
unittest.main()
|