From 7bb4e2c8eb458379c09f24fc8dbe5d4e511dc0c1 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Tue, 10 Jan 2023 20:38:23 +0100 Subject: [PATCH] Fix tests Signed-off-by: Emmy D'Anello --- apps/participation/tests.py | 22 +++++++++++++++++++++- apps/registration/tests.py | 18 ++++++++++++++++-- 2 files changed, 37 insertions(+), 3 deletions(-) diff --git a/apps/participation/tests.py b/apps/participation/tests.py index 79f91e3..e9031a6 100644 --- a/apps/participation/tests.py +++ b/apps/participation/tests.py @@ -29,6 +29,9 @@ class TestStudentParticipation(TestCase): StudentRegistration.objects.create( user=self.user, student_class=12, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", school="Earth", give_contact_to_animath=True, email_confirmed=True, @@ -49,6 +52,9 @@ class TestStudentParticipation(TestCase): StudentRegistration.objects.create( user=self.second_user, student_class=11, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", school="Moon", give_contact_to_animath=True, email_confirmed=True, @@ -65,7 +71,12 @@ class TestStudentParticipation(TestCase): email="coach@example.com", password="coach", ) - CoachRegistration.objects.create(user=self.coach) + CoachRegistration.objects.create( + user=self.coach, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", + ) self.tournament = Tournament.objects.create( name="France", @@ -214,6 +225,9 @@ class TestStudentParticipation(TestCase): give_contact_to_animath=True, email_confirmed=True, team=self.team, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", photo_authorization="authorization/photo/mai-linh", health_sheet="authorization/health/mai-linh", parental_authorization="authorization/parental/mai-linh", @@ -232,6 +246,9 @@ class TestStudentParticipation(TestCase): give_contact_to_animath=False, email_confirmed=True, team=self.team, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", photo_authorization="authorization/photo/yohann", health_sheet="authorization/health/yohann", parental_authorization="authorization/parental/yohann", @@ -250,6 +267,9 @@ class TestStudentParticipation(TestCase): give_contact_to_animath=False, email_confirmed=True, team=self.team, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", photo_authorization="authorization/photo/tfjm", health_sheet="authorization/health/tfjm", parental_authorization="authorization/parental/tfjm", diff --git a/apps/registration/tests.py b/apps/registration/tests.py index 064b10b..f68ca91 100644 --- a/apps/registration/tests.py +++ b/apps/registration/tests.py @@ -64,9 +64,22 @@ class TestRegistration(TestCase): self.client.force_login(self.user) self.student = User.objects.create(email="student@example.com") - StudentRegistration.objects.create(user=self.student, student_class=11, school="Earth") + StudentRegistration.objects.create( + user=self.student, + student_class=11, + school="Earth", + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", + ) self.coach = User.objects.create(email="coach@example.com") - CoachRegistration.objects.create(user=self.coach, professional_activity="Teacher") + CoachRegistration.objects.create( + user=self.coach, + address="1 Rue de Rivoli", + zip_code=75001, + city="Paris", + professional_activity="Teacher", + ) def test_admin_pages(self): """ @@ -262,6 +275,7 @@ class TestRegistration(TestCase): (self.student, dict(student_class=11, school="Sky", birth_date="2001-01-01", gender="female", address="1 Rue de Rivoli", zip_code=75001, city="Paris", responsible_name="Toto", + responsible_phone="0123456789", responsible_email="toto@example.com")), (self.coach, dict(professional_activity="God", gender="male", address="1 Rue de Rivoli", zip_code=75001, city="Paris"))]: