#915 Add API token to tests in ogAdmServer/tests/units/*

Add token parameter in REST API test infrastructure.
master
Javier Sánchez Parra 2019-06-24 10:56:41 +02:00 committed by OpenGnSys Support Team
parent b8234523d1
commit eae2385f67
6 changed files with 20 additions and 12 deletions

View File

@ -5,13 +5,14 @@ class TestGetClientsMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/clients'
self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
def test_get(self):
returned = requests.get(self.url)
returned = requests.get(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 200)
def test_post(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':

View File

@ -5,14 +5,15 @@ 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, json=self.json)
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
def test_get(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':

View File

@ -5,15 +5,16 @@ class TestPostWolMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/wol'
self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
self.json = { 'type' : 'broadcast', 'clients' : { 'addr' : '192.168.2.1',
'mac' : '00AABBCCDD01' } }
def test_post(self):
returned = requests.post(self.url, json=self.json)
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
def test_get(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':

View File

@ -5,13 +5,15 @@ class TestPostShellRunMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/shell/run'
self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ], 'run' : 'ls' }
def test_post(self):
returned = requests.post(self.url, json=self.json)
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
def test_get(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':

View File

@ -5,13 +5,15 @@ class TestPostShellOutputMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/shell/output'
self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ] }
def test_post(self):
returned = requests.post(self.url, json=self.json)
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
def test_get(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':

View File

@ -5,15 +5,16 @@ class TestPostSessionMethods(unittest.TestCase):
def setUp(self):
self.url = 'http://localhost:8888/shell/run'
self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'}
self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ],
'disk' : '0', 'partition' : '1'}
def test_post(self):
returned = requests.post(self.url, json=self.json)
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
def test_get(self):
returned = requests.post(self.url)
returned = requests.post(self.url, headers=self.headers)
self.assertEqual(returned.status_code, 404)
if __name__ == '__main__':