I am about to finish a university project that involves Python, and my team has a test case shortage. We need more, and specifically, we need some test cases for the database. This is where mocking comes in, however. We need a Python-specific library that can be used to mock a database, so the test cases do not use SQL or access the real database. We are using MySQL for the real database. It's a bit difficult for me to come across an easy-to-use Python database mocking library. What would be the best one to use for our test cases? Or, is there a better way to test a database in Python without touching it? I would appreciate your advice very much. Thanks :-)
feedback
|
|
If you are using django, fixtures can solve your problem. I don't really know what you mean by mocking library, but they allow you to fill your db with test data. Which you can then interact with for your TestCase. The test data is destroyed after each TestCase. http://docs.djangoproject.com/en/dev/howto/initial-data/ | |||
|
feedback
|
|
Personally I tend to write my unit tests to use a separate test database, so I'll usually have a For example, I recently developed a Python library for which the user calls a module-level This kind of setup allows for easy unit testing, since you can simply have your unit tests call into your | ||||
feedback
|
|
Based on some comments, it appears you're using Django. If that's the case, then you're going to want to use a data fixture to populate test data into a test database. An excellent resource on this topic is Karen M. Tracey's book Django 1.1 Testing and Debugging. Here's a summary of what you're going to want to do:
For more information, in addition to Karen M. Tracey's book, you might check out Django's documentation on Fixture Loading | ||||
|
feedback
|
|
If you absolutely must use mocks rather than the Django stuff others have mentioned, I'd recommend either Fudge or Mock. | |||
|
feedback
|
|
There are some specific examples on using Mock for database testing here: | |||
|
feedback
|