summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2019-11-12 13:53:36 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2019-11-12 21:37:11 +0100
commitee2e16ac96b259e1fce7029301b3da2b157ecd4c (patch)
tree9be8fd12e42f75c8bd00dc0da7fcad8b653b8220 /tests
parentffd2965b338476778bc3ac82e4dd4df0dd69fa38 (diff)
#915 Adapt POST /shell/run test to the 'echo' parameter
Diffstat (limited to 'tests')
-rw-r--r--tests/units/test_0004_post_shell_run.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/units/test_0004_post_shell_run.py b/tests/units/test_0004_post_shell_run.py
index 2a330be..0dd03c1 100644
--- a/tests/units/test_0004_post_shell_run.py
+++ b/tests/units/test_0004_post_shell_run.py
@@ -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)