Python TDD directory structure

浪尽此生 提交于 2019-12-07 03:09:31

问题


Is there a particular directory structure used for TDD in Python?

Tutorials talk about the content of the tests, but not where to place them

From poking around Python Koans, suspect its something like:

/project/main_program.py         # This has main method, starts program
/project/classes/<many classes>.py
/project/main_test.py            # This simply directs unittest onto tests, can use parameters fed to it to customise tests for environment
/project/tests/<many tests>.py

# to run tests, type "python -m unittest main_test.py" (into a terminal)
# to run program, type "python main_program.py"

Am I doing this right? Is there a good guide which teaches the directory hierarchy for TDD? I heard that having mixed files of code and tests is bad.

References:

  • Are there any good online tutorials to TDD for an experienced programmer who is new to testing? # A coding dojo? hmm... Perhaps I'll start a coding dojo website...
  • http://onlamp.com/pub/a/python/2004/12/02/tdd_pyunit.html #Shows mixed files
  • http://www.youtube.com/watch?v=sD6qzJNQEpE #As great as pyTDDmon looks, I'd like to understand the basics first =) also thats a mixed file
  • http://www.slideshare.net/Skud/test-driven-development-tutorial #explains "design test implement test repeat" only..
  • http://blog.cerris.com/category/django-tdd/ #Still no help...
  • http://docs.python.org/library/unittest.html

回答1:


Based on your project, Whatever style lets you

  • Seperate implementation code from testing code
  • Create new tests easily
  • Run all tests in one operation (e.g. for regression testing)

The python koans/etc are just guidelines. In the end you want to uphold DRY with your unittests and be able to test easily, maintainably and intuitively. In the end it is up to you to decide your folder structure.

I feel like you are focusing too much on satisfying convention instead of satisfying your project.




回答2:


There are two basic options: in a top-level "test" (or "tests") directory, or in "test" directories within your package at every level. The former has the advantage of making it easy to have both unit tests and other tests consistently. The latter has the advantage of making it easy to run your tests against the installed version of the code, and is recommended by this blog post, which describes the basic structure that works well for Python projects.

At the end of the day, the important thing is to make them easy to find and run.



来源:https://stackoverflow.com/questions/9859832/python-tdd-directory-structure

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!