openlp/tests/functional/openlp_core_utils/test_applocation.py

148 lines
6.8 KiB
Python
Raw Normal View History

"""
Functional tests to test the AppLocation class and related methods.
"""
2013-02-27 12:03:17 +00:00
import copy
from unittest import TestCase
from mock import patch
2012-12-07 21:15:10 +00:00
from openlp.core.utils import AppLocation
2013-02-27 12:03:17 +00:00
2013-08-31 18:17:38 +00:00
FILE_LIST = ['file1', 'file2', 'file3.txt', 'file4.txt', 'file5.mp3', 'file6.mp3']
2013-02-27 12:03:17 +00:00
class TestAppLocation(TestCase):
"""
A test suite to test out various methods around the AppLocation class.
"""
2012-12-05 20:44:42 +00:00
def get_data_path_test(self):
"""
Test the AppLocation.get_data_path() method
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.applocation.Settings') as mocked_class, \
patch('openlp.core.utils.AppLocation.get_directory') as mocked_get_directory, \
patch('openlp.core.utils.applocation.check_directory_exists') as mocked_check_directory_exists, \
patch('openlp.core.utils.applocation.os') as mocked_os:
2012-12-05 20:44:42 +00:00
# GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory()
mocked_settings = mocked_class.return_value
mocked_settings.contains.return_value = False
2013-08-31 18:17:38 +00:00
mocked_get_directory.return_value = 'test/dir'
2012-12-05 20:44:42 +00:00
mocked_check_directory_exists.return_value = True
2013-08-31 18:17:38 +00:00
mocked_os.path.normpath.return_value = 'test/dir'
2013-04-05 19:37:15 +00:00
2012-12-05 20:44:42 +00:00
# WHEN: we call AppLocation.get_data_path()
data_path = AppLocation.get_data_path()
2013-04-05 19:37:15 +00:00
2012-12-05 20:44:42 +00:00
# THEN: check that all the correct methods were called, and the result is correct
2013-08-31 18:17:38 +00:00
mocked_settings.contains.assert_called_with('advanced/data path')
2012-12-05 20:44:42 +00:00
mocked_get_directory.assert_called_with(AppLocation.DataDir)
2013-08-31 18:17:38 +00:00
mocked_check_directory_exists.assert_called_with('test/dir')
assert data_path == 'test/dir', 'Result should be "test/dir"'
2012-12-05 20:44:42 +00:00
def get_data_path_with_custom_location_test(self):
"""
Test the AppLocation.get_data_path() method when a custom location is set in the settings
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.applocation.Settings') as mocked_class,\
patch('openlp.core.utils.applocation.os') as mocked_os:
2012-12-05 20:44:42 +00:00
# GIVEN: A mocked out Settings class which returns a custom data location
mocked_settings = mocked_class.return_value
mocked_settings.contains.return_value = True
2013-08-31 18:17:38 +00:00
mocked_settings.value.return_value.toString.return_value = 'custom/dir'
mocked_os.path.normpath.return_value = 'custom/dir'
2013-04-05 19:37:15 +00:00
2012-12-05 20:44:42 +00:00
# WHEN: we call AppLocation.get_data_path()
data_path = AppLocation.get_data_path()
2013-04-05 19:37:15 +00:00
2012-12-05 20:44:42 +00:00
# THEN: the mocked Settings methods were called and the value returned was our set up value
2013-08-31 18:17:38 +00:00
mocked_settings.contains.assert_called_with('advanced/data path')
mocked_settings.value.assert_called_with('advanced/data path')
assert data_path == 'custom/dir', 'Result should be "custom/dir"'
2012-12-06 10:55:12 +00:00
2013-02-27 12:03:17 +00:00
def get_files_no_section_no_extension_test(self):
"""
Test the AppLocation.get_files() method with no parameters passed.
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.AppLocation.get_data_path') as mocked_get_data_path, \
patch('openlp.core.utils.applocation.os.listdir') as mocked_listdir:
2013-02-27 12:03:17 +00:00
# GIVEN: Our mocked modules/methods.
2013-08-31 18:17:38 +00:00
mocked_get_data_path.return_value = 'test/dir'
2013-02-27 12:03:17 +00:00
mocked_listdir.return_value = copy.deepcopy(FILE_LIST)
# When: Get the list of files.
result = AppLocation.get_files()
2013-02-27 21:40:55 +00:00
# Then: check if the file lists are identical.
2013-08-31 18:17:38 +00:00
assert result == FILE_LIST, 'The file lists should be identical.'
2013-02-27 12:03:17 +00:00
def get_files_test(self):
"""
Test the AppLocation.get_files() method with all parameters passed.
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.AppLocation.get_data_path') as mocked_get_data_path, \
patch('openlp.core.utils.applocation.os.listdir') as mocked_listdir:
2013-02-27 12:03:17 +00:00
# GIVEN: Our mocked modules/methods.
2013-08-31 18:17:38 +00:00
mocked_get_data_path.return_value = 'test/dir'
2013-02-27 12:03:17 +00:00
mocked_listdir.return_value = copy.deepcopy(FILE_LIST)
# When: Get the list of files.
2013-08-31 18:17:38 +00:00
result = AppLocation.get_files('section', '.mp3')
2013-03-01 16:18:50 +00:00
# Then: Check if the section parameter was used correctly.
2013-08-31 18:17:38 +00:00
mocked_listdir.assert_called_with('test/dir/section')
2013-02-27 12:03:17 +00:00
2013-02-27 21:40:55 +00:00
# Then: check if the file lists are identical.
2013-08-31 18:17:38 +00:00
assert result == ['file5.mp3', 'file6.mp3'], 'The file lists should be identical.'
2013-02-27 12:03:17 +00:00
2012-12-06 10:55:12 +00:00
def get_section_data_path_test(self):
"""
Test the AppLocation.get_section_data_path() method
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.AppLocation.get_data_path') as mocked_get_data_path, \
patch('openlp.core.utils.applocation.check_directory_exists') as mocked_check_directory_exists:
2012-12-06 10:55:12 +00:00
# GIVEN: A mocked out AppLocation.get_data_path()
2013-08-31 18:17:38 +00:00
mocked_get_data_path.return_value = 'test/dir'
2012-12-06 10:55:12 +00:00
mocked_check_directory_exists.return_value = True
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# WHEN: we call AppLocation.get_data_path()
2013-08-31 18:17:38 +00:00
data_path = AppLocation.get_section_data_path('section')
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# THEN: check that all the correct methods were called, and the result is correct
2013-08-31 18:17:38 +00:00
mocked_check_directory_exists.assert_called_with('test/dir/section')
assert data_path == 'test/dir/section', 'Result should be "test/dir/section"'
2012-12-06 10:55:12 +00:00
def get_directory_for_app_dir_test(self):
"""
Test the AppLocation.get_directory() method for AppLocation.AppDir
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.applocation._get_frozen_path') as mocked_get_frozen_path:
mocked_get_frozen_path.return_value = 'app/dir'
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# WHEN: We call AppLocation.get_directory
directory = AppLocation.get_directory(AppLocation.AppDir)
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# THEN:
2013-08-31 18:17:38 +00:00
assert directory == 'app/dir', 'Directory should be "app/dir"'
2013-01-30 18:42:22 +00:00
2012-12-06 10:55:12 +00:00
def get_directory_for_plugins_dir_test(self):
"""
Test the AppLocation.get_directory() method for AppLocation.PluginsDir
"""
2013-08-31 18:17:38 +00:00
with patch('openlp.core.utils.applocation._get_frozen_path') as mocked_get_frozen_path, \
patch('openlp.core.utils.applocation.os.path.abspath') as mocked_abspath, \
patch('openlp.core.utils.applocation.os.path.split') as mocked_split, \
patch('openlp.core.utils.applocation.sys') as mocked_sys:
mocked_abspath.return_value = 'plugins/dir'
mocked_split.return_value = ['openlp']
mocked_get_frozen_path.return_value = 'plugins/dir'
2012-12-06 10:55:12 +00:00
mocked_sys.frozen = 1
mocked_sys.argv = ['openlp']
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# WHEN: We call AppLocation.get_directory
directory = AppLocation.get_directory(AppLocation.PluginsDir)
2013-04-05 19:37:15 +00:00
2012-12-06 10:55:12 +00:00
# THEN:
2013-08-31 18:17:38 +00:00
assert directory == 'plugins/dir', 'Directory should be "plugins/dir"'
2013-01-30 18:42:22 +00:00