summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_expect.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_expect.py b/tests/test_expect.py
index ec55d43..795518a 100755
--- a/tests/test_expect.py
+++ b/tests/test_expect.py
@@ -408,6 +408,17 @@ class ExpectTestCase (PexpectTestCase.PexpectTestCase):
p.buffer = b'Testing'
p.sendeof ()
+ def test_before_across_chunks(self):
+ # https://github.com/pexpect/pexpect/issues/478
+ child = pexpect.spawn(
+ '''/bin/bash -c "openssl rand -base64 {} | head -500 | nl --number-format=rz --number-width=5 2>&1 ; echo 'PATTERN!!!'"'''.format(1024 * 1024 * 2),
+ searchwindowsize=128
+ )
+ child.expect(['PATTERN'])
+ assert len(child.before.splitlines()) == 500
+ assert child.after == b'PATTERN'
+ assert child.buffer == b'!!!\r\n'
+
def _before_after(self, p):
p.timeout = 5