正在使用Django进行一些单元测试,并尝试使用登录表单对登录过程进行一些测试。
我正在使用经过修改的User
模型只是为了使电子邮件字段唯一。否则没有什么大不同。
def post(self, request):
# Retrieve the username and password
username = request.POST['username']
password = request.POST['password']
# Create a user object from authentication, or return None
user = authenticate(username=username, password=password)
# Check if user was created
if user is not None:
# Rest of the code, irrelevant...
from account.models import User as CustomUser
# Code snippit
def test_account_login_POST_successful_login(self):
# Create a user to test login
CustomUser.objects.create_user(
username='test_user',
email='test_user@intranet.com',
password='flibble'
)
response = self.client.post(self.login_url, {
'username': 'test_user',
'password': 'flibble'
})
self.assertEqual(response.status_code, 301)
class User(AbstractUser):
# Make the email field unique
email = models.EmailField(unique=True)
# Authentication
AUTH_USER_MODEL = 'account.User'
有趣的是,登录可以在Web应用程序上正常运行,但是在测试时始终返回None
。
我尝试与创建的用户进行check_password()
,它在测试方法和视图方法中均返回true。
我也尝试过放入AUTHENTICATION_BACKEND = ['django.contrib.auth.backends.ModelBackend']
,但是没有。
答案 0 :(得分:0)
我遇到了同样的问题。问题出在 is_active
模型字段中。就我而言,该字段默认为 False
,因此 authenticate()
始终返回 None
。