Crash de la vue pour changer de mot de passe #32

Open
mpepin wants to merge 3 commits from kerl/change_pwd into master
2 changed files with 32 additions and 0 deletions
Showing only changes of commit 56c31e2612 - Show all commits

View file

View file

@ -0,0 +1,32 @@
from django.contrib.auth import get_user_model
from django.test import Client, TestCase
from django.urls import reverse
User = get_user_model()
class TestPasswordChangeView(TestCase):
def setUp(self):
self.user = User.objects.create_user("alice", password="changeme")
self.url = reverse("change_password")
def test_get(self):
client = Client()
client.force_login(self.user)
resp = client.get(self.url)
self.assertEqual(resp.status_code, 200)
def test_post(self):
client = Client()
client.force_login(self.user)
data = {
"old_password": "changeme",
"new_password1": "s3cr3tp4ss",
"new_password2": "s3cr3tp4ss",
}
resp = client.post(self.url, data)
self.assertEqual(resp.status_code, 200)
client.logout()
self.assertTrue(client.login(username="alice", password="s3cr3tp4ss"))