2013-04-13 18:13:11 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import re
|
2013-09-25 10:01:01 +02:00
|
|
|
|
2013-12-23 19:14:11 +01:00
|
|
|
from django.contrib.auth.models import Permission
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
2013-04-13 18:13:11 +02:00
|
|
|
from django.test.client import Client
|
|
|
|
|
|
|
|
from openslides.config.api import config
|
2013-12-23 19:14:11 +01:00
|
|
|
from openslides.participant.api import get_registered_group
|
2013-09-25 10:01:01 +02:00
|
|
|
from openslides.participant.models import get_protected_perm, Group, User
|
2013-04-13 18:13:11 +02:00
|
|
|
from openslides.utils.test import TestCase
|
|
|
|
|
|
|
|
|
2013-10-20 21:42:17 +02:00
|
|
|
class UserViews(TestCase):
|
|
|
|
"""
|
|
|
|
Tests some views for users.
|
|
|
|
"""
|
|
|
|
def setUp(self):
|
|
|
|
self.admin = User.objects.get(pk=1)
|
|
|
|
self.client = Client()
|
|
|
|
self.client.login(username='admin', password='admin')
|
|
|
|
|
|
|
|
def test_create(self):
|
|
|
|
response = self.client.get('/participant/new/')
|
|
|
|
self.assertTemplateUsed(response, 'participant/edit.html')
|
|
|
|
self.assertContains(response, 'New participant')
|
|
|
|
response = self.client.post('/participant/new/', {'first_name': 'test_name_ho8hui2niz4nohSupahb'})
|
|
|
|
self.assertRedirects(response, '/participant/')
|
|
|
|
|
2014-01-11 21:56:19 +01:00
|
|
|
def test_create_multiple(self):
|
|
|
|
response = self.client.get('/participant/new_multiple/')
|
|
|
|
self.assertTemplateUsed(response, 'participant/user_form_multiple.html')
|
|
|
|
self.assertContains(response, 'New multiple participants')
|
|
|
|
self.assertEqual(User.objects.count(), 1)
|
|
|
|
block = ('first_name_ksdjfhkjsdhf75utgeitrten last_name_khonizt958zh8fh\n'
|
|
|
|
'first_name_1_bmgnf7z8ru first_name_2_kjc98vivt last_name_dfg76kjkjuibv')
|
|
|
|
response = self.client.post('/participant/new_multiple/',
|
|
|
|
{'participants_block': block})
|
|
|
|
self.assertEqual(User.objects.count(), 3)
|
|
|
|
|
2013-10-20 21:42:17 +02:00
|
|
|
def test_update(self):
|
|
|
|
response = self.client.get('/participant/1/edit/')
|
|
|
|
self.assertTemplateUsed(response, 'participant/edit.html')
|
|
|
|
self.assertContains(response, 'Edit participant')
|
|
|
|
response = self.client.post(
|
|
|
|
'/participant/1/edit/',
|
|
|
|
{'user_name': 'test_name_unaewae5Ir0saijeac2I',
|
|
|
|
'first_name': 'test_name_aJi5jaizaVingaeF3Ohj',
|
|
|
|
'groups': '4',
|
|
|
|
'is_active': 'yes'})
|
|
|
|
self.assertRedirects(response, '/participant/')
|
|
|
|
|
2014-03-30 10:54:09 +02:00
|
|
|
def test_activate(self):
|
|
|
|
response = self.client.get('/participant/1/status/activate/')
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
|
2013-10-20 21:42:17 +02:00
|
|
|
|
2013-04-13 18:13:11 +02:00
|
|
|
class GroupViews(TestCase):
|
|
|
|
"""
|
|
|
|
Tests the detail view for groups and later also the other views.
|
|
|
|
"""
|
|
|
|
def setUp(self):
|
2013-06-16 12:00:57 +02:00
|
|
|
self.user_1 = User.objects.get(pk=1)
|
|
|
|
self.user_1.first_name = 'admins_first_name'
|
|
|
|
self.user_1.save()
|
|
|
|
|
2013-04-13 18:13:11 +02:00
|
|
|
self.user_2 = User.objects.create(last_name='uquahx3Wohtieph9baer',
|
|
|
|
first_name='aWei4ien6Se0vie0xeiv',
|
|
|
|
username='aWei4ien6Se0vie0xeiv uquahx3Wohtieph9baer')
|
|
|
|
self.delegate = Group.objects.get(pk=3)
|
|
|
|
self.user_1.groups.add(self.delegate)
|
|
|
|
self.user_2.groups.add(self.delegate)
|
|
|
|
|
|
|
|
self.client = Client()
|
|
|
|
login_user = User.objects.create(username='loginusername', is_superuser=True)
|
|
|
|
login_user.reset_password('default')
|
|
|
|
self.client.login(username='loginusername', password='default')
|
|
|
|
|
|
|
|
def test_detail(self):
|
|
|
|
self.assertFalse(config['participant_sort_users_by_first_name'])
|
|
|
|
response = self.client.get('/participant/group/3/')
|
2013-06-16 12:00:57 +02:00
|
|
|
pattern = r'admins_first_name Administrator|aWei4ien6Se0vie0xeiv uquahx3Wohtieph9baer'
|
2013-04-13 18:13:11 +02:00
|
|
|
match = re.findall(pattern, response.content)
|
2013-06-16 12:00:57 +02:00
|
|
|
self.assertEqual(match[0], 'admins_first_name Administrator')
|
2013-04-13 18:13:11 +02:00
|
|
|
self.assertEqual(match[1], 'aWei4ien6Se0vie0xeiv uquahx3Wohtieph9baer')
|
|
|
|
|
|
|
|
config['participant_sort_users_by_first_name'] = True
|
|
|
|
self.assertTrue(config['participant_sort_users_by_first_name'])
|
|
|
|
response = self.client.get('/participant/group/3/')
|
2013-06-16 12:00:57 +02:00
|
|
|
pattern = r'admins_first_name Administrator|aWei4ien6Se0vie0xeiv uquahx3Wohtieph9baer'
|
2013-04-13 18:13:11 +02:00
|
|
|
match = re.findall(pattern, response.content)
|
2013-06-16 12:00:57 +02:00
|
|
|
self.assertEqual(match[1], 'admins_first_name Administrator')
|
2013-04-13 18:13:11 +02:00
|
|
|
self.assertEqual(match[0], 'aWei4ien6Se0vie0xeiv uquahx3Wohtieph9baer')
|
2013-06-03 20:13:06 +02:00
|
|
|
|
2013-10-20 21:42:17 +02:00
|
|
|
def test_create(self):
|
|
|
|
response = self.client.get('/participant/group/new/')
|
|
|
|
self.assertTemplateUsed(response, 'participant/group_edit.html')
|
|
|
|
self.assertContains(response, 'New group')
|
|
|
|
response = self.client.post('/participant/group/new/', {'name': 'test_group_name_Oeli1aeXoobohv8eikai'})
|
|
|
|
self.assertRedirects(response, '/participant/group/')
|
|
|
|
|
|
|
|
def test_update(self):
|
|
|
|
response = self.client.get('/participant/group/1/edit/')
|
|
|
|
self.assertTemplateUsed(response, 'participant/group_edit.html')
|
|
|
|
self.assertContains(response, 'Edit group')
|
|
|
|
response = self.client.post('/participant/group/1/edit/', {'name': 'test_group_name_ahFeicoz5jedie4Fop0U'})
|
|
|
|
self.assertRedirects(response, '/participant/group/')
|
|
|
|
|
2013-06-03 20:13:06 +02:00
|
|
|
|
|
|
|
class LockoutProtection(TestCase):
|
|
|
|
"""
|
|
|
|
Tests that a manager user can not lockout himself by doing
|
2013-12-23 19:14:11 +01:00
|
|
|
something that removes his last permission to manage participants. Tests
|
|
|
|
also that he can see the participant app (although there is no absolute
|
|
|
|
protection).
|
2013-06-03 20:13:06 +02:00
|
|
|
"""
|
|
|
|
def setUp(self):
|
2013-06-16 12:00:57 +02:00
|
|
|
self.user = User.objects.get(pk=1)
|
2013-06-03 20:13:06 +02:00
|
|
|
self.user.groups.add(Group.objects.get(pk=4))
|
|
|
|
self.client = Client()
|
2013-06-16 12:00:57 +02:00
|
|
|
self.client.login(username='admin', password='admin')
|
2013-06-03 20:13:06 +02:00
|
|
|
self.assertEqual(User.objects.count(), 1)
|
|
|
|
self.assertEqual(Group.objects.count(), 4)
|
2013-06-16 12:00:57 +02:00
|
|
|
self.assertFalse(self.user.is_superuser)
|
2013-06-03 20:13:06 +02:00
|
|
|
|
|
|
|
def test_delete_yourself(self):
|
|
|
|
response = self.client.get('/participant/1/del/')
|
|
|
|
self.assertRedirects(response, '/participant/1/')
|
|
|
|
self.assertTrue('You can not delete yourself.' in response.cookies['messages'].value)
|
|
|
|
response = self.client.post('/participant/1/del/',
|
|
|
|
{'yes': 'yes'})
|
|
|
|
self.assertTrue('You can not delete yourself.' in response.cookies['messages'].value)
|
|
|
|
self.assertRedirects(response, '/participant/')
|
|
|
|
self.assertEqual(User.objects.count(), 1)
|
|
|
|
|
|
|
|
def test_delete_last_manager_group(self):
|
|
|
|
response = self.client.get('/participant/group/4/del/')
|
|
|
|
self.assertRedirects(response, '/participant/group/4/')
|
|
|
|
self.assertTrue('You can not delete the last group containing the permission '
|
|
|
|
'to manage participants you are in.' in response.cookies['messages'].value)
|
|
|
|
response = self.client.post('/participant/group/4/del/',
|
|
|
|
{'yes': 'yes'})
|
|
|
|
self.assertTrue('You can not delete the last group containing the permission '
|
|
|
|
'to manage participants you are in.' in response.cookies['messages'].value)
|
|
|
|
self.assertRedirects(response, '/participant/group/')
|
|
|
|
self.assertEqual(Group.objects.count(), 4)
|
|
|
|
|
|
|
|
def test_remove_user_from_last_manager_group_via_UserUpdateView(self):
|
|
|
|
response = self.client.post('/participant/1/edit/',
|
|
|
|
{'username': 'arae0eQu8eeghoogeik0',
|
|
|
|
'groups': '3'})
|
|
|
|
self.assertFormError(
|
|
|
|
response=response,
|
|
|
|
form='form',
|
|
|
|
field=None,
|
|
|
|
errors='You can not remove the last group containing the permission to manage participants.')
|
|
|
|
|
|
|
|
def test_remove_user_from_last_manager_group_via_GroupUpdateView(self):
|
|
|
|
User.objects.get_or_create(username='foo', pk=2)
|
|
|
|
response = self.client.post('/participant/group/4/edit/',
|
|
|
|
{'name': 'ChaeFaev4leephaiChae',
|
|
|
|
'users': '2'})
|
|
|
|
self.assertFormError(
|
|
|
|
response=response,
|
|
|
|
form='form',
|
|
|
|
field=None,
|
|
|
|
errors='You can not remove yourself from the last group containing the permission to manage participants.')
|
|
|
|
|
|
|
|
def test_remove_perm_from_last_manager_group(self):
|
|
|
|
self.assertNotEqual(get_protected_perm().pk, 90)
|
|
|
|
response = self.client.post('/participant/group/4/edit/',
|
|
|
|
{'name': 'ChaeFaev4leephaiChae',
|
|
|
|
'users': '1',
|
|
|
|
'permissions': '90'})
|
|
|
|
self.assertFormError(
|
|
|
|
response=response,
|
|
|
|
form='form',
|
|
|
|
field=None,
|
2013-09-07 10:14:54 +02:00
|
|
|
errors='You can not remove the permission to manage participants from the last group you are in.')
|
2013-09-24 23:27:30 +02:00
|
|
|
|
2013-12-23 19:14:11 +01:00
|
|
|
def test_remove_permission_can_see_participant_from_registered(self):
|
|
|
|
self.assertTrue(self.user.has_perm('participant.can_see_participant'))
|
|
|
|
# Remove perm from registered group
|
|
|
|
can_see_perm = Permission.objects.get(
|
|
|
|
content_type=ContentType.objects.get(app_label='participant', model='user'),
|
|
|
|
codename='can_see_participant')
|
|
|
|
get_registered_group().permissions.remove(can_see_perm)
|
|
|
|
# Reload user
|
|
|
|
self.user = User.objects.get(pk=1)
|
|
|
|
self.assertTrue(self.user.has_perm('participant.can_see_participant'))
|
|
|
|
|
2013-09-24 23:27:30 +02:00
|
|
|
|
|
|
|
class TestUserSettings(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.admin = User.objects.get(pk=1)
|
|
|
|
self.admin_client = Client()
|
|
|
|
self.admin_client.login(username='admin', password='admin')
|
|
|
|
|
|
|
|
def test_get(self):
|
|
|
|
response = self.admin_client.get('/usersettings/')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
|
|
|
|
def test_pst(self):
|
|
|
|
response = self.admin_client.post('/usersettings/', {
|
|
|
|
'user_name': 'new_name',
|
|
|
|
'language': 'de'})
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
|
|
|
|
admin = User.objects.get(pk=1)
|
|
|
|
self.assertEqual(admin.username, 'new_name')
|