使用 pyscopg2 作为 Django 数据库默认后端,并用非常简单的案例进行测试。尝试创建用户失败,出现IntegrityError异常
$ python manage.py test project.core.tests
nosetests --verbosity 1 project.core.tests --rednose
Creating test database for alias 'default'...
X.
-----------------------------------------------------------------------------
1) ERROR: Tests that a user with a sha1 hashed password is change to newer hash method
Traceback (most recent call last):
crowddeals/core/tests.py line 7 in setUp
self.user1 = User.objects.create_user('user1', 'user1@domain.com')
env/lib/python2.7/site-packages/django/contrib/auth/models.py line 160 in create_user
user.save(using=self._db)
env/lib/python2.7/site-packages/django/db/models/base.py line 477 in save
force_update=force_update, update_fields=update_fields)
env/lib/python2.7/site-packages/django/db/models/base.py line 572 in save_base
result = manager._insert([self], fields=fields, return_id=update_pk, using=using, raw=raw)
env/lib/python2.7/site-packages/django/db/models/manager.py line 203 in _insert
return insert_query(self.model, objs, fields, **kwargs)
env/lib/python2.7/site-packages/django/db/models/query.py line 1588 in insert_query
return query.get_compiler(using=using).execute_sql(return_id)
env/lib/python2.7/site-packages/django/db/models/sql/compiler.py line 911 in execute_sql
cursor.execute(sql, params)
env/lib/python2.7/site-packages/django/db/backends/postgresql_psycopg2/base.py line 52 in execute
return self.cursor.execute(query, args)
IntegrityError: duplicate key value violates unique constraint "auth_user_pkey"
DETAIL: Key (id)=(1) already exists.
默认数据库正在运行,并且可以添加用户。测试仅在测试数据库上失败。
查看测试数据库,我发现所有表的主键的自动递增序列都有错误的起始值,它将默认数据库中最后使用的值作为测试数据库的起始值。
对于默认数据库,User.id 使用自动递增序列。
CREATE SEQUENCE auth_user_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
并为测试数据库创建
CREATE SEQUENCE auth_user_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 2
CACHE 1;
这显然是错误的,这也发生在其他表上,作为权限。
CREATE SEQUENCE auth_permission_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 191
CACHE 1;
我猜不出为什么会这样,它必须从 1 开始在新的测试数据库上创建序列。
如果我将数据库引擎后端更改为 sqlite3,则不会发生异常。这只会发生在 postgresql 中。
我怎样才能解决这个问题?所以我的测试可以重新开始工作。