2013-03-01 17:13:12 +01:00
|
|
|
from django import forms
|
2013-09-25 10:01:01 +02:00
|
|
|
from django.contrib.auth.models import Permission
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
from django.dispatch import receiver
|
|
|
|
from django.test.client import Client
|
2014-08-16 09:25:18 +02:00
|
|
|
|
2015-06-16 10:37:23 +02:00
|
|
|
from openslides.config.api import (
|
|
|
|
ConfigCollection,
|
|
|
|
ConfigGroup,
|
|
|
|
ConfigGroupedCollection,
|
|
|
|
ConfigVariable,
|
|
|
|
config,
|
|
|
|
)
|
2013-03-01 17:13:12 +01:00
|
|
|
from openslides.config.exceptions import ConfigError, ConfigNotFound
|
2013-09-25 10:01:01 +02:00
|
|
|
from openslides.config.signals import config_signal
|
2014-10-11 14:34:49 +02:00
|
|
|
from openslides.users.models import User
|
2013-09-25 10:01:01 +02:00
|
|
|
from openslides.utils.test import TestCase
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HandleConfigTest(TestCase):
|
|
|
|
|
|
|
|
def get_config_var(self, key):
|
2013-08-19 12:41:29 +02:00
|
|
|
return config[key]
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2013-09-08 10:26:51 +02:00
|
|
|
def set_config_var(self, key, value):
|
|
|
|
config[key] = value
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
def test_get_config_default_value(self):
|
|
|
|
self.assertEqual(config['string_var'], 'default_string_rien4ooCZieng6ah')
|
|
|
|
self.assertTrue(config['bool_var'])
|
|
|
|
self.assertEqual(config['integer_var'], 3)
|
2014-05-28 00:20:13 +02:00
|
|
|
self.assertEqual(config['choices_var'], '1')
|
2013-03-01 17:13:12 +01:00
|
|
|
self.assertEqual(config['none_config_var'], None)
|
|
|
|
self.assertRaisesMessage(expected_exception=ConfigNotFound,
|
|
|
|
expected_message='The config variable unknown_config_var was not found.',
|
|
|
|
callable_obj=self.get_config_var, key='unknown_config_var')
|
|
|
|
|
|
|
|
def test_get_multiple_config_var_error(self):
|
2013-12-02 19:33:43 +01:00
|
|
|
config_signal.connect(set_simple_config_view_multiple_vars, dispatch_uid='set_simple_config_view_multiple_vars_for_testing')
|
2013-03-01 17:13:12 +01:00
|
|
|
self.assertRaisesMessage(expected_exception=ConfigError,
|
|
|
|
expected_message='Too many values for config variable multiple_config_var found.',
|
|
|
|
callable_obj=config.setup_cache)
|
2013-12-02 19:33:43 +01:00
|
|
|
config_signal.disconnect(set_simple_config_view_multiple_vars, dispatch_uid='set_simple_config_view_multiple_vars_for_testing')
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
def test_database_queries(self):
|
2013-08-11 10:05:47 +02:00
|
|
|
"""
|
|
|
|
Test that no database queries are send, after the cache was created.
|
|
|
|
"""
|
|
|
|
config.setup_cache()
|
2013-03-01 17:13:12 +01:00
|
|
|
self.assertNumQueries(0, self.get_config_var, key='string_var')
|
|
|
|
|
|
|
|
def test_setup_config_var(self):
|
|
|
|
self.assertRaises(TypeError, ConfigVariable)
|
|
|
|
self.assertRaises(TypeError, ConfigVariable, name='foo')
|
|
|
|
self.assertRaises(TypeError, ConfigVariable, default_value='foo')
|
|
|
|
|
|
|
|
def test_change_config_value(self):
|
|
|
|
self.assertEqual(config['string_var'], 'default_string_rien4ooCZieng6ah')
|
|
|
|
config['string_var'] = 'other_special_unique_string dauTex9eAiy7jeen'
|
|
|
|
self.assertEqual(config['string_var'], 'other_special_unique_string dauTex9eAiy7jeen')
|
|
|
|
|
2013-04-03 17:55:30 +02:00
|
|
|
def test_missing_cache_(self):
|
|
|
|
self.assertEqual(config['string_var'], 'default_string_rien4ooCZieng6ah')
|
|
|
|
|
|
|
|
def test_config_contains(self):
|
|
|
|
self.assertTrue('string_var' in config)
|
|
|
|
self.assertFalse('unknown_config_var' in config)
|
|
|
|
|
2013-08-11 10:05:47 +02:00
|
|
|
def test_set_value_before_getting_it(self):
|
|
|
|
"""
|
2015-06-16 14:03:42 +02:00
|
|
|
Try to call __setitem__ before __getitem__.
|
2013-08-11 10:05:47 +02:00
|
|
|
"""
|
2015-06-16 14:03:42 +02:00
|
|
|
config['additional_config_var'] = 'value'
|
2013-08-11 10:05:47 +02:00
|
|
|
|
2013-09-08 10:26:51 +02:00
|
|
|
def test_on_change(self):
|
|
|
|
"""
|
|
|
|
Tests that the special callback is called and raises a special
|
|
|
|
message.
|
|
|
|
"""
|
2014-08-16 09:25:18 +02:00
|
|
|
# TODO: use right exception
|
2013-09-08 10:26:51 +02:00
|
|
|
self.assertRaisesMessage(
|
|
|
|
Exception,
|
|
|
|
'Change callback dhcnfg34dlg06kdg successfully called.',
|
|
|
|
self.set_config_var,
|
|
|
|
key='var_with_callback_ghvnfjd5768gdfkwg0hm2',
|
|
|
|
value='new_string_kbmbnfhdgibkdjshg452bc')
|
|
|
|
self.assertEqual(config['var_with_callback_ghvnfjd5768gdfkwg0hm2'], 'new_string_kbmbnfhdgibkdjshg452bc')
|
|
|
|
|
2013-09-25 09:43:09 +02:00
|
|
|
def test_get_default(self):
|
|
|
|
"""
|
|
|
|
Tests the methode 'default'.
|
|
|
|
"""
|
|
|
|
self.assertEqual(config.get_default('string_var'), 'default_string_rien4ooCZieng6ah')
|
|
|
|
self.assertRaisesMessage(
|
|
|
|
ConfigNotFound,
|
|
|
|
'The config variable unknown_var was not found.',
|
|
|
|
config.get_default,
|
|
|
|
'unknown_var')
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
class ConfigWeightTest(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# Setup the permission
|
|
|
|
ct = ContentType.objects.get(app_label='config', model='configstore')
|
|
|
|
perm = Permission.objects.get(content_type=ct, codename='can_manage')
|
|
|
|
|
|
|
|
# Setup two users
|
2014-10-11 14:34:49 +02:00
|
|
|
self.manager = User.objects.create_user('config_test_manager', 'default')
|
2013-03-01 17:13:12 +01:00
|
|
|
self.manager.user_permissions.add(perm)
|
|
|
|
|
|
|
|
# Login
|
|
|
|
self.client_manager = Client()
|
|
|
|
self.client_manager.login(username='config_test_manager', password='default')
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
def test_order_of_config_views_abstract(self):
|
|
|
|
config_collection_dict = {}
|
2014-04-08 20:33:07 +02:00
|
|
|
for signal_receiver, config_collection in config_signal.send(sender=self):
|
|
|
|
config_collection_dict[signal_receiver.__name__] = config_collection
|
2013-12-02 19:33:43 +01:00
|
|
|
self.assertGreater(config_collection_dict['set_grouped_config_view'].weight, config_collection_dict['set_simple_config_view'].weight)
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
@receiver(config_signal, dispatch_uid='set_grouped_config_view_for_testing')
|
|
|
|
def set_grouped_config_view(sender, **kwargs):
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2013-12-02 19:33:43 +01:00
|
|
|
Sets a grouped config collection view which can be reached under the url
|
2013-03-01 17:13:12 +01:00
|
|
|
'/config/testgroupedpage1/'. There are some variables, one variable
|
|
|
|
with a string as default value, one with a boolean as default value,
|
|
|
|
one with an integer as default value, one with choices and one
|
|
|
|
hidden variable. These variables are grouped in two groups.
|
|
|
|
"""
|
|
|
|
string_var = ConfigVariable(
|
|
|
|
name='string_var',
|
|
|
|
default_value='default_string_rien4ooCZieng6ah',
|
|
|
|
form_field=forms.CharField())
|
|
|
|
bool_var = ConfigVariable(
|
|
|
|
name='bool_var',
|
|
|
|
default_value=True,
|
|
|
|
form_field=forms.BooleanField(required=False))
|
|
|
|
integer_var = ConfigVariable(
|
|
|
|
name='integer_var',
|
|
|
|
default_value=3,
|
|
|
|
form_field=forms.IntegerField())
|
|
|
|
group_1 = ConfigGroup(title='Group 1 aiYeix2mCieQuae3', variables=(string_var, bool_var, integer_var))
|
|
|
|
|
|
|
|
hidden_var = ConfigVariable(
|
|
|
|
name='hidden_var',
|
|
|
|
default_value='hidden_value')
|
|
|
|
choices_var = ConfigVariable(
|
|
|
|
name='choices_var',
|
2014-05-28 00:20:13 +02:00
|
|
|
default_value='1',
|
|
|
|
form_field=forms.ChoiceField(choices=(('1', 'Choice One Ughoch4ocoche6Ee'), ('2', 'Choice Two Vahnoh5yalohv5Eb'))))
|
2013-03-01 17:13:12 +01:00
|
|
|
group_2 = ConfigGroup(title='Group 2 Toongai7ahyahy7B', variables=(hidden_var, choices_var))
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
return ConfigGroupedCollection(
|
|
|
|
title='Config vars for testing 1',
|
|
|
|
url='testgroupedpage1',
|
|
|
|
weight=10000,
|
|
|
|
groups=(group_1, group_2),
|
|
|
|
extra_context={'extra_stylefiles': ['styles/test-config-sjNN56dFGDrg2.css'],
|
|
|
|
'extra_javascript': ['javascript/test-config-djg4dFGVslk4209f.js']})
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
@receiver(config_signal, dispatch_uid='set_simple_config_view_for_testing')
|
|
|
|
def set_simple_config_view(sender, **kwargs):
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2013-12-02 19:33:43 +01:00
|
|
|
Sets a simple config view with some config variables but without
|
2013-03-01 17:13:12 +01:00
|
|
|
grouping.
|
|
|
|
"""
|
2013-12-02 19:33:43 +01:00
|
|
|
return ConfigCollection(
|
|
|
|
title='Config vars for testing 2',
|
|
|
|
url='testsimplepage1',
|
|
|
|
variables=(ConfigVariable(name='additional_config_var', default_value='BaeB0ahcMae3feem'),
|
|
|
|
ConfigVariable(name='additional_config_var_2', default_value='', form_field=forms.CharField()),
|
|
|
|
ConfigVariable(name='none_config_var', default_value=None)))
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Do not connect to the signal now but later inside the test.
|
2013-12-02 19:33:43 +01:00
|
|
|
def set_simple_config_view_multiple_vars(sender, **kwargs):
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2013-12-02 19:33:43 +01:00
|
|
|
Sets a bad config view with some multiple config vars.
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2013-12-02 19:33:43 +01:00
|
|
|
return ConfigCollection(
|
|
|
|
title='Config vars for testing 3',
|
|
|
|
url='testsimplepage2',
|
|
|
|
variables=(ConfigVariable(name='multiple_config_var', default_value='foobar1'),
|
|
|
|
ConfigVariable(name='multiple_config_var', default_value='foobar2')))
|
2013-03-01 17:13:12 +01:00
|
|
|
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
@receiver(config_signal, dispatch_uid='set_simple_config_collection_disabled_view_for_testing')
|
|
|
|
def set_simple_config_collection_disabled_view(sender, **kwargs):
|
|
|
|
return ConfigCollection(
|
|
|
|
title='Ho5iengaoon5Hoht',
|
|
|
|
url='testsimplepage3',
|
|
|
|
variables=(ConfigVariable(name='hidden_config_var_2', default_value=''),))
|
2013-09-08 10:26:51 +02:00
|
|
|
|
|
|
|
|
2013-12-02 19:33:43 +01:00
|
|
|
@receiver(config_signal, dispatch_uid='set_simple_config_collection_with_callback_for_testing')
|
|
|
|
def set_simple_config_collection_with_callback(sender, **kwargs):
|
2013-09-08 10:26:51 +02:00
|
|
|
def callback():
|
|
|
|
raise Exception('Change callback dhcnfg34dlg06kdg successfully called.')
|
2013-12-02 19:33:43 +01:00
|
|
|
return ConfigCollection(
|
|
|
|
title='Hvndfhsbgkridfgdfg',
|
|
|
|
url='testsimplepage4',
|
|
|
|
variables=(ConfigVariable(
|
|
|
|
name='var_with_callback_ghvnfjd5768gdfkwg0hm2',
|
|
|
|
default_value='',
|
|
|
|
on_change=callback),))
|