Exemplo n.º 1
0
 def test_run(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'foo'])
     self.assertEqual('foo', result)
Exemplo n.º 2
0
 def test_run_timeout(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'baz'], {}, 5)
     self.assertEquals('baz', result)
Exemplo n.º 3
0
 def test_run_envvar(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', '${PARAM}'], {'PARAM': 'bar'})
     self.assertEquals('bar', result)
Exemplo n.º 4
0
 def test_run_timeout(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'baz'], {}, 5)
     self.assertEquals(b'baz', result)
Exemplo n.º 5
0
 def test_run_envvar(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', '${PARAM}'], {'PARAM': 'bar'})
     self.assertEquals(b'bar', result)
Exemplo n.º 6
0
 def test_run(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'foo'])
     self.assertEqual(b'foo', result)