80 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
	
""" collect and execute doctests from modules and test files."""
 | 
						|
 | 
						|
import py
 | 
						|
from py._code.code import TerminalRepr, ReprFileLocation
 | 
						|
 | 
						|
def pytest_addoption(parser):
 | 
						|
    group = parser.getgroup("collect")
 | 
						|
    group.addoption("--doctest-modules",
 | 
						|
        action="store_true", default=False,
 | 
						|
        help="run doctests in all .py modules",
 | 
						|
        dest="doctestmodules")
 | 
						|
    group.addoption("--doctest-glob",
 | 
						|
        action="store", default="test*.txt", metavar="pat",
 | 
						|
        help="doctests file matching pattern, default: test*.txt",
 | 
						|
        dest="doctestglob")
 | 
						|
 | 
						|
def pytest_collect_file(path, parent):
 | 
						|
    config = parent.config
 | 
						|
    if path.ext == ".py":
 | 
						|
        if config.getvalue("doctestmodules"):
 | 
						|
            return DoctestModule(path, parent)
 | 
						|
    elif path.check(fnmatch=config.getvalue("doctestglob")):
 | 
						|
        return DoctestTextfile(path, parent)
 | 
						|
 | 
						|
class ReprFailDoctest(TerminalRepr):
 | 
						|
    def __init__(self, reprlocation, lines):
 | 
						|
        self.reprlocation = reprlocation
 | 
						|
        self.lines = lines
 | 
						|
    def toterminal(self, tw):
 | 
						|
        for line in self.lines:
 | 
						|
            tw.line(line)
 | 
						|
        self.reprlocation.toterminal(tw)
 | 
						|
 | 
						|
class DoctestItem(py.test.collect.Item):
 | 
						|
    def __init__(self, path, parent):
 | 
						|
        name = self.__class__.__name__ + ":" + path.basename
 | 
						|
        super(DoctestItem, self).__init__(name=name, parent=parent)
 | 
						|
        self.fspath = path
 | 
						|
 | 
						|
    def repr_failure(self, excinfo):
 | 
						|
        if excinfo.errisinstance(py.std.doctest.DocTestFailure):
 | 
						|
            doctestfailure = excinfo.value
 | 
						|
            example = doctestfailure.example
 | 
						|
            test = doctestfailure.test
 | 
						|
            filename = test.filename
 | 
						|
            lineno = test.lineno + example.lineno + 1
 | 
						|
            message = excinfo.type.__name__
 | 
						|
            reprlocation = ReprFileLocation(filename, lineno, message)
 | 
						|
            checker = py.std.doctest.OutputChecker()
 | 
						|
            REPORT_UDIFF = py.std.doctest.REPORT_UDIFF
 | 
						|
            filelines = py.path.local(filename).readlines(cr=0)
 | 
						|
            i = max(test.lineno, max(0, lineno - 10)) # XXX?
 | 
						|
            lines = []
 | 
						|
            for line in filelines[i:lineno]:
 | 
						|
                lines.append("%03d %s" % (i+1, line))
 | 
						|
                i += 1
 | 
						|
            lines += checker.output_difference(example,
 | 
						|
                    doctestfailure.got, REPORT_UDIFF).split("\n")
 | 
						|
            return ReprFailDoctest(reprlocation, lines)
 | 
						|
        elif excinfo.errisinstance(py.std.doctest.UnexpectedException):
 | 
						|
            excinfo = py.code.ExceptionInfo(excinfo.value.exc_info)
 | 
						|
            return super(DoctestItem, self).repr_failure(excinfo)
 | 
						|
        else:
 | 
						|
            return super(DoctestItem, self).repr_failure(excinfo)
 | 
						|
 | 
						|
    def reportinfo(self):
 | 
						|
        return self.fspath, None, "[doctest]"
 | 
						|
 | 
						|
class DoctestTextfile(DoctestItem):
 | 
						|
    def runtest(self):
 | 
						|
        failed, tot = py.std.doctest.testfile(
 | 
						|
            str(self.fspath), module_relative=False,
 | 
						|
            raise_on_error=True, verbose=0)
 | 
						|
 | 
						|
class DoctestModule(DoctestItem):
 | 
						|
    def runtest(self):
 | 
						|
        module = self.fspath.pyimport()
 | 
						|
        failed, tot = py.std.doctest.testmod(
 | 
						|
            module, raise_on_error=True, verbose=0)
 |