2014-01-25 04:22:19 +08:00
|
|
|
# note: py.io capture tests where copied from
|
|
|
|
# pylib 1.4.20.dev2 (rev 13d9af95547e)
|
|
|
|
from __future__ import with_statement
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import py
|
2014-03-28 14:03:37 +08:00
|
|
|
import tempfile
|
2014-01-25 04:22:19 +08:00
|
|
|
import pytest
|
2014-01-29 18:18:15 +08:00
|
|
|
import contextlib
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
from _pytest import capture
|
2010-11-13 18:10:45 +08:00
|
|
|
from _pytest.capture import CaptureManager
|
2014-01-25 04:22:19 +08:00
|
|
|
from py.builtin import print_
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2010-11-18 05:12:16 +08:00
|
|
|
needsosdup = pytest.mark.xfail("not hasattr(os, 'dup')")
|
2009-10-28 04:34:11 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
if sys.version_info >= (3, 0):
|
|
|
|
def tobytes(obj):
|
|
|
|
if isinstance(obj, str):
|
|
|
|
obj = obj.encode('UTF-8')
|
|
|
|
assert isinstance(obj, bytes)
|
|
|
|
return obj
|
|
|
|
|
|
|
|
def totext(obj):
|
|
|
|
if isinstance(obj, bytes):
|
|
|
|
obj = str(obj, 'UTF-8')
|
|
|
|
assert isinstance(obj, str)
|
|
|
|
return obj
|
|
|
|
else:
|
|
|
|
def tobytes(obj):
|
|
|
|
if isinstance(obj, unicode):
|
|
|
|
obj = obj.encode('UTF-8')
|
|
|
|
assert isinstance(obj, str)
|
|
|
|
return obj
|
|
|
|
|
|
|
|
def totext(obj):
|
|
|
|
if isinstance(obj, str):
|
|
|
|
obj = unicode(obj, 'UTF-8')
|
|
|
|
assert isinstance(obj, unicode)
|
|
|
|
return obj
|
|
|
|
|
|
|
|
|
|
|
|
def oswritebytes(fd, obj):
|
|
|
|
os.write(fd, tobytes(obj))
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-28 14:03:37 +08:00
|
|
|
def StdCaptureFD(out=True, err=True, in_=True):
|
|
|
|
return capture.StdCaptureBase(out, err, in_, Capture=capture.FDCapture)
|
|
|
|
|
|
|
|
def StdCapture(out=True, err=True, in_=True):
|
|
|
|
return capture.StdCaptureBase(out, err, in_, Capture=capture.SysCapture)
|
|
|
|
|
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
class TestCaptureManager:
|
2009-09-05 22:54:52 +08:00
|
|
|
def test_getmethod_default_no_fd(self, testdir, monkeypatch):
|
|
|
|
config = testdir.parseconfig(testdir.tmpdir)
|
|
|
|
assert config.getvalue("capture") is None
|
|
|
|
capman = CaptureManager()
|
2009-10-28 04:34:11 +08:00
|
|
|
monkeypatch.delattr(os, 'dup', raising=False)
|
2009-09-05 22:54:52 +08:00
|
|
|
try:
|
2010-07-27 03:15:15 +08:00
|
|
|
assert capman._getmethod(config, None) == "sys"
|
2009-09-05 22:54:52 +08:00
|
|
|
finally:
|
2009-09-06 05:21:58 +08:00
|
|
|
monkeypatch.undo()
|
2009-09-05 22:54:52 +08:00
|
|
|
|
2012-10-04 17:51:14 +08:00
|
|
|
@pytest.mark.parametrize("mode", "no fd sys".split())
|
|
|
|
def test_configure_per_fspath(self, testdir, mode):
|
2009-07-31 20:21:02 +08:00
|
|
|
config = testdir.parseconfig(testdir.tmpdir)
|
|
|
|
capman = CaptureManager()
|
2009-10-28 04:34:11 +08:00
|
|
|
hasfd = hasattr(os, 'dup')
|
|
|
|
if hasfd:
|
2010-07-27 03:15:15 +08:00
|
|
|
assert capman._getmethod(config, None) == "fd"
|
2009-10-28 04:34:11 +08:00
|
|
|
else:
|
2010-07-27 03:15:15 +08:00
|
|
|
assert capman._getmethod(config, None) == "sys"
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2012-10-04 17:51:14 +08:00
|
|
|
if not hasfd and mode == 'fd':
|
|
|
|
return
|
|
|
|
sub = testdir.tmpdir.mkdir("dir" + mode)
|
|
|
|
sub.ensure("__init__.py")
|
|
|
|
sub.join("conftest.py").write('option_capture = %r' % mode)
|
|
|
|
assert capman._getmethod(config, sub.join("test_hello.py")) == mode
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2009-10-28 04:34:11 +08:00
|
|
|
@needsosdup
|
2013-11-21 21:40:14 +08:00
|
|
|
@pytest.mark.parametrize("method", ['no', 'fd', 'sys'])
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_capturing_basic_api(self, method):
|
2014-03-28 14:03:37 +08:00
|
|
|
capouter = StdCaptureFD()
|
2009-07-31 20:21:02 +08:00
|
|
|
old = sys.stdout, sys.stderr, sys.stdin
|
|
|
|
try:
|
|
|
|
capman = CaptureManager()
|
2010-05-18 01:00:39 +08:00
|
|
|
# call suspend without resume or start
|
|
|
|
outerr = capman.suspendcapture()
|
|
|
|
outerr = capman.suspendcapture()
|
|
|
|
assert outerr == ("", "")
|
2009-07-31 20:21:02 +08:00
|
|
|
capman.resumecapture(method)
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("hello")
|
2009-07-31 20:21:02 +08:00
|
|
|
out, err = capman.suspendcapture()
|
|
|
|
if method == "no":
|
|
|
|
assert old == (sys.stdout, sys.stderr, sys.stdin)
|
|
|
|
else:
|
|
|
|
assert out == "hello\n"
|
|
|
|
capman.resumecapture(method)
|
|
|
|
out, err = capman.suspendcapture()
|
2010-07-27 03:15:15 +08:00
|
|
|
assert not out and not err
|
2011-11-08 02:08:41 +08:00
|
|
|
capman.reset_capturings()
|
2009-07-31 20:21:02 +08:00
|
|
|
finally:
|
|
|
|
capouter.reset()
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-10-28 04:34:11 +08:00
|
|
|
@needsosdup
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_juggle_capturings(self, testdir):
|
2014-03-28 14:03:37 +08:00
|
|
|
capouter = StdCaptureFD()
|
2009-07-31 20:21:02 +08:00
|
|
|
try:
|
2011-11-08 02:08:41 +08:00
|
|
|
#config = testdir.parseconfig(testdir.tmpdir)
|
2009-07-31 20:21:02 +08:00
|
|
|
capman = CaptureManager()
|
2011-11-08 02:08:41 +08:00
|
|
|
try:
|
|
|
|
capman.resumecapture("fd")
|
|
|
|
pytest.raises(ValueError, 'capman.resumecapture("fd")')
|
|
|
|
pytest.raises(ValueError, 'capman.resumecapture("sys")')
|
|
|
|
os.write(1, "hello\n".encode('ascii'))
|
|
|
|
out, err = capman.suspendcapture()
|
|
|
|
assert out == "hello\n"
|
|
|
|
capman.resumecapture("sys")
|
|
|
|
os.write(1, "hello\n".encode('ascii'))
|
|
|
|
py.builtin.print_("world", file=sys.stderr)
|
|
|
|
out, err = capman.suspendcapture()
|
|
|
|
assert not out
|
|
|
|
assert err == "world\n"
|
|
|
|
finally:
|
|
|
|
capman.reset_capturings()
|
2009-07-31 20:21:02 +08:00
|
|
|
finally:
|
|
|
|
capouter.reset()
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2013-11-21 21:40:14 +08:00
|
|
|
@pytest.mark.parametrize("method", ['fd', 'sys'])
|
2009-08-06 20:34:19 +08:00
|
|
|
def test_capturing_unicode(testdir, method):
|
2014-01-29 18:18:15 +08:00
|
|
|
if hasattr(sys, "pypy_version_info") and sys.pypy_version_info < (2,2):
|
|
|
|
pytest.xfail("does not work on pypy < 2.2")
|
2014-01-25 04:22:19 +08:00
|
|
|
if sys.version_info >= (3, 0):
|
2009-09-01 22:10:21 +08:00
|
|
|
obj = "'b\u00f6y'"
|
|
|
|
else:
|
|
|
|
obj = "u'\u00f6y'"
|
2009-08-06 20:34:19 +08:00
|
|
|
testdir.makepyfile("""
|
2010-07-04 23:06:50 +08:00
|
|
|
# coding=utf8
|
2009-08-19 22:42:29 +08:00
|
|
|
# taken from issue 227 from nosetests
|
2009-08-06 20:34:19 +08:00
|
|
|
def test_unicode():
|
|
|
|
import sys
|
2009-08-29 21:51:49 +08:00
|
|
|
print (sys.stdout)
|
2009-09-01 22:10:21 +08:00
|
|
|
print (%s)
|
|
|
|
""" % obj)
|
2009-08-06 20:34:19 +08:00
|
|
|
result = testdir.runpytest("--capture=%s" % method)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 passed*"
|
|
|
|
])
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2013-11-21 21:40:14 +08:00
|
|
|
@pytest.mark.parametrize("method", ['fd', 'sys'])
|
2009-08-19 22:42:29 +08:00
|
|
|
def test_capturing_bytes_in_utf8_encoding(testdir, method):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
def test_unicode():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ('b\\u00f6y')
|
2009-08-19 22:42:29 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--capture=%s" % method)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 passed*"
|
|
|
|
])
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_collect_capturing(testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("collect %s failure" % 13)
|
2009-07-31 20:21:02 +08:00
|
|
|
import xyz42123
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*Captured stdout*",
|
2010-07-27 03:15:15 +08:00
|
|
|
"*collect 13 failure*",
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
class TestPerTestCapturing:
|
|
|
|
def test_capture_and_fixtures(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def setup_module(mod):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("setup module")
|
2009-07-31 20:21:02 +08:00
|
|
|
def setup_function(function):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("setup " + function.__name__)
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_func1():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in func1")
|
2009-07-31 20:21:02 +08:00
|
|
|
assert 0
|
|
|
|
def test_func2():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in func2")
|
2009-07-31 20:21:02 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"setup module*",
|
|
|
|
"setup test_func1*",
|
|
|
|
"in func1*",
|
|
|
|
"setup test_func2*",
|
2009-11-13 04:15:59 +08:00
|
|
|
"in func2*",
|
|
|
|
])
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2014-01-29 20:56:24 +08:00
|
|
|
@pytest.mark.xfail(reason="unimplemented feature")
|
2009-08-03 18:16:12 +08:00
|
|
|
def test_capture_scope_cache(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import sys
|
|
|
|
def setup_module(func):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("module-setup")
|
2009-08-03 18:16:12 +08:00
|
|
|
def setup_function(func):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("function-setup")
|
2009-08-03 18:16:12 +08:00
|
|
|
def test_func():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in function")
|
2009-08-03 18:16:12 +08:00
|
|
|
assert 0
|
|
|
|
def teardown_function(func):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in teardown")
|
2009-08-03 18:16:12 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_func():*",
|
2010-07-27 03:15:15 +08:00
|
|
|
"*Captured stdout during setup*",
|
|
|
|
"module-setup*",
|
|
|
|
"function-setup*",
|
2009-08-03 18:16:12 +08:00
|
|
|
"*Captured stdout*",
|
|
|
|
"in teardown*",
|
|
|
|
])
|
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_no_carry_over(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_func1():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in func1")
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_func2():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in func2")
|
2009-07-31 20:21:02 +08:00
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
s = result.stdout.str()
|
2010-07-27 03:15:15 +08:00
|
|
|
assert "in func1" not in s
|
|
|
|
assert "in func2" in s
|
2009-07-31 20:21:02 +08:00
|
|
|
|
|
|
|
def test_teardown_capturing(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def setup_function(function):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("setup func1")
|
2009-07-31 20:21:02 +08:00
|
|
|
def teardown_function(function):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("teardown func1")
|
2009-07-31 20:21:02 +08:00
|
|
|
assert 0
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_func1():
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("in func1")
|
2009-07-31 20:21:02 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-07-31 20:21:02 +08:00
|
|
|
'*teardown_function*',
|
|
|
|
'*Captured stdout*',
|
|
|
|
"setup func1*",
|
|
|
|
"in func1*",
|
|
|
|
"teardown func1*",
|
|
|
|
#"*1 fixture failure*"
|
|
|
|
])
|
|
|
|
|
2011-12-03 05:00:21 +08:00
|
|
|
def test_teardown_capturing_final(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def teardown_module(mod):
|
2009-08-29 21:51:49 +08:00
|
|
|
print ("teardown module")
|
2009-07-31 20:21:02 +08:00
|
|
|
assert 0
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*def teardown_module(mod):*",
|
|
|
|
"*Captured stdout*",
|
|
|
|
"*teardown module*",
|
|
|
|
"*1 error*",
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_capturing_outerr(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
p1 = testdir.makepyfile("""
|
2010-07-27 03:15:15 +08:00
|
|
|
import sys
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_capturing():
|
2009-08-29 21:51:49 +08:00
|
|
|
print (42)
|
|
|
|
sys.stderr.write(str(23))
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_capturing_error():
|
2009-08-29 21:51:49 +08:00
|
|
|
print (1)
|
|
|
|
sys.stderr.write(str(2))
|
2009-07-31 20:21:02 +08:00
|
|
|
raise ValueError
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p1)
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-07-27 03:15:15 +08:00
|
|
|
"*test_capturing_outerr.py .F",
|
2009-07-31 20:21:02 +08:00
|
|
|
"====* FAILURES *====",
|
2010-07-27 03:15:15 +08:00
|
|
|
"____*____",
|
2009-07-31 20:21:02 +08:00
|
|
|
"*test_capturing_outerr.py:8: ValueError",
|
2014-03-14 19:49:34 +08:00
|
|
|
"*--- Captured stdout *call*",
|
2009-07-31 20:21:02 +08:00
|
|
|
"1",
|
2014-03-14 19:49:34 +08:00
|
|
|
"*--- Captured stderr *call*",
|
2009-07-31 20:21:02 +08:00
|
|
|
"2",
|
|
|
|
])
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
class TestLoggingInteraction:
|
|
|
|
def test_logging_stream_ownership(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_logging():
|
|
|
|
import logging
|
2010-11-18 05:12:16 +08:00
|
|
|
import pytest
|
2014-01-25 04:22:19 +08:00
|
|
|
stream = capture.TextIO()
|
2009-07-31 20:21:02 +08:00
|
|
|
logging.basicConfig(stream=stream)
|
|
|
|
stream.close() # to free memory/release resources
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stderr.str().find("atexit") == -1
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def test_logging_and_immediate_setupteardown(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import logging
|
|
|
|
def setup_function(function):
|
|
|
|
logging.warn("hello1")
|
|
|
|
|
|
|
|
def test_logging():
|
|
|
|
logging.warn("hello2")
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
def teardown_function(function):
|
|
|
|
logging.warn("hello3")
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
for optargs in (('--capture=sys',), ('--capture=fd',)):
|
2009-08-29 21:51:49 +08:00
|
|
|
print (optargs)
|
2009-07-31 20:21:02 +08:00
|
|
|
result = testdir.runpytest(p, *optargs)
|
|
|
|
s = result.stdout.str()
|
|
|
|
result.stdout.fnmatch_lines([
|
2009-07-31 20:22:02 +08:00
|
|
|
"*WARN*hello3", # errors show first!
|
2010-07-27 03:15:15 +08:00
|
|
|
"*WARN*hello1",
|
|
|
|
"*WARN*hello2",
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
# verify proper termination
|
|
|
|
assert "closed" not in s
|
|
|
|
|
|
|
|
def test_logging_and_crossscope_fixtures(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import logging
|
|
|
|
def setup_module(function):
|
|
|
|
logging.warn("hello1")
|
|
|
|
|
|
|
|
def test_logging():
|
|
|
|
logging.warn("hello2")
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
def teardown_module(function):
|
|
|
|
logging.warn("hello3")
|
|
|
|
assert 0
|
|
|
|
""")
|
2009-08-03 18:16:12 +08:00
|
|
|
for optargs in (('--capture=sys',), ('--capture=fd',)):
|
2009-08-29 21:51:49 +08:00
|
|
|
print (optargs)
|
2009-07-31 20:21:02 +08:00
|
|
|
result = testdir.runpytest(p, *optargs)
|
|
|
|
s = result.stdout.str()
|
|
|
|
result.stdout.fnmatch_lines([
|
2009-08-03 18:16:12 +08:00
|
|
|
"*WARN*hello3", # errors come first
|
2010-07-27 03:15:15 +08:00
|
|
|
"*WARN*hello1",
|
|
|
|
"*WARN*hello2",
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
# verify proper termination
|
|
|
|
assert "closed" not in s
|
|
|
|
|
2010-12-06 23:56:12 +08:00
|
|
|
def test_logging_initialized_in_test(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import sys
|
|
|
|
def test_something():
|
|
|
|
# pytest does not import logging
|
|
|
|
assert 'logging' not in sys.modules
|
|
|
|
import logging
|
|
|
|
logging.basicConfig()
|
|
|
|
logging.warn("hello432")
|
|
|
|
assert 0
|
|
|
|
""")
|
2014-01-25 04:22:19 +08:00
|
|
|
result = testdir.runpytest(
|
|
|
|
p, "--traceconfig",
|
2010-12-06 23:56:12 +08:00
|
|
|
"-p", "no:capturelog")
|
|
|
|
assert result.ret != 0
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*hello432*",
|
|
|
|
])
|
|
|
|
assert 'operation on closed file' not in result.stderr.str()
|
|
|
|
|
2011-01-18 19:51:21 +08:00
|
|
|
def test_conftestlogging_is_shown(self, testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
import logging
|
|
|
|
logging.basicConfig()
|
|
|
|
logging.warn("hello435")
|
|
|
|
""")
|
|
|
|
# make sure that logging is still captured in tests
|
|
|
|
result = testdir.runpytest("-s", "-p", "no:capturelog")
|
|
|
|
assert result.ret == 0
|
|
|
|
result.stderr.fnmatch_lines([
|
|
|
|
"WARNING*hello435*",
|
|
|
|
])
|
|
|
|
assert 'operation on closed file' not in result.stderr.str()
|
|
|
|
|
|
|
|
def test_conftestlogging_and_test_logging(self, testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
import logging
|
|
|
|
logging.basicConfig()
|
|
|
|
""")
|
|
|
|
# make sure that logging is still captured in tests
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_hello():
|
|
|
|
import logging
|
|
|
|
logging.warn("hello433")
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, "-p", "no:capturelog")
|
|
|
|
assert result.ret != 0
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"WARNING*hello433*",
|
|
|
|
])
|
|
|
|
assert 'something' not in result.stderr.str()
|
|
|
|
assert 'operation on closed file' not in result.stderr.str()
|
|
|
|
|
2010-12-06 23:56:12 +08:00
|
|
|
|
2012-10-05 20:24:44 +08:00
|
|
|
class TestCaptureFixture:
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_std_functional(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
reprec = testdir.inline_runsource("""
|
|
|
|
def test_hello(capsys):
|
2009-08-29 21:51:49 +08:00
|
|
|
print (42)
|
2009-07-31 20:21:02 +08:00
|
|
|
out, err = capsys.readouterr()
|
|
|
|
assert out.startswith("42")
|
|
|
|
""")
|
|
|
|
reprec.assertoutcome(passed=1)
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2012-06-04 03:01:27 +08:00
|
|
|
def test_capsyscapfd(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_one(capsys, capfd):
|
|
|
|
pass
|
|
|
|
def test_two(capfd, capsys):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*ERROR*setup*test_one*",
|
|
|
|
"*capsys*capfd*same*time*",
|
|
|
|
"*ERROR*setup*test_two*",
|
|
|
|
"*capsys*capfd*same*time*",
|
|
|
|
"*2 error*"])
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("method", ["sys", "fd"])
|
|
|
|
def test_capture_is_represented_on_failure_issue128(self, testdir, method):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_hello(cap%s):
|
|
|
|
print ("xxx42xxx")
|
|
|
|
assert 0
|
|
|
|
""" % method)
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"xxx42xxx",
|
|
|
|
])
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
@needsosdup
|
|
|
|
def test_stdfd_functional(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
reprec = testdir.inline_runsource("""
|
|
|
|
def test_hello(capfd):
|
|
|
|
import os
|
2009-08-29 21:51:49 +08:00
|
|
|
os.write(1, "42".encode('ascii'))
|
2009-07-31 20:21:02 +08:00
|
|
|
out, err = capfd.readouterr()
|
|
|
|
assert out.startswith("42")
|
|
|
|
capfd.close()
|
|
|
|
""")
|
|
|
|
reprec.assertoutcome(passed=1)
|
|
|
|
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_partial_setup_failure(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
p = testdir.makepyfile("""
|
2010-05-18 15:54:04 +08:00
|
|
|
def test_hello(capsys, missingarg):
|
2009-07-31 20:21:02 +08:00
|
|
|
pass
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
2010-04-29 06:12:38 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-07-31 20:21:02 +08:00
|
|
|
"*test_partial_setup_failure*",
|
2009-07-31 20:22:02 +08:00
|
|
|
"*1 error*",
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
|
2009-10-28 04:34:11 +08:00
|
|
|
@needsosdup
|
2010-07-27 03:15:15 +08:00
|
|
|
def test_keyboardinterrupt_disables_capturing(self, testdir):
|
2009-07-31 20:21:02 +08:00
|
|
|
p = testdir.makepyfile("""
|
|
|
|
def test_hello(capfd):
|
|
|
|
import os
|
2009-08-29 21:51:49 +08:00
|
|
|
os.write(1, str(42).encode('ascii'))
|
2009-07-31 20:21:02 +08:00
|
|
|
raise KeyboardInterrupt()
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
result.stdout.fnmatch_lines([
|
2010-05-25 22:52:09 +08:00
|
|
|
"*KeyboardInterrupt*"
|
2009-07-31 20:21:02 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 2
|
|
|
|
|
2013-03-25 15:53:08 +08:00
|
|
|
@pytest.mark.issue14
|
|
|
|
def test_capture_and_logging(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import logging
|
|
|
|
def test_log(capsys):
|
|
|
|
logging.error('x')
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
assert 'closed' not in result.stderr.str()
|
|
|
|
|
|
|
|
|
2009-12-30 07:11:27 +08:00
|
|
|
def test_setup_failure_does_not_kill_capturing(testdir):
|
|
|
|
sub1 = testdir.mkpydir("sub1")
|
|
|
|
sub1.join("conftest.py").write(py.code.Source("""
|
|
|
|
def pytest_runtest_setup(item):
|
|
|
|
raise ValueError(42)
|
|
|
|
"""))
|
|
|
|
sub1.join("test_mod.py").write("def test_func1(): pass")
|
|
|
|
result = testdir.runpytest(testdir.tmpdir, '--traceconfig')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*ValueError(42)*",
|
|
|
|
"*1 error*"
|
|
|
|
])
|
2009-12-30 18:16:20 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-12-30 18:16:20 +08:00
|
|
|
def test_fdfuncarg_skips_on_no_osdup(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import os
|
2010-04-28 21:24:38 +08:00
|
|
|
if hasattr(os, 'dup'):
|
|
|
|
del os.dup
|
2009-12-30 18:16:20 +08:00
|
|
|
def test_hello(capfd):
|
|
|
|
pass
|
|
|
|
""")
|
2010-05-18 22:01:58 +08:00
|
|
|
result = testdir.runpytest("--capture=no")
|
2009-12-30 18:16:20 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*1 skipped*"
|
|
|
|
])
|
2010-11-22 06:17:59 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2010-11-22 06:17:59 +08:00
|
|
|
def test_capture_conftest_runtest_setup(testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_runtest_setup():
|
|
|
|
print ("hello19")
|
|
|
|
""")
|
|
|
|
testdir.makepyfile("def test_func(): pass")
|
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.ret == 0
|
|
|
|
assert 'hello19' not in result.stdout.str()
|
2013-09-30 19:14:16 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2014-03-27 20:53:59 +08:00
|
|
|
@pytest.mark.xfail(reason='demonstrate #412')
|
|
|
|
def test_capture_badoutput(testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import os
|
|
|
|
|
|
|
|
def test_func():
|
|
|
|
omg = bytearray([1,129,1])
|
|
|
|
os.write(1, omg)
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest('--cap=fd')
|
|
|
|
#this fails on python3 - fnmatch first for debugging
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
'*1 failed*',
|
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
|
|
|
|
2013-09-30 19:14:16 +08:00
|
|
|
def test_capture_early_option_parsing(testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
def pytest_runtest_setup():
|
|
|
|
print ("hello19")
|
|
|
|
""")
|
|
|
|
testdir.makepyfile("def test_func(): pass")
|
|
|
|
result = testdir.runpytest("-vs")
|
|
|
|
assert result.ret == 0
|
|
|
|
assert 'hello19' in result.stdout.str()
|
2014-01-23 01:07:54 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
@pytest.mark.xfail(sys.version_info >= (3, 0), reason='encoding issues')
|
2014-01-29 20:47:11 +08:00
|
|
|
@pytest.mark.xfail(sys.version_info < (2, 6), reason='test not run on py25')
|
2014-01-23 01:07:54 +08:00
|
|
|
def test_capture_binary_output(testdir):
|
2014-01-25 04:22:19 +08:00
|
|
|
testdir.makepyfile(r"""
|
2014-01-23 01:07:54 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
def test_a():
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
subprocess.call([sys.executable, __file__])
|
|
|
|
|
|
|
|
@pytest.mark.skip
|
|
|
|
def test_foo():
|
|
|
|
import os;os.write(1, b'\xc3')
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_foo()
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest('--assert=plain')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
'*2 passed*',
|
|
|
|
])
|
2014-01-23 05:18:33 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
class TestTextIO:
|
|
|
|
def test_text(self):
|
|
|
|
f = capture.TextIO()
|
|
|
|
f.write("hello")
|
|
|
|
s = f.getvalue()
|
|
|
|
assert s == "hello"
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def test_unicode_and_str_mixture(self):
|
|
|
|
f = capture.TextIO()
|
|
|
|
if sys.version_info >= (3, 0):
|
|
|
|
f.write("\u00f6")
|
|
|
|
pytest.raises(TypeError, "f.write(bytes('hello', 'UTF-8'))")
|
|
|
|
else:
|
|
|
|
f.write(unicode("\u00f6", 'UTF-8'))
|
|
|
|
f.write("hello") # bytes
|
|
|
|
s = f.getvalue()
|
|
|
|
f.close()
|
|
|
|
assert isinstance(s, unicode)
|
|
|
|
|
|
|
|
|
|
|
|
def test_bytes_io():
|
|
|
|
f = capture.BytesIO()
|
|
|
|
f.write(tobytes("hello"))
|
|
|
|
pytest.raises(TypeError, "f.write(totext('hello'))")
|
|
|
|
s = f.getvalue()
|
|
|
|
assert s == tobytes("hello")
|
|
|
|
|
|
|
|
|
|
|
|
def test_dontreadfrominput():
|
|
|
|
from _pytest.capture import DontReadFromInput
|
|
|
|
f = DontReadFromInput()
|
|
|
|
assert not f.isatty()
|
|
|
|
pytest.raises(IOError, f.read)
|
|
|
|
pytest.raises(IOError, f.readlines)
|
|
|
|
pytest.raises(IOError, iter, f)
|
|
|
|
pytest.raises(ValueError, f.fileno)
|
|
|
|
f.close() # just for completeness
|
|
|
|
|
|
|
|
|
2014-01-29 18:18:15 +08:00
|
|
|
@pytest.yield_fixture
|
|
|
|
def tmpfile(testdir):
|
2014-01-25 04:22:19 +08:00
|
|
|
f = testdir.makepyfile("").open('wb+')
|
2014-01-29 18:18:15 +08:00
|
|
|
yield f
|
|
|
|
if not f.closed:
|
|
|
|
f.close()
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
@needsosdup
|
|
|
|
def test_dupfile(tmpfile):
|
|
|
|
flist = []
|
|
|
|
for i in range(5):
|
|
|
|
nf = capture.dupfile(tmpfile, encoding="utf-8")
|
|
|
|
assert nf != tmpfile
|
|
|
|
assert nf.fileno() != tmpfile.fileno()
|
|
|
|
assert nf not in flist
|
|
|
|
print_(i, end="", file=nf)
|
|
|
|
flist.append(nf)
|
|
|
|
for i in range(5):
|
|
|
|
f = flist[i]
|
|
|
|
f.close()
|
|
|
|
tmpfile.seek(0)
|
|
|
|
s = tmpfile.read()
|
|
|
|
assert "01234" in repr(s)
|
|
|
|
tmpfile.close()
|
|
|
|
|
|
|
|
|
|
|
|
def test_dupfile_no_mode():
|
|
|
|
"""
|
|
|
|
dupfile should trap an AttributeError and return f if no mode is supplied.
|
|
|
|
"""
|
|
|
|
class SomeFileWrapper(object):
|
|
|
|
"An object with a fileno method but no mode attribute"
|
|
|
|
def fileno(self):
|
|
|
|
return 1
|
|
|
|
tmpfile = SomeFileWrapper()
|
|
|
|
assert capture.dupfile(tmpfile) is tmpfile
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
capture.dupfile(tmpfile, raising=True)
|
|
|
|
|
|
|
|
|
2014-01-29 18:18:15 +08:00
|
|
|
@contextlib.contextmanager
|
|
|
|
def lsof_check():
|
2014-01-25 04:22:19 +08:00
|
|
|
pid = os.getpid()
|
|
|
|
try:
|
|
|
|
out = py.process.cmdexec("lsof -p %d" % pid)
|
|
|
|
except py.process.cmdexec.Error:
|
|
|
|
pytest.skip("could not run 'lsof'")
|
2014-01-29 18:18:15 +08:00
|
|
|
yield
|
2014-01-25 04:22:19 +08:00
|
|
|
out2 = py.process.cmdexec("lsof -p %d" % pid)
|
|
|
|
len1 = len([x for x in out.split("\n") if "REG" in x])
|
|
|
|
len2 = len([x for x in out2.split("\n") if "REG" in x])
|
|
|
|
assert len2 < len1 + 3, out2
|
|
|
|
|
|
|
|
|
|
|
|
class TestFDCapture:
|
|
|
|
pytestmark = needsosdup
|
|
|
|
|
2014-01-26 02:42:45 +08:00
|
|
|
def test_simple(self, tmpfile):
|
2014-01-25 04:22:19 +08:00
|
|
|
fd = tmpfile.fileno()
|
2014-01-26 02:42:45 +08:00
|
|
|
cap = capture.FDCapture(fd)
|
2014-01-25 04:22:19 +08:00
|
|
|
data = tobytes("hello")
|
|
|
|
os.write(fd, data)
|
|
|
|
f = cap.done()
|
|
|
|
s = f.read()
|
2014-01-29 18:18:15 +08:00
|
|
|
f.close()
|
2014-01-25 04:22:19 +08:00
|
|
|
assert not s
|
|
|
|
cap = capture.FDCapture(fd)
|
2014-01-26 02:42:45 +08:00
|
|
|
cap.start()
|
2014-01-25 04:22:19 +08:00
|
|
|
os.write(fd, data)
|
|
|
|
f = cap.done()
|
|
|
|
s = f.read()
|
|
|
|
assert s == "hello"
|
2014-01-29 18:18:15 +08:00
|
|
|
f.close()
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
def test_simple_many(self, tmpfile):
|
|
|
|
for i in range(10):
|
|
|
|
self.test_simple(tmpfile)
|
|
|
|
|
2014-01-29 18:18:15 +08:00
|
|
|
def test_simple_many_check_open_files(self, testdir):
|
|
|
|
with lsof_check():
|
|
|
|
with testdir.makepyfile("").open('wb+') as tmpfile:
|
|
|
|
self.test_simple_many(tmpfile)
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
def test_simple_fail_second_start(self, tmpfile):
|
|
|
|
fd = tmpfile.fileno()
|
|
|
|
cap = capture.FDCapture(fd)
|
|
|
|
f = cap.done()
|
|
|
|
pytest.raises(ValueError, cap.start)
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def test_stderr(self):
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = capture.FDCapture(2)
|
2014-01-26 02:42:45 +08:00
|
|
|
cap.start()
|
2014-01-25 04:22:19 +08:00
|
|
|
print_("hello", file=sys.stderr)
|
|
|
|
f = cap.done()
|
|
|
|
s = f.read()
|
|
|
|
assert s == "hello\n"
|
|
|
|
|
|
|
|
def test_stdin(self, tmpfile):
|
|
|
|
tmpfile.write(tobytes("3"))
|
|
|
|
tmpfile.seek(0)
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = capture.FDCapture(0, tmpfile)
|
2014-01-26 02:42:45 +08:00
|
|
|
cap.start()
|
2014-01-25 04:22:19 +08:00
|
|
|
# check with os.read() directly instead of raw_input(), because
|
|
|
|
# sys.stdin itself may be redirected (as pytest now does by default)
|
|
|
|
x = os.read(0, 100).strip()
|
|
|
|
cap.done()
|
|
|
|
assert x == tobytes("3")
|
|
|
|
|
|
|
|
def test_writeorg(self, tmpfile):
|
|
|
|
data1, data2 = tobytes("foo"), tobytes("bar")
|
|
|
|
try:
|
|
|
|
cap = capture.FDCapture(tmpfile.fileno())
|
2014-01-26 02:42:45 +08:00
|
|
|
cap.start()
|
2014-01-25 04:22:19 +08:00
|
|
|
tmpfile.write(data1)
|
|
|
|
cap.writeorg(data2)
|
|
|
|
finally:
|
|
|
|
tmpfile.close()
|
|
|
|
f = cap.done()
|
|
|
|
scap = f.read()
|
|
|
|
assert scap == totext(data1)
|
|
|
|
stmp = open(tmpfile.name, 'rb').read()
|
|
|
|
assert stmp == data2
|
|
|
|
|
|
|
|
|
|
|
|
class TestStdCapture:
|
|
|
|
def getcapture(self, **kw):
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = StdCapture(**kw)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.start_capturing()
|
2014-01-26 02:42:45 +08:00
|
|
|
return cap
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
def test_capturing_done_simple(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
sys.stdout.write("hello")
|
|
|
|
sys.stderr.write("world")
|
2014-03-14 19:49:36 +08:00
|
|
|
outfile, errfile = cap.stop_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
s = outfile.read()
|
|
|
|
assert s == "hello"
|
|
|
|
s = errfile.read()
|
|
|
|
assert s == "world"
|
|
|
|
|
|
|
|
def test_capturing_reset_simple(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
print("hello world")
|
|
|
|
sys.stderr.write("hello error\n")
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert out == "hello world\n"
|
|
|
|
assert err == "hello error\n"
|
|
|
|
|
|
|
|
def test_capturing_readouterr(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
try:
|
|
|
|
print ("hello world")
|
|
|
|
sys.stderr.write("hello error\n")
|
|
|
|
out, err = cap.readouterr()
|
|
|
|
assert out == "hello world\n"
|
|
|
|
assert err == "hello error\n"
|
|
|
|
sys.stderr.write("error2")
|
|
|
|
finally:
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert err == "error2"
|
|
|
|
|
|
|
|
def test_capturing_readouterr_unicode(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
try:
|
|
|
|
print ("hx\xc4\x85\xc4\x87")
|
|
|
|
out, err = cap.readouterr()
|
|
|
|
finally:
|
|
|
|
cap.reset()
|
|
|
|
assert out == py.builtin._totext("hx\xc4\x85\xc4\x87\n", "utf8")
|
|
|
|
|
|
|
|
@pytest.mark.skipif('sys.version_info >= (3,)',
|
|
|
|
reason='text output different for bytes on python3')
|
|
|
|
def test_capturing_readouterr_decode_error_handling(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
# triggered a internal error in pytest
|
|
|
|
print('\xa6')
|
|
|
|
out, err = cap.readouterr()
|
|
|
|
assert out == py.builtin._totext('\ufffd\n', 'unicode-escape')
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.reset()
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
def test_reset_twice_error(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
print ("hello")
|
|
|
|
out, err = cap.reset()
|
|
|
|
pytest.raises(ValueError, cap.reset)
|
|
|
|
assert out == "hello\n"
|
|
|
|
assert not err
|
|
|
|
|
|
|
|
def test_capturing_modify_sysouterr_in_between(self):
|
|
|
|
oldout = sys.stdout
|
|
|
|
olderr = sys.stderr
|
|
|
|
cap = self.getcapture()
|
|
|
|
sys.stdout.write("hello")
|
|
|
|
sys.stderr.write("world")
|
|
|
|
sys.stdout = capture.TextIO()
|
|
|
|
sys.stderr = capture.TextIO()
|
|
|
|
print ("not seen")
|
|
|
|
sys.stderr.write("not seen\n")
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert out == "hello"
|
|
|
|
assert err == "world"
|
|
|
|
assert sys.stdout == oldout
|
|
|
|
assert sys.stderr == olderr
|
|
|
|
|
|
|
|
def test_capturing_error_recursive(self):
|
|
|
|
cap1 = self.getcapture()
|
|
|
|
print ("cap1")
|
|
|
|
cap2 = self.getcapture()
|
|
|
|
print ("cap2")
|
|
|
|
out2, err2 = cap2.reset()
|
|
|
|
out1, err1 = cap1.reset()
|
|
|
|
assert out1 == "cap1\n"
|
|
|
|
assert out2 == "cap2\n"
|
|
|
|
|
|
|
|
def test_just_out_capture(self):
|
|
|
|
cap = self.getcapture(out=True, err=False)
|
|
|
|
sys.stdout.write("hello")
|
|
|
|
sys.stderr.write("world")
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert out == "hello"
|
|
|
|
assert not err
|
|
|
|
|
|
|
|
def test_just_err_capture(self):
|
|
|
|
cap = self.getcapture(out=False, err=True)
|
|
|
|
sys.stdout.write("hello")
|
|
|
|
sys.stderr.write("world")
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert err == "world"
|
|
|
|
assert not out
|
|
|
|
|
|
|
|
def test_stdin_restored(self):
|
|
|
|
old = sys.stdin
|
|
|
|
cap = self.getcapture(in_=True)
|
|
|
|
newstdin = sys.stdin
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert newstdin != sys.stdin
|
|
|
|
assert sys.stdin is old
|
|
|
|
|
|
|
|
def test_stdin_nulled_by_default(self):
|
|
|
|
print ("XXX this test may well hang instead of crashing")
|
|
|
|
print ("XXX which indicates an error in the underlying capturing")
|
|
|
|
print ("XXX mechanisms")
|
|
|
|
cap = self.getcapture()
|
|
|
|
pytest.raises(IOError, "sys.stdin.read()")
|
|
|
|
out, err = cap.reset()
|
|
|
|
|
|
|
|
|
|
|
|
class TestStdCaptureFD(TestStdCapture):
|
|
|
|
pytestmark = needsosdup
|
|
|
|
|
|
|
|
def getcapture(self, **kw):
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = StdCaptureFD(**kw)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.start_capturing()
|
2014-01-26 02:42:45 +08:00
|
|
|
return cap
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
def test_intermingling(self):
|
|
|
|
cap = self.getcapture()
|
|
|
|
oswritebytes(1, "1")
|
|
|
|
sys.stdout.write(str(2))
|
|
|
|
sys.stdout.flush()
|
|
|
|
oswritebytes(1, "3")
|
|
|
|
oswritebytes(2, "a")
|
|
|
|
sys.stderr.write("b")
|
|
|
|
sys.stderr.flush()
|
|
|
|
oswritebytes(2, "c")
|
|
|
|
out, err = cap.reset()
|
|
|
|
assert out == "123"
|
|
|
|
assert err == "abc"
|
|
|
|
|
|
|
|
def test_many(self, capfd):
|
2014-01-29 18:18:15 +08:00
|
|
|
with lsof_check():
|
2014-01-25 04:22:19 +08:00
|
|
|
for i in range(10):
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = StdCaptureFD()
|
2014-01-25 04:22:19 +08:00
|
|
|
cap.reset()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestStdCaptureFDinvalidFD:
|
|
|
|
pytestmark = needsosdup
|
|
|
|
|
|
|
|
def test_stdcapture_fd_invalid_fd(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import os
|
2014-03-28 14:03:37 +08:00
|
|
|
from _pytest import capture
|
|
|
|
def StdCaptureFD(out=True, err=True, in_=True):
|
|
|
|
return capture.StdCaptureBase(out, err, in_,
|
|
|
|
Capture=capture.FDCapture)
|
2014-01-25 04:22:19 +08:00
|
|
|
def test_stdout():
|
|
|
|
os.close(1)
|
|
|
|
cap = StdCaptureFD(out=True, err=False, in_=False)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.stop_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
def test_stderr():
|
|
|
|
os.close(2)
|
|
|
|
cap = StdCaptureFD(out=False, err=True, in_=False)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.stop_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
def test_stdin():
|
|
|
|
os.close(0)
|
|
|
|
cap = StdCaptureFD(out=False, err=False, in_=True)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.stop_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--capture=fd")
|
|
|
|
assert result.ret == 0
|
|
|
|
assert result.parseoutcomes()['passed'] == 3
|
|
|
|
|
|
|
|
|
|
|
|
def test_capture_not_started_but_reset():
|
2014-03-28 14:03:37 +08:00
|
|
|
capsys = StdCapture()
|
2014-03-14 19:49:36 +08:00
|
|
|
capsys.stop_capturing()
|
|
|
|
capsys.stop_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
capsys.reset()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@needsosdup
|
|
|
|
@pytest.mark.parametrize('use', [True, False])
|
|
|
|
def test_fdcapture_tmpfile_remains_the_same(tmpfile, use):
|
|
|
|
if not use:
|
|
|
|
tmpfile = True
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = StdCaptureFD(out=False, err=tmpfile)
|
2014-01-25 04:22:19 +08:00
|
|
|
try:
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.start_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
capfile = cap.err.tmpfile
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.readouterr()
|
2014-01-25 04:22:19 +08:00
|
|
|
finally:
|
|
|
|
cap.reset()
|
|
|
|
capfile2 = cap.err.tmpfile
|
|
|
|
assert capfile2 == capfile
|
|
|
|
|
|
|
|
|
2014-03-28 14:03:37 +08:00
|
|
|
@pytest.mark.parametrize('method', ['SysCapture', 'FDCapture'])
|
2014-01-25 04:22:19 +08:00
|
|
|
def test_capturing_and_logging_fundamentals(testdir, method):
|
|
|
|
if method == "StdCaptureFD" and not hasattr(os, 'dup'):
|
|
|
|
pytest.skip("need os.dup")
|
|
|
|
# here we check a fundamental feature
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import sys, os
|
|
|
|
import py, logging
|
|
|
|
from _pytest import capture
|
2014-03-28 14:03:37 +08:00
|
|
|
cap = capture.StdCaptureBase(out=False, in_=False,
|
|
|
|
Capture=capture.%s)
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.start_capturing()
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
logging.warn("hello1")
|
2014-03-14 19:49:36 +08:00
|
|
|
outerr = cap.readouterr()
|
2014-01-25 04:22:19 +08:00
|
|
|
print ("suspend, captured %%s" %%(outerr,))
|
|
|
|
logging.warn("hello2")
|
|
|
|
|
2014-03-14 19:49:36 +08:00
|
|
|
cap.pop_outerr_to_orig()
|
2014-01-25 04:22:19 +08:00
|
|
|
logging.warn("hello3")
|
|
|
|
|
2014-03-14 19:49:36 +08:00
|
|
|
outerr = cap.readouterr()
|
2014-01-25 04:22:19 +08:00
|
|
|
print ("suspend2, captured %%s" %% (outerr,))
|
|
|
|
""" % (method,))
|
|
|
|
result = testdir.runpython(p)
|
2014-03-14 19:49:36 +08:00
|
|
|
result.stdout.fnmatch_lines("""
|
|
|
|
suspend, captured*hello1*
|
|
|
|
suspend2, captured*WARNING:root:hello3*
|
|
|
|
""")
|
|
|
|
result.stderr.fnmatch_lines("""
|
|
|
|
WARNING:root:hello2
|
|
|
|
""")
|
2014-01-25 04:22:19 +08:00
|
|
|
assert "atexit" not in result.stderr.str()
|