示例#1
0
文件: remote.py 项目: kumagi/jubatest
 def test_put_file(self):
     with tempfile.NamedTemporaryFile(
     ) as tmp1, tempfile.NamedTemporaryFile() as tmp2:
         tmp1.write('foo')
         tmp1.flush()
         SyncRemoteProcess.put_file('localhost', tmp1.name, tmp2.name)
         self.assertEqual('foo', tmp2.read())
示例#2
0
文件: remote.py 项目: kumagi/jubatest
 def test_put_file(self):
     with tempfile.NamedTemporaryFile() as tmp1, tempfile.NamedTemporaryFile() as tmp2:
         tmp1.write('foo')
         tmp1.flush()
         SyncRemoteProcess.put_file('localhost', tmp1.name, tmp2.name)
         self.assertEqual('foo', tmp2.read())
示例#3
0
文件: remote.py 项目: kumagi/jubatest
 def test_get_file(self):
     with tempfile.NamedTemporaryFile() as tmp:
         SyncRemoteProcess.get_file('localhost', '/etc/hosts', tmp.name)
         with open('/etc/hosts', 'r') as expected_file:
             self.assertEqual(expected_file.read(), tmp.read())
示例#4
0
文件: remote.py 项目: kumagi/jubatest
 def test_run(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'foo'])
     self.assertEqual('foo', result)
示例#5
0
文件: remote.py 项目: rimms/jubatest
 def test_run_timeout(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'baz'], {}, 5)
     self.assertEquals('baz', result)
示例#6
0
文件: remote.py 项目: rimms/jubatest
 def test_run_envvar(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', '${PARAM}'], {'PARAM': 'bar'})
     self.assertEquals('bar', result)
示例#7
0
 def test_get_file(self):
     with tempfile.NamedTemporaryFile() as tmp:
         SyncRemoteProcess.get_file('localhost', '/etc/hosts', tmp.name)
         with open('/etc/hosts', 'rb') as expected_file:
             self.assertEqual(expected_file.read(), tmp.read())
示例#8
0
 def test_run_timeout(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'baz'], {}, 5)
     self.assertEquals(b'baz', result)
示例#9
0
 def test_run_envvar(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', '${PARAM}'], {'PARAM': 'bar'})
     self.assertEquals(b'bar', result)
示例#10
0
 def test_run(self):
     result = SyncRemoteProcess.run('localhost', ['/bin/echo', '-n', 'foo'])
     self.assertEqual(b'foo', result)