From 924068c5dd3dfc7767b166c9436326210240dc64 Mon Sep 17 00:00:00 2001 From: Guillim Date: Wed, 26 Jun 2019 18:04:47 +0200 Subject: [PATCH] we set up the first test for authentification --- app/authentification/tests/__init__.py | 0 app/authentification/tests/test_signup.py | 39 +++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 app/authentification/tests/__init__.py create mode 100644 app/authentification/tests/test_signup.py diff --git a/app/authentification/tests/__init__.py b/app/authentification/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/app/authentification/tests/test_signup.py b/app/authentification/tests/test_signup.py new file mode 100644 index 00000000..71eb0d34 --- /dev/null +++ b/app/authentification/tests/test_signup.py @@ -0,0 +1,39 @@ +from django.test import TestCase +from django.utils.encoding import force_bytes +from django.utils.http import urlsafe_base64_encode + +from ..tokens import account_activation_token +from ..forms import SignupForm + + +class TestSignUp(TestCase): + form_class = SignupForm + + def test_signup(self): + + form = self.form_class({ + 'username': 'i_am_a_test_username', + 'email': 'i_am_a_test@email.com', + 'password1': 'fdsfdsfdssd232323&', + 'password2': 'fdsfdsfdssd232323&' + }) + self.assertTrue(form.is_valid()) + user_saved = form.save() + self.assertEqual(user_saved.username, 'i_am_a_test_username') + self.assertEqual(user_saved.email, 'i_am_a_test@email.com') + + # I guess this is impossible to test password because it gets removed + # after the form.save() execution + # self.assertEqual(user_saved.password1, "fdsfdsfdssd232323&") + # self.assertEqual(user_saved.password2, "fdsfdsfdssd232323&") + + def test_blank_signup(self): + form = self.form_class({}) + self.assertFalse(form.is_valid()) + + self.assertEqual(form.errors, { + 'username': ['This field is required.'], + 'email': ['This field is required.'], + 'password1': ['This field is required.'], + 'password2': ['This field is required.'] + })