gpt4 book ai didi

python - Python模块单元测试的最佳文件结构组织?

转载 作者:IT老高 更新时间:2023-10-28 20:55:04 25 4
gpt4 key购买 nike

遗憾的是,我发现有太多方法可以在 Python 中保存单元测试,而且通常没有很好的文档记录。

我正在寻找一种“终极”结构,可以满足以下大部分要求:

  • 可被测试框架发现,包括:
    • pytest
    • Nose 测试
    • 毒药
  • 测试应该是 outside the module files并且在模块本身(维护)之外的另一个目录中,可能在包级别的 tests/ 目录中。
  • 应该可以只执行一个测试文件(测试必须能够知道应该测试的模块在哪里)

请提供一个进行虚假测试的示例测试文件,指定文件名和目录。

最佳答案

这是我一直在使用的方法:

目录结构

# All __init__.py files are empty in this example.
app
package_a
__init__.py
module_a.py
package_b
__init__.py
module_b.py
test
__init__.py
test_app.py
__init__.py
main.py

ma​​in.py

# This is the application's front-end.
#
# The import will succeed if Python can find the `app` package, which
# will occur if the parent directory of app/ is in sys.path, either
# because the user is running the script from within that parect directory
# or because the user has included the parent directory in the PYTHONPATH
# environment variable.

from app.package_a.module_a import aaa
print aaa(123, 456)

module_a.py

# We can import a sibling module like this.
from app.package_b.module_b import bbb
def aaa(s, t):
return '{0} {1}'.format(s, bbb(t))

# We can also run module_a.py directly, using Python's -m option, which
# allows you to run a module like a script.
#
# python -m app.package_a.module_a
if __name__ == '__main__':
print aaa(111, 222)
print bbb(333)

module_b.py

def bbb(s):
return s + 1

test_app.py

import unittest

# From the point of view of testing code, our working modules
# are siblings. Imports work accordingly, as seen in module_a.
from app.package_a.module_a import aaa
from app.package_a.module_a import bbb

class TestApp(unittest.TestCase):

def test_aaa(self):
self.assertEqual(aaa(77, 88), '77 89')

def test_bbb(self):
self.assertEqual(bbb(99), 100)

# Simiarly, we can run our test modules directly as scripts using the -m option,
# or using nose.
#
# python -m app.test.test_app
# nosetests app/test/test_app.py

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

关于python - Python模块单元测试的最佳文件结构组织?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7685483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com