Django测试-authenticate()返回None

时间:2019-10-10 17:42:28

标签: python django unit-testing authentication

正在使用Django进行一些单元测试,并尝试使用登录表单对登录过程进行一些测试。

我正在使用经过修改的User模型只是为了使电子邮件字段唯一。否则没有什么大不同。

account / views.py

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...

account / test_views.py

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)

account / models.py

class User(AbstractUser):
    # Make the email field unique
    email = models.EmailField(unique=True)

project / settings.py

# Authentication
AUTH_USER_MODEL = 'account.User'

有趣的是,登录可以在Web应用程序上正常运行,但是在测试时始终返回None

我尝试与创建的用户进行check_password(),它在测试方法和视图方法中均返回true。

我也尝试过放入AUTHENTICATION_BACKEND = ['django.contrib.auth.backends.ModelBackend'],但是没有。

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。问题出在 is_active 模型字段中。就我而言,该字段默认为 False,因此 authenticate() 始终返回 None