test_io.py
89 lines
| 2.5 KiB
| text/x-python
|
PythonLexer
Brian Granger
|
r2498 | # encoding: utf-8 | ||
"""Tests for io.py""" | ||||
Min RK
|
r19932 | # Copyright (c) IPython Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||||
Brian Granger
|
r2498 | |||
import sys | ||||
Srinivas Reddy Thatiparthy
|
r23108 | from io import StringIO | ||
Brian Granger
|
r2498 | |||
MinRK
|
r3800 | from subprocess import Popen, PIPE | ||
Thomas Kluyver
|
r12372 | import unittest | ||
Brian Granger
|
r2498 | |||
import nose.tools as nt | ||||
Christopher Welborn
|
r23229 | from IPython.utils.io import IOStream, Tee, capture_output | ||
Thomas Kluyver
|
r13366 | |||
Brian Granger
|
r2498 | |||
def test_tee_simple(): | ||||
"Very simple check with stdout only" | ||||
chan = StringIO() | ||||
text = 'Hello' | ||||
tee = Tee(chan, channel='stdout') | ||||
Matthias BUSSONNIER
|
r7817 | print(text, file=chan) | ||
Thomas Kluyver
|
r4891 | nt.assert_equal(chan.getvalue(), text+"\n") | ||
Brian Granger
|
r2498 | |||
Thomas Kluyver
|
r12372 | class TeeTestCase(unittest.TestCase): | ||
Brian Granger
|
r2498 | |||
Matthias Bussonnier
|
r25056 | def tchan(self, channel): | ||
Brian Granger
|
r2498 | trap = StringIO() | ||
chan = StringIO() | ||||
text = 'Hello' | ||||
std_ori = getattr(sys, channel) | ||||
setattr(sys, channel, trap) | ||||
tee = Tee(chan, channel=channel) | ||||
Matthias Bussonnier
|
r25056 | |||
Matthias BUSSONNIER
|
r7817 | print(text, end='', file=chan) | ||
Brian Granger
|
r2498 | trap_val = trap.getvalue() | ||
Bradley M. Froehle
|
r7875 | nt.assert_equal(chan.getvalue(), text) | ||
Matthias Bussonnier
|
r25056 | |||
tee.close() | ||||
setattr(sys, channel, std_ori) | ||||
assert getattr(sys, channel) == std_ori | ||||
Brian Granger
|
r2498 | |||
def test(self): | ||||
for chan in ['stdout', 'stderr']: | ||||
Matthias Bussonnier
|
r25056 | self.tchan(chan) | ||
MinRK
|
r3800 | |||
def test_io_init(): | ||||
"""Test that io.stdin/out/err exist at startup""" | ||||
for name in ('stdin', 'stdout', 'stderr'): | ||||
Matthias Bussonnier
|
r24265 | cmd = "from IPython.utils import io;print(io.%s.__class__)"%name | ||
Matthias Bussonnier
|
r25056 | with Popen([sys.executable, '-c', cmd], stdout=PIPE) as p: | ||
p.wait() | ||||
classname = p.stdout.read().strip().decode('ascii') | ||||
Thomas Kluyver
|
r4891 | # __class__ is a reference to the class object in Python 3, so we can't | ||
# just test for string equality. | ||||
assert 'IPython.utils.io.IOStream' in classname, classname | ||||
MinRK
|
r7324 | |||
Matthias Bussonnier
|
r25109 | class TestIOStream(unittest.TestCase): | ||
def test_IOStream_init(self): | ||||
"""IOStream initializes from a file-like object missing attributes. """ | ||||
# Cause a failure from getattr and dir(). (Issue #6386) | ||||
class BadStringIO(StringIO): | ||||
def __dir__(self): | ||||
attrs = super().__dir__() | ||||
attrs.append('name') | ||||
return attrs | ||||
with self.assertWarns(DeprecationWarning): | ||||
iostream = IOStream(BadStringIO()) | ||||
iostream.write('hi, bad iostream\n') | ||||
assert not hasattr(iostream, 'name') | ||||
iostream.close() | ||||
def test_capture_output(self): | ||||
"""capture_output() context works""" | ||||
with capture_output() as io: | ||||
print('hi, stdout') | ||||
print('hi, stderr', file=sys.stderr) | ||||
nt.assert_equal(io.stdout, 'hi, stdout\n') | ||||
nt.assert_equal(io.stderr, 'hi, stderr\n') | ||||