I'm primarily a Ruby guy, but lately I've been working on a lot of Python stuff, in particular, App Engine code. In Ruby, I'd use automated continuous integration (autotest), code coverage tools (rcov), static analysis (reek), and mutation testing (heckle) in my development process, but I'm not sure how best to set up a similar development process for an App Engine environment. I'd also be interested in analogs to RSpec and Cucumber for Python that could work in App Engine.
|
|
On my GAE project, I use:
I also prefer many of Rails's idioms. I broke my tests into unit, and functional using Python packages. You can run a subset of tests using I also made a simple
If you are doing lots of ListElement equality searches, definitely learn the Sometimes I like to load the Rails console against my fixture data to see what's going on in the test environment (i.e. |
|||||||
|
|
You won't always find one to one equivalents of Ruby testing tools in Python, but there are some great testing tools in Python. Some of the tools that I've found useful include:
If you are using Django on App Engine, it includes several extensions to unittest that allow you simulate an HTTP client and database persistence. There are a ton of other tools that I have not used (such as PySpec and Behaviour) that could also be helpful. I haven't seen any mutation testing tool in Python, but I bet there is one out there (I would love to learn what it is). Happy testing! |
|||||||||||
|
|
Haven't used App Engine, but my feeling for the most popular python testing tools is
You'll probably want to reference this (not quite complete) list of Python Testing Tools. For BDD, the field was thin last time I checked. Many of the true BDD tools were not usable with nose and/or too limiting in the syntax they required. You might have some luck with spec, which is a BDD-like nose plugin. Just found pyccuracy, which looks a lot like cucumber, but I haven't tried it. For what its worth, I now just use
nosetests will give:
|
||||
|
|
|
It looks like another new option is Agar, which is based on google.appengine.ext.testbed, part of the App Engine SDK. See this blog post for details. |
|||
|
|