mirror of https://git.48k.eu/ogserver
#915 Adapt POST /shell/run test to the 'echo' parameter
parent
ffd2965b33
commit
ee2e16ac96
|
@ -6,7 +6,9 @@ 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' }
|
||||
self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ],
|
||||
'run' : 'ls',
|
||||
'echo': True}
|
||||
|
||||
def test_post(self):
|
||||
returned = requests.post(self.url, headers=self.headers, json=self.json)
|
||||
|
|
Loading…
Reference in New Issue