2013-10-13 17:17:56 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2014-08-16 09:25:18 +02:00
|
|
|
from unittest.mock import MagicMock, patch
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2015-06-29 12:08:15 +02:00
|
|
|
from openslides.core.config import config
|
2015-01-16 14:18:34 +01:00
|
|
|
from openslides.utils import main
|
2013-10-28 16:34:53 +01:00
|
|
|
from openslides.utils.test import TestCase
|
2013-10-13 17:17:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TestFunctions(TestCase):
|
2015-01-16 14:18:34 +01:00
|
|
|
@patch('openslides.utils.main.sys')
|
|
|
|
def test_detect_openslides_type_unix(self, mock_sys):
|
|
|
|
"""
|
|
|
|
Tests the return value on a unix system.
|
|
|
|
"""
|
|
|
|
mock_sys.platform = 'linux'
|
|
|
|
self.assertEqual(main.detect_openslides_type(), main.UNIX_VERSION)
|
|
|
|
|
|
|
|
@patch('openslides.utils.main.os.path.basename')
|
|
|
|
@patch('openslides.utils.main.sys')
|
|
|
|
def test_detect_openslides_type_win_portable(self, mock_sys, mock_os):
|
|
|
|
"""
|
|
|
|
Tests the return value on a windows portable system.
|
|
|
|
"""
|
|
|
|
mock_sys.platform = 'win32'
|
|
|
|
mock_os.return_value = 'openslides.exe'
|
|
|
|
self.assertEqual(main.detect_openslides_type(), main.WINDOWS_PORTABLE_VERSION)
|
|
|
|
|
|
|
|
@patch('openslides.utils.main.os.path.basename')
|
|
|
|
@patch('openslides.utils.main.sys')
|
|
|
|
def test_detect_openslides_type_win(self, mock_sys, mock_os):
|
|
|
|
"""
|
|
|
|
Tests the return value on a windows system.
|
|
|
|
"""
|
|
|
|
mock_sys.platform = 'win32'
|
|
|
|
mock_os.return_value = 'python'
|
|
|
|
self.assertEqual(main.detect_openslides_type(), main.WINDOWS_VERSION)
|
|
|
|
|
|
|
|
@patch('openslides.utils.main.detect_openslides_type')
|
|
|
|
@patch('openslides.utils.main.os.path.expanduser')
|
|
|
|
def test_get_default_settings_path_unix(self, mock_expanduser, mock_detect):
|
|
|
|
mock_expanduser.return_value = '/home/test/.config'
|
|
|
|
self.assertEqual(main.get_default_settings_path(main.UNIX_VERSION),
|
|
|
|
'/home/test/.config/openslides/settings.py')
|
|
|
|
|
|
|
|
@patch('openslides.utils.main.get_win32_app_data_path')
|
|
|
|
def test_get_default_settings_path_win(self, mock_win):
|
|
|
|
mock_win.return_value = 'win32'
|
|
|
|
self.assertEqual(main.get_default_settings_path(main.WINDOWS_VERSION),
|
|
|
|
'win32/openslides/settings.py')
|
|
|
|
|
|
|
|
@patch('openslides.utils.main.get_win32_portable_path')
|
|
|
|
def test_get_default_settings_path_portable(self, mock_portable):
|
|
|
|
mock_portable.return_value = 'portable'
|
|
|
|
self.assertEqual(main.get_default_settings_path(main.WINDOWS_PORTABLE_VERSION),
|
|
|
|
'portable/openslides/settings.py')
|
|
|
|
|
|
|
|
def test_get_development_settings_path(self):
|
2015-03-06 01:56:41 +01:00
|
|
|
self.assertEqual(main.get_development_settings_path(), os.sep.join(('development', 'var', 'settings.py')))
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
def test_setup_django_settings_module(self):
|
|
|
|
main.setup_django_settings_module('test_dir_dhvnghfjdh456fzheg2f/test_path_bngjdhc756dzwncshdfnx.py')
|
|
|
|
|
|
|
|
self.assertEqual(os.environ['DJANGO_SETTINGS_MODULE'], 'test_path_bngjdhc756dzwncshdfnx')
|
|
|
|
self.assertEqual(sys.path[0], os.path.abspath('test_dir_dhvnghfjdh456fzheg2f'))
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
@patch('openslides.utils.main.detect_openslides_type')
|
|
|
|
def test_get_default_settings_context_portable(self, detect_mock):
|
2015-01-16 14:18:34 +01:00
|
|
|
detect_mock.return_value = main.WINDOWS_PORTABLE_VERSION
|
|
|
|
context = main.get_default_settings_context()
|
2014-05-03 13:39:47 +02:00
|
|
|
self.assertEqual(context['openslides_user_data_path'], 'get_win32_portable_user_data_path()')
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
def test_get_default_user_data_path(self):
|
|
|
|
self.assertIn(os.path.join('.local', 'share'), main.get_default_user_data_path(main.UNIX_VERSION))
|
2013-10-30 17:48:09 +01:00
|
|
|
|
2013-11-04 08:41:51 +01:00
|
|
|
@patch('openslides.utils.main.threading.Thread')
|
2013-10-30 17:48:09 +01:00
|
|
|
@patch('openslides.utils.main.time')
|
|
|
|
@patch('openslides.utils.main.webbrowser')
|
2013-11-04 08:41:51 +01:00
|
|
|
def test_start_browser(self, mock_webbrowser, mock_time, mock_Thread):
|
2013-10-30 17:48:09 +01:00
|
|
|
browser_mock = MagicMock()
|
|
|
|
mock_webbrowser.get.return_value = browser_mock
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
main.start_browser('http://localhost:8234')
|
|
|
|
|
2013-11-04 08:41:51 +01:00
|
|
|
self.assertTrue(mock_Thread.called)
|
|
|
|
inner_function = mock_Thread.call_args[1]['target']
|
|
|
|
inner_function()
|
2013-10-30 17:48:09 +01:00
|
|
|
browser_mock.open.assert_called_with('http://localhost:8234')
|
|
|
|
|
|
|
|
def test_get_database_path_from_settings_memory(self):
|
2015-01-16 14:18:34 +01:00
|
|
|
self.assertEqual(main.get_database_path_from_settings(), ':memory:')
|
2013-10-30 17:48:09 +01:00
|
|
|
|
2014-01-31 01:54:41 +01:00
|
|
|
def test_translate_customizable_strings(self):
|
2015-06-16 18:12:59 +02:00
|
|
|
self.assertEqual(config['general_event_description'], 'Presentation and assembly system')
|
2015-01-16 14:18:34 +01:00
|
|
|
main.translate_customizable_strings('de')
|
2015-06-16 18:12:59 +02:00
|
|
|
self.assertEqual(config['general_event_description'], u'Präsentations- und Versammlungssystem')
|