summaryrefslogtreecommitdiff
path: root/tests/test_interact.py
diff options
context:
space:
mode:
authorNoah Spurrier <noah@squaretrade.com>2012-10-26 11:19:10 -0700
committerNoah Spurrier <noah@squaretrade.com>2012-10-26 11:19:10 -0700
commit7999ca657997e78febfb3fb89cfcc066d50bf788 (patch)
tree7ff33465bb4f8f79b92add505d11d4b731dfe6a7 /tests/test_interact.py
parent6b65a76c26d72caf0a5b11725750861bf89f2b75 (diff)
downloadpexpect-git-7999ca657997e78febfb3fb89cfcc066d50bf788.tar.gz
Moved everything up one directory level.
Diffstat (limited to 'tests/test_interact.py')
-rwxr-xr-xtests/test_interact.py81
1 files changed, 81 insertions, 0 deletions
diff --git a/tests/test_interact.py b/tests/test_interact.py
new file mode 100755
index 0000000..bbdb681
--- /dev/null
+++ b/tests/test_interact.py
@@ -0,0 +1,81 @@
+#!/usr/bin/env python
+'''
+PEXPECT LICENSE
+
+ This license is approved by the OSI and FSF as GPL-compatible.
+ http://opensource.org/licenses/isc-license.txt
+
+ Copyright (c) 2012, Noah Spurrier <noah@noah.org>
+ PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY
+ PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE
+ COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES.
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+'''
+import pexpect
+import unittest
+import commands
+import sys, os, time, tty
+import PexpectTestCase
+import thread
+import threading
+
+def start_interact (p):
+ p.interact()
+
+class InteractTestCase (PexpectTestCase.PexpectTestCase):
+
+ def test_interact_thread (self):
+ # I can't believe this actually works...
+ # Note that I had to add a delay in the swapcase_echo.py script.
+ # I'm not sure why this helped.
+ p = pexpect.spawn('%s swapcase_echo.py' % self.PYTHONBIN)
+ mode = tty.tcgetattr(p.STDIN_FILENO)
+ t = threading.Thread (target=start_interact, args=(p,))
+ t.start()
+ #thread.start_new_thread (start_interact, (p,))
+ time.sleep(1)
+ p.sendline ('Hello')
+ #time.sleep(1)
+ try:
+ p.expect ('hELLO', timeout=4)
+ except Exception, e:
+ p.close(force = False)
+ tty.tcsetattr(p.STDIN_FILENO, tty.TCSAFLUSH, mode)
+ print str(p)
+ raise e
+ p.close(force = True)
+ tty.tcsetattr(p.STDIN_FILENO, tty.TCSAFLUSH, mode)
+# def test_interact_thread (self):
+# # I can't believe this actually works...
+# p = pexpect.spawn('%s swapcase_echo.py' % self.PYTHONBIN)
+# mode = tty.tcgetattr(p.STDIN_FILENO)
+# thread.start_new_thread (start_interact, (p,))
+# time.sleep(1)
+# p.sendline ('Hello')
+# time.sleep(2)
+# p.close(force = False)
+# tty.tcsetattr(p.STDIN_FILENO, tty.TCSAFLUSH, mode)
+
+ def test_interact (self):
+ p = pexpect.spawn('%s interact.py' % self.PYTHONBIN)
+ p.sendline ('Hello')
+ p.sendline ('there')
+ p.sendline ('Mr. Python')
+ p.expect ('Hello')
+ p.expect ('there')
+ p.expect ('Mr. Python')
+ p.sendeof ()
+ p.expect (pexpect.EOF)
+
+if __name__ == '__main__':
+ unittest.main()
+
+suite = unittest.makeSuite(InteractTestCase,'test')
+