当我尝试用命令测试任何应用程序时(我注意到当我尝试使用fabric部署我的项目时,它使用了这个命令):
python manage.py test appname
我得到这个错误:
Creating test database for alias 'default'...
Got an error creating the test database: permission denied to create database
Type 'yes' if you would like to try deleting the test database 'test_finance', or 'no' to cancel
Syncdb命令似乎可以工作。我的数据库设置在settings.py:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'finance', # Or path to database file if using sqlite3.
'USER': 'django', # Not used with sqlite3.
'PASSWORD': 'mydb123', # Not used with sqlite3.
'HOST': '127.0.0.1', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
错误提示用户没有创建数据库的足够权限。Django会在测试期间创建一个单独的数据库,这样我们原来的开发数据库就不会受到影响。
我们可能需要通过Postgres shell给予权限。
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': config('DB_NAME'),
'USER': "myuser",
'PASSWORD': config('DB_PASSWORD'),
'HOST': config('DB_HOST'),
'PORT': config('DB_PORT'),
'TEST': {
'NAME': 'test_nofoobar',
},
}
}
正如设置建议的那样,在本例中,数据库用户的名称是myuser。因此,让我们启动Postgres shell并授予数据库创建权限。
sudo -u postgres psql
psql (14.5 (Ubuntu 14.5-1.pgdg22.04+1))
postgres=# ALTER ROLE myuser CREATEDB;
Output: ALTER ROLE
我找到了一个有趣的方法来解决你的问题。
事实上,对于MySQL,您可以为不存在的数据库授予特权。
所以你可以在你的设置中为你的测试数据库添加名称'test_finance':
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'finance', # Or path to database file if using sqlite3.
'USER': 'django', # Not used with sqlite3.
'PASSWORD': 'mydb123', # Not used with sqlite3.
'HOST': '127.0.0.1', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
'TEST': {
'NAME': 'test_finance',
},
}
}
以root用户启动MySQL shell:
mysql -u root -p
现在授予这个MySQL中不存在的数据库的所有权限:
GRANT ALL PRIVILEGES ON test_finance.* TO 'django'@'localhost';
现在,Django将毫无问题地启动测试。