pdb在django doctests中不起作用

时间:2010-05-21 14:22:24

标签: python django pdb doctest

所以我创建了以下文件(testlib.py)来自动将所有doctests(在我的嵌套项目目录中)加载到tests {py的__tests__字典中:

# ./testlib.py
import os, imp, re, inspect
from django.contrib.admin import site

def get_module_list(start):
    all_files = os.walk(start)
    file_list = [(i[0], (i[1], i[2])) for i in all_files]
    file_dict = dict(file_list)

    curr = start
    modules = []
    pathlist = []
    pathstack = [[start]]

    while pathstack is not None:

        current_level = pathstack[len(pathstack)-1]
        if len(current_level) == 0:
            pathstack.pop()

            if len(pathlist) == 0:
                break
            pathlist.pop()
            continue
        pathlist.append(current_level.pop())
        curr = os.sep.join(pathlist)

        local_files = []
        for f in file_dict[curr][1]:
            if f.endswith(".py") and os.path.basename(f) not in ('tests.py', 'models.py'):
                local_file = re.sub('\.py$', '', f)
                local_files.append(local_file)

        for f in local_files:
            # This is necessary because some of the imports are repopulating the registry, causing errors to be raised
            site._registry.clear()
            module = imp.load_module(f, *imp.find_module(f, [curr]))
            modules.append(module)

        pathstack.append([sub_dir for sub_dir in file_dict[curr][0] if sub_dir[0] != '.'])

    return modules

def get_doc_objs(module):
    ret_val = []
    for obj_name in dir(module):
        obj = getattr(module, obj_name)
        if callable(obj):
            ret_val.append(obj_name)
        if inspect.isclass(obj):
            ret_val.append(obj_name)

    return ret_val

def has_doctest(docstring):
    return ">>>" in docstring

def get_test_dict(package, locals):
    test_dict = {}
    for module in get_module_list(os.path.dirname(package.__file__)):
        for method in get_doc_objs(module):
            docstring = str(getattr(module, method).__doc__)
            if has_doctest(docstring):

                print "Found doctests(s) " + module.__name__ + '.' + method

                # import the method itself, so doctest can find it
                _temp = __import__(module.__name__, globals(), locals, [method])
                locals[method] = getattr(_temp, method)

                # Django looks in __test__ for doctests to run. Some extra information is
                # added to the dictionary key, because otherwise the info would be hidden.
                test_dict[method + "@" + module.__file__] = getattr(module, method)

    return test_dict

在信用到期时给予信用,其中大部分来自here

在我的tests.py文件中,我有以下代码:

# ./project/tests.py
import testlib, project
__test__ = testlib.get_test_dict(project, locals())

所有这些都能很好地加载我的所有文件和子目录中的doctests。 问题是当我导入并调用pdb.set_trace()任何地方时,这就是我所看到的:

(Pdb) l
(Pdb) args
(Pdb) n
(Pdb) n
(Pdb) l
(Pdb) cont
doctest显然正在捕获和调解输出本身,并且正在使用输出来评估测试。因此,当测试运行完成时,当我在doctest的失败报告中的pdb shell中时,我看到应该打印出来的所有内容。无论我是在doctest行内还是在被测试的函数或方法内部调用pdb.set_trace(),都会发生这种情况。

显然,这是一个很大的阻力。 Doctests很棒,但没有交互式pdb,我无法调试他们检测到的任何故障,以便修复它们。

我的思维过程是将pdb的输出流重定向到绕过doctest捕获输出的东西,但我需要一些帮助来找出执行该操作所需的低级io。另外,我甚至不知道它是否可能,而且我对doctest的内部结构太熟悉,不知道从哪里开始。那里的任何人都有任何建议,或者更好的是,有些代码可以完成这项工作吗?

1 个答案:

答案 0 :(得分:4)

我通过调整它得到了pdb。我只是将以下代码放在testlib.py文件的底部:

import sys, pdb
class TestPdb(pdb.Pdb):
    def __init__(self, *args, **kwargs):
        self.__stdout_old = sys.stdout
        sys.stdout = sys.__stdout__
        pdb.Pdb.__init__(self, *args, **kwargs)

    def cmdloop(self, *args, **kwargs):
        sys.stdout = sys.__stdout__
        retval = pdb.Pdb.cmdloop(self, *args, **kwargs)
        sys.stdout = self.__stdout_old

def pdb_trace():
    debugger = TestPdb()
    debugger.set_trace(sys._getframe().f_back)

为了使用调试器我只是import testlib并调用testlib.pdb_trace()并将其放入一个功能齐全的调试器中。