获取Nose发现的所有测试的数据结构

时间:2015-03-30 20:27:42

标签: python unit-testing nose

我如何获得某种包含Nose发现的所有测试列表的数据结构?我偶然发现了这个:

List all Tests Found by Nosetest

我正在寻找一种方法来获取我自己的python脚本中的单元测试名称列表(以及位置或虚线位置)。

1 个答案:

答案 0 :(得分:0)

有几种方法可以实现这一点:一种是使用带有--collect-only的xunit插件运行鼻子并解析生成的junit xml文件。或者,您可以添加一个基本插件来捕获测试的名称,如下所示:

import sys
from unittest import TestCase

import nose
from nose.tools import set_trace


class CollectPlugin(object):
    enabled = True
    name = "test-collector"
    score = 100


    def options(self, parser, env):
        pass

    def configure(self, options, conf):
        self.tests = []

    def startTest(self, test):
        self.tests.append(test)

class MyTestCase(TestCase):
    def test_long_integration(self):
        pass
    def test_end_to_end_something(self):
        pass



if __name__ == '__main__':
    # this code will run just this file, change module_name to something 
    # else to make it work for folder structure, etc

    module_name = sys.modules[__name__].__file__

    plugin = CollectPlugin()

    result = nose.run(argv=[sys.argv[0],
                            module_name,
                            '--collect-only',
                            ],
                      addplugins=[plugin],)

    for test in plugin.tests:
        print test.id()

您的测试信息全部记录在plugin.test结构中。