2014-01-25 04:22:19 +08:00
|
|
|
"""
|
|
|
|
per-test stdout/stderr capturing mechanisms,
|
|
|
|
``capsys`` and ``capfd`` function arguments.
|
|
|
|
"""
|
|
|
|
# note: py.io capture was where copied from
|
|
|
|
# pylib 1.4.20.dev2 (rev 13d9af95547e)
|
2013-09-30 19:14:16 +08:00
|
|
|
import sys
|
2009-09-05 22:54:52 +08:00
|
|
|
import os
|
2014-01-25 04:22:19 +08:00
|
|
|
import tempfile
|
|
|
|
|
|
|
|
import py
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
try:
|
|
|
|
from io import StringIO
|
|
|
|
except ImportError:
|
|
|
|
from StringIO import StringIO
|
|
|
|
|
|
|
|
try:
|
|
|
|
from io import BytesIO
|
|
|
|
except ImportError:
|
|
|
|
class BytesIO(StringIO):
|
|
|
|
def write(self, data):
|
|
|
|
if isinstance(data, unicode):
|
|
|
|
raise TypeError("not a byte value: %r" % (data,))
|
|
|
|
StringIO.write(self, data)
|
|
|
|
|
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
class TextIO(StringIO):
|
|
|
|
def write(self, data):
|
|
|
|
if not isinstance(data, unicode):
|
|
|
|
enc = getattr(self, '_encoding', 'UTF-8')
|
|
|
|
data = unicode(data, enc, 'replace')
|
|
|
|
StringIO.write(self, data)
|
|
|
|
else:
|
|
|
|
TextIO = StringIO
|
|
|
|
|
|
|
|
|
|
|
|
patchsysdict = {0: 'stdin', 1: 'stdout', 2: 'stderr'}
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-07-26 00:09:01 +08:00
|
|
|
def pytest_addoption(parser):
|
|
|
|
group = parser.getgroup("general")
|
2014-01-25 04:22:19 +08:00
|
|
|
group._addoption(
|
|
|
|
'--capture', action="store", default=None,
|
2013-07-25 21:33:43 +08:00
|
|
|
metavar="method", choices=['fd', 'sys', 'no'],
|
2010-01-03 19:41:29 +08:00
|
|
|
help="per-test capturing method: one of fd (default)|sys|no.")
|
2014-01-25 04:22:19 +08:00
|
|
|
group._addoption(
|
|
|
|
'-s', action="store_const", const="no", dest="capture",
|
2009-10-17 23:43:59 +08:00
|
|
|
help="shortcut for --capture=no.")
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2011-11-08 02:08:41 +08:00
|
|
|
@pytest.mark.tryfirst
|
2013-09-30 19:14:16 +08:00
|
|
|
def pytest_load_initial_conftests(early_config, parser, args, __multicall__):
|
|
|
|
ns = parser.parse_known_args(args)
|
|
|
|
method = ns.capture
|
|
|
|
if not method:
|
2011-11-08 02:08:41 +08:00
|
|
|
method = "fd"
|
2013-09-30 19:14:16 +08:00
|
|
|
if method == "fd" and not hasattr(os, "dup"):
|
2011-11-08 02:08:41 +08:00
|
|
|
method = "sys"
|
|
|
|
capman = CaptureManager(method)
|
2013-09-30 19:14:16 +08:00
|
|
|
early_config.pluginmanager.register(capman, "capturemanager")
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2013-09-29 04:23:00 +08:00
|
|
|
# make sure that capturemanager is properly reset at final shutdown
|
|
|
|
def teardown():
|
|
|
|
try:
|
|
|
|
capman.reset_capturings()
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2013-09-30 19:14:16 +08:00
|
|
|
early_config.pluginmanager.add_shutdown(teardown)
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2013-10-02 18:39:01 +08:00
|
|
|
# make sure logging does not raise exceptions at the end
|
2013-09-30 22:09:26 +08:00
|
|
|
def silence_logging_at_shutdown():
|
|
|
|
if "logging" in sys.modules:
|
|
|
|
sys.modules["logging"].raiseExceptions = False
|
|
|
|
early_config.pluginmanager.add_shutdown(silence_logging_at_shutdown)
|
2013-09-30 19:14:16 +08:00
|
|
|
|
|
|
|
# finally trigger conftest loading but while capturing (issue93)
|
|
|
|
capman.resumecapture()
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
return __multicall__.execute()
|
|
|
|
finally:
|
|
|
|
out, err = capman.suspendcapture()
|
|
|
|
except:
|
|
|
|
sys.stdout.write(out)
|
|
|
|
sys.stderr.write(err)
|
|
|
|
raise
|
2011-11-08 02:08:41 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-07-26 00:45:04 +08:00
|
|
|
def addouterr(rep, outerr):
|
|
|
|
for secname, content in zip(["out", "err"], outerr):
|
|
|
|
if content:
|
2011-07-13 05:09:03 +08:00
|
|
|
rep.sections.append(("Captured std%s" % secname, content))
|
2009-07-26 00:45:04 +08:00
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2010-05-18 01:00:39 +08:00
|
|
|
class NoCapture:
|
|
|
|
def startall(self):
|
|
|
|
pass
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2010-05-18 01:00:39 +08:00
|
|
|
def resume(self):
|
|
|
|
pass
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2010-10-26 05:09:24 +08:00
|
|
|
def reset(self):
|
|
|
|
pass
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2010-05-18 01:00:39 +08:00
|
|
|
def suspend(self):
|
|
|
|
return "", ""
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
class CaptureManager:
|
2011-11-08 02:08:41 +08:00
|
|
|
def __init__(self, defaultmethod=None):
|
2009-07-31 20:21:02 +08:00
|
|
|
self._method2capture = {}
|
2011-11-08 02:08:41 +08:00
|
|
|
self._defaultmethod = defaultmethod
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2009-08-06 20:34:19 +08:00
|
|
|
def _maketempfile(self):
|
|
|
|
f = py.std.tempfile.TemporaryFile()
|
2014-01-25 04:22:19 +08:00
|
|
|
newf = dupfile(f, encoding="UTF-8")
|
2010-10-26 05:09:24 +08:00
|
|
|
f.close()
|
2009-08-29 21:51:49 +08:00
|
|
|
return newf
|
2009-08-06 20:34:19 +08:00
|
|
|
|
|
|
|
def _makestringio(self):
|
2014-01-25 04:22:19 +08:00
|
|
|
return TextIO()
|
2009-08-06 20:34:19 +08:00
|
|
|
|
2010-05-18 01:00:39 +08:00
|
|
|
def _getcapture(self, method):
|
2010-07-27 03:15:15 +08:00
|
|
|
if method == "fd":
|
2014-01-25 04:22:19 +08:00
|
|
|
return StdCaptureFD(
|
|
|
|
out=self._maketempfile(),
|
|
|
|
err=self._maketempfile(),
|
2009-08-06 20:34:19 +08:00
|
|
|
)
|
2009-07-31 20:21:02 +08:00
|
|
|
elif method == "sys":
|
2014-01-25 04:22:19 +08:00
|
|
|
return StdCapture(
|
|
|
|
out=self._makestringio(),
|
|
|
|
err=self._makestringio(),
|
2009-08-06 20:34:19 +08:00
|
|
|
)
|
2010-05-18 01:00:39 +08:00
|
|
|
elif method == "no":
|
|
|
|
return NoCapture()
|
2009-07-31 20:21:02 +08:00
|
|
|
else:
|
|
|
|
raise ValueError("unknown capturing method: %r" % method)
|
|
|
|
|
|
|
|
def _getmethod(self, config, fspath):
|
|
|
|
if config.option.capture:
|
2009-09-05 22:54:52 +08:00
|
|
|
method = config.option.capture
|
|
|
|
else:
|
2010-07-27 03:15:15 +08:00
|
|
|
try:
|
2009-09-05 22:54:52 +08:00
|
|
|
method = config._conftest.rget("option_capture", path=fspath)
|
|
|
|
except KeyError:
|
|
|
|
method = "fd"
|
2014-01-25 04:22:19 +08:00
|
|
|
if method == "fd" and not hasattr(os, 'dup'): # e.g. jython
|
2010-07-27 03:15:15 +08:00
|
|
|
method = "sys"
|
2009-09-05 22:54:52 +08:00
|
|
|
return method
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2011-11-08 02:08:41 +08:00
|
|
|
def reset_capturings(self):
|
2014-01-25 04:22:19 +08:00
|
|
|
for cap in self._method2capture.values():
|
2011-11-08 02:08:41 +08:00
|
|
|
cap.reset()
|
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def resumecapture_item(self, item):
|
|
|
|
method = self._getmethod(item.config, item.fspath)
|
|
|
|
if not hasattr(item, 'outerr'):
|
2014-01-25 04:22:19 +08:00
|
|
|
item.outerr = ('', '') # we accumulate outerr on the item
|
2009-07-31 20:21:02 +08:00
|
|
|
return self.resumecapture(method)
|
|
|
|
|
2011-11-08 02:08:41 +08:00
|
|
|
def resumecapture(self, method=None):
|
2009-07-31 20:21:02 +08:00
|
|
|
if hasattr(self, '_capturing'):
|
2014-01-25 04:22:19 +08:00
|
|
|
raise ValueError(
|
|
|
|
"cannot resume, already capturing with %r" %
|
2009-07-31 20:21:02 +08:00
|
|
|
(self._capturing,))
|
2011-11-08 02:08:41 +08:00
|
|
|
if method is None:
|
|
|
|
method = self._defaultmethod
|
2010-05-18 01:00:39 +08:00
|
|
|
cap = self._method2capture.get(method)
|
2010-07-27 03:15:15 +08:00
|
|
|
self._capturing = method
|
2010-05-18 01:00:39 +08:00
|
|
|
if cap is None:
|
|
|
|
self._method2capture[method] = cap = self._getcapture(method)
|
|
|
|
cap.startall()
|
|
|
|
else:
|
|
|
|
cap.resume()
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2009-12-30 07:11:27 +08:00
|
|
|
def suspendcapture(self, item=None):
|
2009-07-31 20:21:02 +08:00
|
|
|
self.deactivate_funcargs()
|
2009-12-30 07:11:27 +08:00
|
|
|
if hasattr(self, '_capturing'):
|
|
|
|
method = self._capturing
|
2010-05-18 01:00:39 +08:00
|
|
|
cap = self._method2capture.get(method)
|
|
|
|
if cap is not None:
|
2009-12-30 07:11:27 +08:00
|
|
|
outerr = cap.suspend()
|
|
|
|
del self._capturing
|
|
|
|
if item:
|
2010-07-27 03:15:15 +08:00
|
|
|
outerr = (item.outerr[0] + outerr[0],
|
2010-05-18 01:00:39 +08:00
|
|
|
item.outerr[1] + outerr[1])
|
2010-07-27 03:15:15 +08:00
|
|
|
return outerr
|
2010-10-06 20:48:24 +08:00
|
|
|
if hasattr(item, 'outerr'):
|
|
|
|
return item.outerr
|
2009-12-30 07:11:27 +08:00
|
|
|
return "", ""
|
2009-07-31 20:21:02 +08:00
|
|
|
|
|
|
|
def activate_funcargs(self, pyfuncitem):
|
2012-07-16 16:46:44 +08:00
|
|
|
funcargs = getattr(pyfuncitem, "funcargs", None)
|
|
|
|
if funcargs is not None:
|
|
|
|
for name, capfuncarg in funcargs.items():
|
2012-06-04 03:06:43 +08:00
|
|
|
if name in ('capsys', 'capfd'):
|
|
|
|
assert not hasattr(self, '_capturing_funcarg')
|
|
|
|
self._capturing_funcarg = capfuncarg
|
|
|
|
capfuncarg._start()
|
2009-07-31 20:21:02 +08:00
|
|
|
|
|
|
|
def deactivate_funcargs(self):
|
2012-06-04 03:01:27 +08:00
|
|
|
capturing_funcarg = getattr(self, '_capturing_funcarg', None)
|
|
|
|
if capturing_funcarg:
|
|
|
|
outerr = capturing_funcarg._finalize()
|
|
|
|
del self._capturing_funcarg
|
|
|
|
return outerr
|
2009-07-31 20:21:02 +08:00
|
|
|
|
2009-08-12 01:00:41 +08:00
|
|
|
def pytest_make_collect_report(self, __multicall__, collector):
|
2009-07-31 20:21:02 +08:00
|
|
|
method = self._getmethod(collector.config, collector.fspath)
|
2010-11-06 16:58:04 +08:00
|
|
|
try:
|
|
|
|
self.resumecapture(method)
|
|
|
|
except ValueError:
|
2014-01-25 04:22:19 +08:00
|
|
|
# recursive collect, XXX refactor capturing
|
|
|
|
# to allow for more lightweight recursive capturing
|
|
|
|
return
|
2009-07-31 20:21:02 +08:00
|
|
|
try:
|
2009-08-12 01:00:41 +08:00
|
|
|
rep = __multicall__.execute()
|
2009-07-31 20:21:02 +08:00
|
|
|
finally:
|
|
|
|
outerr = self.suspendcapture()
|
|
|
|
addouterr(rep, outerr)
|
|
|
|
return rep
|
2009-07-26 00:09:01 +08:00
|
|
|
|
2010-11-22 06:17:59 +08:00
|
|
|
@pytest.mark.tryfirst
|
2009-07-26 00:09:01 +08:00
|
|
|
def pytest_runtest_setup(self, item):
|
2009-07-31 20:21:02 +08:00
|
|
|
self.resumecapture_item(item)
|
2009-07-26 00:09:01 +08:00
|
|
|
|
2010-11-22 06:17:59 +08:00
|
|
|
@pytest.mark.tryfirst
|
2009-07-26 00:09:01 +08:00
|
|
|
def pytest_runtest_call(self, item):
|
2009-07-31 20:21:02 +08:00
|
|
|
self.resumecapture_item(item)
|
|
|
|
self.activate_funcargs(item)
|
2009-07-26 00:09:01 +08:00
|
|
|
|
2010-11-22 06:17:59 +08:00
|
|
|
@pytest.mark.tryfirst
|
2009-07-26 00:09:01 +08:00
|
|
|
def pytest_runtest_teardown(self, item):
|
2009-07-31 20:21:02 +08:00
|
|
|
self.resumecapture_item(item)
|
2009-07-26 00:09:01 +08:00
|
|
|
|
|
|
|
def pytest_keyboard_interrupt(self, excinfo):
|
2009-07-31 20:21:02 +08:00
|
|
|
if hasattr(self, '_capturing'):
|
|
|
|
self.suspendcapture()
|
2009-07-26 00:09:01 +08:00
|
|
|
|
2010-11-22 06:17:59 +08:00
|
|
|
@pytest.mark.tryfirst
|
2009-08-12 01:00:41 +08:00
|
|
|
def pytest_runtest_makereport(self, __multicall__, item, call):
|
2012-06-04 03:01:27 +08:00
|
|
|
funcarg_outerr = self.deactivate_funcargs()
|
2009-08-12 01:00:41 +08:00
|
|
|
rep = __multicall__.execute()
|
2009-12-30 07:11:27 +08:00
|
|
|
outerr = self.suspendcapture(item)
|
2012-06-04 03:01:27 +08:00
|
|
|
if funcarg_outerr is not None:
|
|
|
|
outerr = (outerr[0] + funcarg_outerr[0],
|
|
|
|
outerr[1] + funcarg_outerr[1])
|
2013-04-16 12:45:14 +08:00
|
|
|
addouterr(rep, outerr)
|
2009-07-31 20:21:02 +08:00
|
|
|
if not rep.passed or rep.when == "teardown":
|
|
|
|
outerr = ('', '')
|
2010-07-27 03:15:15 +08:00
|
|
|
item.outerr = outerr
|
2009-07-26 00:09:01 +08:00
|
|
|
return rep
|
|
|
|
|
2012-06-04 03:01:27 +08:00
|
|
|
error_capsysfderror = "cannot use capsys and capfd at the same time"
|
|
|
|
|
2014-01-25 04:22:19 +08:00
|
|
|
|
2009-05-21 05:12:37 +08:00
|
|
|
def pytest_funcarg__capsys(request):
|
2011-03-04 06:40:38 +08:00
|
|
|
"""enables capturing of writes to sys.stdout/sys.stderr and makes
|
|
|
|
captured output available via ``capsys.readouterr()`` method calls
|
|
|
|
which return a ``(out, err)`` tuple.
|
2010-07-27 03:15:15 +08:00
|
|
|
"""
|
2012-07-19 01:49:14 +08:00
|
|
|
if "capfd" in request._funcargs:
|
2012-07-19 15:20:14 +08:00
|
|
|
raise request.raiseerror(error_capsysfderror)
|
2014-01-25 04:22:19 +08:00
|
|
|
return CaptureFixture(StdCapture)
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-05-21 05:12:37 +08:00
|
|
|
def pytest_funcarg__capfd(request):
|
2011-03-04 06:40:38 +08:00
|
|
|
"""enables capturing of writes to file descriptors 1 and 2 and makes
|
|
|
|
captured output available via ``capsys.readouterr()`` method calls
|
|
|
|
which return a ``(out, err)`` tuple.
|
2010-07-27 03:15:15 +08:00
|
|
|
"""
|
2012-07-19 01:49:14 +08:00
|
|
|
if "capsys" in request._funcargs:
|
2012-07-19 15:20:14 +08:00
|
|
|
request.raiseerror(error_capsysfderror)
|
2010-05-18 01:00:39 +08:00
|
|
|
if not hasattr(os, 'dup'):
|
2012-06-04 03:01:27 +08:00
|
|
|
pytest.skip("capfd funcarg needs os.dup")
|
2014-01-25 04:22:19 +08:00
|
|
|
return CaptureFixture(StdCaptureFD)
|
|
|
|
|
2009-06-09 22:08:34 +08:00
|
|
|
|
2012-10-05 20:24:44 +08:00
|
|
|
class CaptureFixture:
|
2010-10-05 23:56:37 +08:00
|
|
|
def __init__(self, captureclass):
|
2014-01-26 02:42:45 +08:00
|
|
|
self._capture = captureclass()
|
2009-07-31 20:21:02 +08:00
|
|
|
|
|
|
|
def _start(self):
|
2014-01-25 04:22:19 +08:00
|
|
|
self._capture.startall()
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def _finalize(self):
|
2014-01-25 04:22:19 +08:00
|
|
|
if hasattr(self, '_capture'):
|
|
|
|
outerr = self._outerr = self._capture.reset()
|
|
|
|
del self._capture
|
2012-06-04 03:01:27 +08:00
|
|
|
return outerr
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def readouterr(self):
|
2012-11-22 03:43:31 +08:00
|
|
|
try:
|
2014-01-25 04:22:19 +08:00
|
|
|
return self._capture.readouterr()
|
2012-11-22 03:43:31 +08:00
|
|
|
except AttributeError:
|
|
|
|
return self._outerr
|
2009-02-27 18:18:27 +08:00
|
|
|
|
2009-07-31 20:21:02 +08:00
|
|
|
def close(self):
|
2010-05-18 01:00:39 +08:00
|
|
|
self._finalize()
|
2014-01-25 04:22:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
class FDCapture:
|
|
|
|
""" Capture IO to/from a given os-level filedescriptor. """
|
|
|
|
|
2014-01-26 02:42:45 +08:00
|
|
|
def __init__(self, targetfd, tmpfile=None, patchsys=False):
|
2014-01-25 04:22:19 +08:00
|
|
|
""" save targetfd descriptor, and open a new
|
|
|
|
temporary file there. If no tmpfile is
|
|
|
|
specified a tempfile.Tempfile() will be opened
|
|
|
|
in text mode.
|
|
|
|
"""
|
|
|
|
self.targetfd = targetfd
|
|
|
|
if tmpfile is None and targetfd != 0:
|
|
|
|
f = tempfile.TemporaryFile('wb+')
|
|
|
|
tmpfile = dupfile(f, encoding="UTF-8")
|
|
|
|
f.close()
|
|
|
|
self.tmpfile = tmpfile
|
|
|
|
self._savefd = os.dup(self.targetfd)
|
|
|
|
if patchsys:
|
|
|
|
self._oldsys = getattr(sys, patchsysdict[targetfd])
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
try:
|
|
|
|
os.fstat(self._savefd)
|
|
|
|
except OSError:
|
|
|
|
raise ValueError(
|
|
|
|
"saved filedescriptor not valid, "
|
|
|
|
"did you call start() twice?")
|
|
|
|
if self.targetfd == 0 and not self.tmpfile:
|
|
|
|
fd = os.open(os.devnull, os.O_RDONLY)
|
|
|
|
os.dup2(fd, 0)
|
|
|
|
os.close(fd)
|
|
|
|
if hasattr(self, '_oldsys'):
|
|
|
|
setattr(sys, patchsysdict[self.targetfd], DontReadFromInput())
|
|
|
|
else:
|
|
|
|
os.dup2(self.tmpfile.fileno(), self.targetfd)
|
|
|
|
if hasattr(self, '_oldsys'):
|
|
|
|
setattr(sys, patchsysdict[self.targetfd], self.tmpfile)
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
""" unpatch and clean up, returns the self.tmpfile (file object)
|
|
|
|
"""
|
|
|
|
os.dup2(self._savefd, self.targetfd)
|
|
|
|
os.close(self._savefd)
|
|
|
|
if self.targetfd != 0:
|
|
|
|
self.tmpfile.seek(0)
|
|
|
|
if hasattr(self, '_oldsys'):
|
|
|
|
setattr(sys, patchsysdict[self.targetfd], self._oldsys)
|
|
|
|
return self.tmpfile
|
|
|
|
|
|
|
|
def writeorg(self, data):
|
|
|
|
""" write a string to the original file descriptor
|
|
|
|
"""
|
|
|
|
tempfp = tempfile.TemporaryFile()
|
|
|
|
try:
|
|
|
|
os.dup2(self._savefd, tempfp.fileno())
|
|
|
|
tempfp.write(data)
|
|
|
|
finally:
|
|
|
|
tempfp.close()
|
|
|
|
|
|
|
|
|
|
|
|
def dupfile(f, mode=None, buffering=0, raising=False, encoding=None):
|
|
|
|
""" return a new open file object that's a duplicate of f
|
|
|
|
|
|
|
|
mode is duplicated if not given, 'buffering' controls
|
|
|
|
buffer size (defaulting to no buffering) and 'raising'
|
|
|
|
defines whether an exception is raised when an incompatible
|
|
|
|
file object is passed in (if raising is False, the file
|
|
|
|
object itself will be returned)
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
fd = f.fileno()
|
|
|
|
mode = mode or f.mode
|
|
|
|
except AttributeError:
|
|
|
|
if raising:
|
|
|
|
raise
|
|
|
|
return f
|
|
|
|
newfd = os.dup(fd)
|
|
|
|
if sys.version_info >= (3, 0):
|
|
|
|
if encoding is not None:
|
|
|
|
mode = mode.replace("b", "")
|
|
|
|
buffering = True
|
|
|
|
return os.fdopen(newfd, mode, buffering, encoding, closefd=True)
|
|
|
|
else:
|
|
|
|
f = os.fdopen(newfd, mode, buffering)
|
|
|
|
if encoding is not None:
|
|
|
|
return EncodedFile(f, encoding)
|
|
|
|
return f
|
|
|
|
|
|
|
|
|
|
|
|
class EncodedFile(object):
|
|
|
|
def __init__(self, _stream, encoding):
|
|
|
|
self._stream = _stream
|
|
|
|
self.encoding = encoding
|
|
|
|
|
|
|
|
def write(self, obj):
|
|
|
|
if isinstance(obj, unicode):
|
|
|
|
obj = obj.encode(self.encoding)
|
|
|
|
self._stream.write(obj)
|
|
|
|
|
|
|
|
def writelines(self, linelist):
|
|
|
|
data = ''.join(linelist)
|
|
|
|
self.write(data)
|
|
|
|
|
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self._stream, name)
|
|
|
|
|
|
|
|
|
|
|
|
class Capture(object):
|
|
|
|
def reset(self):
|
|
|
|
""" reset sys.stdout/stderr and return captured output as strings. """
|
|
|
|
if hasattr(self, '_reset'):
|
|
|
|
raise ValueError("was already reset")
|
|
|
|
self._reset = True
|
|
|
|
outfile, errfile = self.done(save=False)
|
|
|
|
out, err = "", ""
|
|
|
|
if outfile and not outfile.closed:
|
|
|
|
out = outfile.read()
|
|
|
|
outfile.close()
|
|
|
|
if errfile and errfile != outfile and not errfile.closed:
|
|
|
|
err = errfile.read()
|
|
|
|
errfile.close()
|
|
|
|
return out, err
|
|
|
|
|
|
|
|
def suspend(self):
|
|
|
|
""" return current snapshot captures, memorize tempfiles. """
|
|
|
|
outerr = self.readouterr()
|
|
|
|
outfile, errfile = self.done()
|
|
|
|
return outerr
|
|
|
|
|
|
|
|
|
|
|
|
class StdCaptureFD(Capture):
|
|
|
|
""" This class allows to capture writes to FD1 and FD2
|
|
|
|
and may connect a NULL file to FD0 (and prevent
|
|
|
|
reads from sys.stdin). If any of the 0,1,2 file descriptors
|
|
|
|
is invalid it will not be captured.
|
|
|
|
"""
|
2014-01-26 02:56:27 +08:00
|
|
|
def __init__(self, out=True, err=True, in_=True, patchsys=True):
|
2014-01-25 04:22:19 +08:00
|
|
|
self._options = {
|
|
|
|
"out": out,
|
|
|
|
"err": err,
|
|
|
|
"in_": in_,
|
|
|
|
"patchsys": patchsys,
|
|
|
|
}
|
|
|
|
self._save()
|
|
|
|
|
|
|
|
def _save(self):
|
|
|
|
in_ = self._options['in_']
|
|
|
|
out = self._options['out']
|
|
|
|
err = self._options['err']
|
|
|
|
patchsys = self._options['patchsys']
|
|
|
|
if in_:
|
|
|
|
try:
|
|
|
|
self.in_ = FDCapture(
|
2014-01-26 02:42:45 +08:00
|
|
|
0, tmpfile=None,
|
2014-01-25 04:22:19 +08:00
|
|
|
patchsys=patchsys)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
if out:
|
|
|
|
tmpfile = None
|
|
|
|
if hasattr(out, 'write'):
|
|
|
|
tmpfile = out
|
|
|
|
try:
|
|
|
|
self.out = FDCapture(
|
|
|
|
1, tmpfile=tmpfile,
|
2014-01-26 02:42:45 +08:00
|
|
|
patchsys=patchsys)
|
2014-01-25 04:22:19 +08:00
|
|
|
self._options['out'] = self.out.tmpfile
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
if err:
|
2014-01-26 02:56:27 +08:00
|
|
|
if hasattr(err, 'write'):
|
2014-01-25 04:22:19 +08:00
|
|
|
tmpfile = err
|
|
|
|
else:
|
|
|
|
tmpfile = None
|
|
|
|
try:
|
|
|
|
self.err = FDCapture(
|
|
|
|
2, tmpfile=tmpfile,
|
2014-01-26 02:42:45 +08:00
|
|
|
patchsys=patchsys)
|
2014-01-25 04:22:19 +08:00
|
|
|
self._options['err'] = self.err.tmpfile
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def startall(self):
|
|
|
|
if hasattr(self, 'in_'):
|
|
|
|
self.in_.start()
|
|
|
|
if hasattr(self, 'out'):
|
|
|
|
self.out.start()
|
|
|
|
if hasattr(self, 'err'):
|
|
|
|
self.err.start()
|
|
|
|
|
|
|
|
def resume(self):
|
|
|
|
""" resume capturing with original temp files. """
|
|
|
|
self.startall()
|
|
|
|
|
|
|
|
def done(self, save=True):
|
|
|
|
""" return (outfile, errfile) and stop capturing. """
|
|
|
|
outfile = errfile = None
|
|
|
|
if hasattr(self, 'out') and not self.out.tmpfile.closed:
|
|
|
|
outfile = self.out.done()
|
|
|
|
if hasattr(self, 'err') and not self.err.tmpfile.closed:
|
|
|
|
errfile = self.err.done()
|
|
|
|
if hasattr(self, 'in_'):
|
|
|
|
self.in_.done()
|
|
|
|
if save:
|
|
|
|
self._save()
|
|
|
|
return outfile, errfile
|
|
|
|
|
|
|
|
def readouterr(self):
|
|
|
|
""" return snapshot value of stdout/stderr capturings. """
|
|
|
|
out = self._readsnapshot('out')
|
|
|
|
err = self._readsnapshot('err')
|
|
|
|
return out, err
|
|
|
|
|
|
|
|
def _readsnapshot(self, name):
|
|
|
|
if hasattr(self, name):
|
|
|
|
f = getattr(self, name).tmpfile
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
f.seek(0)
|
|
|
|
res = f.read()
|
|
|
|
enc = getattr(f, "encoding", None)
|
|
|
|
if enc:
|
|
|
|
res = py.builtin._totext(res, enc, "replace")
|
|
|
|
f.truncate(0)
|
|
|
|
f.seek(0)
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
|
|
|
class StdCapture(Capture):
|
|
|
|
""" This class allows to capture writes to sys.stdout|stderr "in-memory"
|
|
|
|
and will raise errors on tries to read from sys.stdin. It only
|
|
|
|
modifies sys.stdout|stderr|stdin attributes and does not
|
|
|
|
touch underlying File Descriptors (use StdCaptureFD for that).
|
|
|
|
"""
|
2014-01-26 02:56:27 +08:00
|
|
|
def __init__(self, out=True, err=True, in_=True):
|
2014-01-25 04:22:19 +08:00
|
|
|
self._oldout = sys.stdout
|
|
|
|
self._olderr = sys.stderr
|
|
|
|
self._oldin = sys.stdin
|
|
|
|
if out and not hasattr(out, 'file'):
|
|
|
|
out = TextIO()
|
|
|
|
self.out = out
|
|
|
|
if err:
|
2014-01-26 02:56:27 +08:00
|
|
|
if not hasattr(err, 'write'):
|
2014-01-25 04:22:19 +08:00
|
|
|
err = TextIO()
|
|
|
|
self.err = err
|
|
|
|
self.in_ = in_
|
|
|
|
|
|
|
|
def startall(self):
|
|
|
|
if self.out:
|
|
|
|
sys.stdout = self.out
|
|
|
|
if self.err:
|
|
|
|
sys.stderr = self.err
|
|
|
|
if self.in_:
|
|
|
|
sys.stdin = self.in_ = DontReadFromInput()
|
|
|
|
|
|
|
|
def done(self, save=True):
|
|
|
|
""" return (outfile, errfile) and stop capturing. """
|
|
|
|
outfile = errfile = None
|
|
|
|
if self.out and not self.out.closed:
|
|
|
|
sys.stdout = self._oldout
|
|
|
|
outfile = self.out
|
|
|
|
outfile.seek(0)
|
|
|
|
if self.err and not self.err.closed:
|
|
|
|
sys.stderr = self._olderr
|
|
|
|
errfile = self.err
|
|
|
|
errfile.seek(0)
|
|
|
|
if self.in_:
|
|
|
|
sys.stdin = self._oldin
|
|
|
|
return outfile, errfile
|
|
|
|
|
|
|
|
def resume(self):
|
|
|
|
""" resume capturing with original temp files. """
|
|
|
|
self.startall()
|
|
|
|
|
|
|
|
def readouterr(self):
|
|
|
|
""" return snapshot value of stdout/stderr capturings. """
|
|
|
|
out = err = ""
|
|
|
|
if self.out:
|
|
|
|
out = self.out.getvalue()
|
|
|
|
self.out.truncate(0)
|
|
|
|
self.out.seek(0)
|
|
|
|
if self.err:
|
|
|
|
err = self.err.getvalue()
|
|
|
|
self.err.truncate(0)
|
|
|
|
self.err.seek(0)
|
|
|
|
return out, err
|
|
|
|
|
|
|
|
|
|
|
|
class DontReadFromInput:
|
|
|
|
"""Temporary stub class. Ideally when stdin is accessed, the
|
|
|
|
capturing should be turned off, with possibly all data captured
|
|
|
|
so far sent to the screen. This should be configurable, though,
|
|
|
|
because in automated test runs it is better to crash than
|
|
|
|
hang indefinitely.
|
|
|
|
"""
|
|
|
|
def read(self, *args):
|
|
|
|
raise IOError("reading from stdin while output is captured")
|
|
|
|
readline = read
|
|
|
|
readlines = read
|
|
|
|
__iter__ = read
|
|
|
|
|
|
|
|
def fileno(self):
|
|
|
|
raise ValueError("redirected Stdin is pseudofile, has no fileno()")
|
|
|
|
|
|
|
|
def isatty(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
pass
|