2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
from django.test import TestCase
|
2016-03-22 08:01:24 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from django.core.management import call_command
|
2016-01-29 14:20:00 +00:00
|
|
|
|
2016-08-02 20:20:06 +00:00
|
|
|
from core.models import User
|
|
|
|
from club.models import Club
|
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
# Create your tests here.
|
2016-03-22 08:01:24 +00:00
|
|
|
|
|
|
|
class ClubTest(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
call_command("populate")
|
2016-08-02 20:20:06 +00:00
|
|
|
self.skia = User.objects.filter(username="skia").first()
|
|
|
|
self.rbatsbak = User.objects.filter(username="rbatsbak").first()
|
2016-11-06 10:36:54 +00:00
|
|
|
self.guy = User.objects.filter(username="guy").first()
|
2016-08-02 20:20:06 +00:00
|
|
|
self.bdf = Club.objects.filter(unix_name="bdf").first()
|
2016-03-22 08:01:24 +00:00
|
|
|
|
|
|
|
def test_create_add_user_to_club_from_root_ok(self):
|
|
|
|
self.client.login(username='root', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.skia.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 3})
|
2016-08-02 20:20:06 +00:00
|
|
|
response = self.client.get(reverse("club:club_members", kwargs={"club_id":self.bdf.id}))
|
2016-03-22 08:01:24 +00:00
|
|
|
self.assertTrue(response.status_code == 200)
|
2016-11-06 10:36:54 +00:00
|
|
|
self.assertTrue("S' Kia</a></td>\\n <td>Responsable info</td>" in str(response.content))
|
2016-03-22 08:01:24 +00:00
|
|
|
|
|
|
|
def test_create_add_user_to_club_from_root_fail_not_subscriber(self):
|
|
|
|
self.client.login(username='root', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
response = self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.guy.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 3})
|
2016-03-22 08:01:24 +00:00
|
|
|
self.assertTrue(response.status_code == 200)
|
2016-08-02 20:20:06 +00:00
|
|
|
self.assertTrue('<ul class="errorlist nonfield"><li>' in str(response.content))
|
|
|
|
response = self.client.get(reverse("club:club_members", kwargs={"club_id":self.bdf.id}))
|
2016-11-06 10:36:54 +00:00
|
|
|
self.assertFalse("Guy Carlier</a></td>\\n <td>Responsable info</td>" in str(response.content))
|
2016-03-22 08:01:24 +00:00
|
|
|
|
|
|
|
def test_create_add_user_to_club_from_root_fail_already_in_club(self):
|
|
|
|
self.client.login(username='root', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.skia.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 3})
|
2016-08-02 20:20:06 +00:00
|
|
|
response = self.client.get(reverse("club:club_members", kwargs={"club_id":self.bdf.id}))
|
2016-11-06 10:36:54 +00:00
|
|
|
self.assertTrue("S' Kia</a></td>\\n <td>Responsable info</td>" in str(response.content))
|
2016-12-29 00:30:37 +00:00
|
|
|
response = self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.skia.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 4})
|
2016-03-22 08:01:24 +00:00
|
|
|
self.assertTrue(response.status_code == 200)
|
2016-11-06 10:36:54 +00:00
|
|
|
self.assertFalse("S' Kia</a></td>\\n <td>Secrétaire</td>" in str(response.content))
|
2016-03-22 08:01:24 +00:00
|
|
|
|
|
|
|
def test_create_add_user_to_club_from_skia_ok(self):
|
|
|
|
self.client.login(username='root', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.skia.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 10})
|
2016-03-22 08:01:24 +00:00
|
|
|
self.client.login(username='skia', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.rbatsbak.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 9})
|
2016-08-02 20:20:06 +00:00
|
|
|
response = self.client.get(reverse("club:club_members", kwargs={"club_id":self.bdf.id}))
|
2016-03-22 08:01:24 +00:00
|
|
|
self.assertTrue(response.status_code == 200)
|
2016-11-06 10:36:54 +00:00
|
|
|
self.assertTrue("""Richard Batsbak</a></td>\\n <td>Vice-Pr\\xc3\\xa9sident</td>""" in str(response.content))
|
2016-03-22 08:01:24 +00:00
|
|
|
|
2016-03-31 08:36:00 +00:00
|
|
|
def test_create_add_user_to_club_from_richard_fail(self):
|
2016-03-22 08:01:24 +00:00
|
|
|
self.client.login(username='root', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.rbatsbak.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 3})
|
2016-03-31 08:36:00 +00:00
|
|
|
self.client.login(username='rbatsbak', password='plop')
|
2016-12-29 00:30:37 +00:00
|
|
|
response = self.client.post(reverse("club:club_members", kwargs={"club_id":self.bdf.id}), {
|
|
|
|
"user": self.skia.id,
|
|
|
|
"start_date": "12/06/2016",
|
|
|
|
"role": 10})
|
2016-03-22 08:01:24 +00:00
|
|
|
self.assertTrue(response.status_code == 200)
|
2016-11-08 18:07:25 +00:00
|
|
|
self.assertTrue("<li>Vous n'avez pas la permission de faire cela</li>" in str(response.content))
|
2016-08-02 20:20:06 +00:00
|
|
|
|