我正在使用 Django 1.3.1。我有两个数据库,我的一些模型在一个数据库中,一些在另一个数据库中。这两个数据库都是 contrib.gis.db.backends.postgis 数据库。
令我惊讶的是,Django 的 TestCase 并没有回滚我在两次测试之间在辅助数据库中所做的更改。
在下面的代码中,myproject.models.WellOwner 是一个非常简单的模型,基本上只有一个字段“name”。路由器说它应该在辅助数据库中。第一个测试中的断言成功,第二个测试失败:
from django.test import TestCase
from myproject.models import WellOwner
class SimpleTest(TestCase):
def test1(self):
WellOwner.objects.create(name="Remco")
self.assertEquals(1, WellOwner.objects.count()) # Succeeds
class SimpleTest2(TestCase):
def test2(self):
# I would expect to have an empty database at this point
self.assertEquals(0, WellOwner.objects.count()) # Fails!
我假设 Django 将其包装在默认数据库上的事务中,而不是辅助数据库上。这是一个已知问题吗?有解决办法吗?也许在 1.4 中?我的 Google-fu 失败了。
(如果我在设置中将 DATABASE_ROUTERS 更改为 [] 以便所有内容都进入同一个数据库,问题就会消失)
我将添加路由器的整个代码,以防有帮助:
SECONDARY_MODELS = ('WellOwner', ...)
import logging
logger = logging.getLogger(__name__)
class GmdbRouter(object):
"""Keep some models in a secondary database."""
def db_for_read(self, model, **hints):
if model._meta.app_label == 'gmdb':
if model._meta.object_name in SECONDARY_MODELS:
return 'secondary'
return None
def db_for_write(self, model, **hints):
# Same criteria as for reading
return self.db_for_read(model, **hints)
def allow_syncdb(self, db, model):
if db == 'secondary':
if model._meta.app_label in ('sites', 'south'):
# Hack for bug https://code.djangoproject.com/ticket/16353
# When testing, create django_site and south in both databases
return True
return self.db_for_read(model) == 'secondary'
else:
# Some other db
if model._meta.app_label == 'gmdb':
# Our models go in the other db if they don't go into secondary
return self.db_for_read(model) != 'secondary'
# Some other model in some other db, no opinion
return None