mirror of
https://github.com/not-kennethreitz/envoy.git
synced 2026-06-05 23:20:19 +00:00
23 lines
637 B
Python
23 lines
637 B
Python
import unittest
|
|
import envoy
|
|
|
|
class SimpleTest(unittest.TestCase):
|
|
|
|
def testInput(self):
|
|
r = envoy.run("sed s/i/I/g", "Hi")
|
|
self.assertEqual(r.std_out, "HI")
|
|
self.assertEqual(r.status_code, 0)
|
|
|
|
def testPipe(self):
|
|
r = envoy.run("echo -n 'hi'| tr [:lower:] [:upper:]")
|
|
self.assertEqual(r.std_out, "HI")
|
|
self.assertEqual(r.status_code, 0)
|
|
|
|
def testTimeout(self):
|
|
r = envoy.run("yes | head", timeout=1)
|
|
self.assertEqual(r.std_out, 'y\ny\ny\ny\ny\ny\ny\ny\ny\ny\n')
|
|
self.assertEqual(r.status_code, 0)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|