pdb: handle capturing with fixtures only

This commit is contained in:
Daniel Hahler
2019-03-18 22:58:22 +01:00
parent c92021fc4f
commit d406786a8d
3 changed files with 92 additions and 6 deletions

View File

@@ -107,6 +107,16 @@ class CaptureManager(object):
return MultiCapture(out=False, err=False, in_=False)
raise ValueError("unknown capturing method: %r" % method) # pragma: no cover
def is_capturing(self):
if self.is_globally_capturing():
return "global"
capture_fixture = getattr(self._current_item, "_capture_fixture", None)
if capture_fixture is not None:
return (
"fixture %s" % self._current_item._capture_fixture.request.fixturename
)
return False
# Global capturing control
def is_globally_capturing(self):
@@ -134,6 +144,14 @@ class CaptureManager(object):
if cap is not None:
cap.suspend_capturing(in_=in_)
def suspend(self, in_=False):
self.suspend_fixture(self._current_item)
self.suspend_global_capture(in_)
def resume(self):
self.resume_global_capture()
self.resume_fixture(self._current_item)
def read_global_capture(self):
return self._global_capturing.readouterr()

View File

@@ -109,7 +109,7 @@ class pytestPDB(object):
if cls._pluginmanager is not None:
capman = cls._pluginmanager.getplugin("capturemanager")
if capman:
capman.suspend_global_capture(in_=True)
capman.suspend(in_=True)
tw = _pytest.config.create_terminal_writer(cls._config)
tw.line()
if cls._recursive_debug == 0:
@@ -117,10 +117,22 @@ class pytestPDB(object):
header = kwargs.pop("header", None)
if header is not None:
tw.sep(">", header)
elif capman and capman.is_globally_capturing():
tw.sep(">", "PDB set_trace (IO-capturing turned off)")
else:
tw.sep(">", "PDB set_trace")
if capman:
capturing = capman.is_capturing()
else:
capturing = False
if capturing:
if capturing == "global":
tw.sep(">", "PDB set_trace (IO-capturing turned off)")
else:
tw.sep(
">",
"PDB set_trace (IO-capturing turned off for %s)"
% capturing,
)
else:
tw.sep(">", "PDB set_trace")
class _PdbWrapper(cls._pdb_cls, object):
_pytest_capman = capman
@@ -138,11 +150,18 @@ class pytestPDB(object):
tw = _pytest.config.create_terminal_writer(cls._config)
tw.line()
if cls._recursive_debug == 0:
if self._pytest_capman.is_globally_capturing():
capturing = self._pytest_capman.is_capturing()
if capturing == "global":
tw.sep(">", "PDB continue (IO-capturing resumed)")
elif capturing:
tw.sep(
">",
"PDB continue (IO-capturing resumed for %s)"
% capturing,
)
else:
tw.sep(">", "PDB continue")
self._pytest_capman.resume_global_capture()
self._pytest_capman.resume()
cls._pluginmanager.hook.pytest_leave_pdb(
config=cls._config, pdb=self
)