Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a possibility to write django unittests without setting up a db? I want to test business logic which doesn't require the db to set up. And while it is fast to setup a db, I really don't need it in some situations.

share|improve this question
I am wondering if that actually matters. The db is kept in memory + if you don't have any models nothing is performed with the db. So if you don't need it don't set up models. – Torsten May 7 '11 at 2:23
I do have models, but for those tests they are not relevant. And the db is not kept in the memory, but built up in mysql, however, specifically for this purpose. Not that I want this.. Maybe I could configure django to use an in-memory db for testing. Do you know how to do this? – paweloque May 7 '11 at 21:53
Oh, I am sorry. In-memory databases are just the case when you use an SQLite database. Except this I don't see a way to avoid creating the test db. There is nothing about this in the docs + I never felt the need to avoid it. – Torsten May 8 '11 at 11:53

2 Answers

up vote 22 down vote accepted

You can subclass DjangoTestSuiteRunner and override setup_databases and teardown_databases methods to pass.

Create a new settings file and set TEST_RUNNER to the new class you just created. Then when you're running your test, specify your new settings file with --settings flag.

Here is what I did:

Create a custom test suit runner similar to this:

from django.test.simple import DjangoTestSuiteRunner

class NoDbTestRunner(DjangoTestSuiteRunner):
  """ A test runner to test without database creation """

  def setup_databases(self, **kwargs):
    """ Override the database creation defined in parent class """
    pass

  def teardown_databases(self, old_config, **kwargs):
    """ Override the database teardown defined in parent class """
    pass

Create a custom settings:

from mysite.settings import *

# Test runner with no database creation
TEST_RUNNER = 'mysite.scripts.testrunner.NoDbTestRunner'

When you're running your tests, run it like the following with --settings flag set to your new settings file:

python manage.py test myapp --settings='no_db_settings'
share|improve this answer
looking forward to your exaple! – paweloque Aug 10 '11 at 6:52
Just added the example. Feel free to ask if there's something you don't understand about it. – mohi666 Aug 10 '11 at 19:00
2  
This error raises when you have tests that need database transactions. Obviously if you don't have a DB, you're not going to be able to run those tests. You should run your tests separately. If you just run your test by using python manage.py test --settings=new_settings.py, it is going to run a whole bunch of other tests from other apps that may require database. – mohi666 Aug 17 '11 at 1:59
1  
Note that you'll need to extend SimpleTestCase instead of TestCase for your test classes. TestCase expects a database. – Ben Roberts Feb 8 at 23:12
1  
If you don't want to use a new settings file you can specify the new TestRunner on the command line with the --testrunner option. – Bran Handley Apr 5 at 17:16
show 1 more comment

Do not subclass DjangoTestSuiteRunner the way the top answer says to do it, unless you want your database to be wiped out. See this article: http://blog.headspin.com/?p=434

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.