5

我需要制作一个由其他手提箱和测试箱组成的大型 python 套件,我已经将它们一起执行。

我该怎么做呢?

例如,这里有一个我想添加的套件(suiteFilter.py):

import testFilter1
import testFilter2
import unittest
import sys

def suite():
    return unittest.TestSuite((\
        unittest.makeSuite(testFilter1.TestFilter1),
        unittest.makeSuite(testFilter2.TestFilter2),
        ))


if __name__ == "__main__":
    result = unittest.TextTestRunner(verbosity=2).run(suite())
    sys.exit(not result.wasSuccessful())

和一个测试用例结构(Invoice.py):

from selenium import selenium
import unittest, time, re
from setup_tests import filename, fileForNrTest, username, password, server_url
fileW=open(filename,'a')


class TestInvoice(unittest.TestCase):

    def setUp(self):
        self.verificationErrors = []
        self.selenium = selenium("localhost", 4444, "*firefox", server_url)
        self.selenium.start()

    def test_invoice(self):
        sel = self.selenium
        [...] 

    def tearDown(self):
        self.selenium.stop()
        self.assertEqual([], self.verificationErrors)


    if __name__ == "__main__":
        unittest.main()

谢谢!

4

1 回答 1

12

您可以提供一些附加信息,例如程序/测试用例和套件的结构。我这样做的方式是为每个模块定义一个套件()。所以我对 UserServiceTest 模块说:

def suite():
    """
        Gather all the tests from this module in a test suite.
    """
    test_suite = unittest.TestSuite()
    test_suite.addTest(unittest.makeSuite(UserServiceTest))
    return test_suite

if __name__ == "__main__":
    #So you can run tests from this module individually.
    unittest.main()   

然后我对每个包进行主要测试:

def suite():
"""
    Gather all the tests from this package in a test suite.
"""
    test_suite = unittest.TestSuite()
    test_suite.addTest(file_tests_main.suite())
    test_suite.addTest(userservice_test.suite())
    return test_suite


if __name__ == "__main__":
    #So you can run tests from this package individually.
    TEST_RUNNER = unittest.TextTestRunner()
    TEST_SUITE = suite()
    TEST_RUNNER.run(TEST_SUITE)

您可以递归地执行此操作,直到项目的根目录。因此,包 A 的主测试将收集包 A 中的所有模块 + 包 A 的子包的主测试,依此类推。我假设你正在使用unittest,因为你没有提供任何额外的细节,但我认为这个结构也可以应用于其他 python 测试框架。


编辑:嗯,我不太确定我完全理解你的问题,但据我所知,你想在同一个套件中添加在 suiteFilter.py 中定义的套件和在 Invoice.py 中定义的测试用例?如果是这样,为什么不只在 mainTest.py 中执行,例如:

import unittest
import suiteFilter
import Invoice


def suite()
    test_suite = unittest.TestSuite()
    test_suite.addTest(suiteFilter.suite())
    test_suite.addTest(unittest.makeSuite(Invoice))


if __name__ == "__main__":
    result = unittest.TextTestRunner(verbosity=2).run(suite())
    sys.exit(not result.wasSuccessful())

您可以将测试和套件都添加到 test_suite。

于 2011-08-09T09:15:59.097 回答