healthchecks/hc/accounts/tests/test_check_token.py
2015-08-18 20:33:02 +03:00

18 lines
524 B
Python

from django.contrib.auth.models import User
from django.test import TestCase
class CheckTokenTestCase(TestCase):
def test_it_redirects(self):
alice = User(username="alice")
alice.set_password("secret-token")
alice.save()
r = self.client.get("/accounts/check_token/alice/secret-token/")
assert r.status_code == 302
# After login, password should be unusable
alice_again = User.objects.get(username="alice")
assert not alice_again.has_usable_password()