forked from openlp/openlp
85 lines
3.9 KiB
Python
85 lines
3.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2018 OpenLP Developers #
|
|
# --------------------------------------------------------------------------- #
|
|
# This program is free software; you can redistribute it and/or modify it #
|
|
# under the terms of the GNU General Public License as published by the Free #
|
|
# Software Foundation; version 2 of the License. #
|
|
# #
|
|
# 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 Software Foundation, Inc., 59 #
|
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
###############################################################################
|
|
"""
|
|
This module contains tests for the lib submodule of the Images plugin.
|
|
"""
|
|
import os
|
|
import shutil
|
|
from tempfile import mkdtemp
|
|
from unittest import TestCase
|
|
from unittest.mock import patch
|
|
|
|
from openlp.core.common.applocation import AppLocation
|
|
from openlp.core.common.path import Path
|
|
from openlp.core.common.settings import Settings
|
|
from openlp.core.lib.db import Manager
|
|
from openlp.plugins.images.lib import upgrade
|
|
from openlp.plugins.images.lib.db import ImageFilenames, init_schema
|
|
from tests.helpers.testmixin import TestMixin
|
|
from tests.utils.constants import TEST_RESOURCES_PATH
|
|
|
|
__default_settings__ = {
|
|
'images/db type': 'sqlite',
|
|
'images/background color': '#000000',
|
|
}
|
|
|
|
|
|
class TestImageDBUpgrade(TestCase, TestMixin):
|
|
"""
|
|
Test that the image database is upgraded correctly
|
|
"""
|
|
def setUp(self):
|
|
self.build_settings()
|
|
Settings().extend_default_settings(__default_settings__)
|
|
self.tmp_folder = mkdtemp()
|
|
|
|
def tearDown(self):
|
|
"""
|
|
Delete all the C++ objects at the end so that we don't have a segfault
|
|
"""
|
|
self.destroy_settings()
|
|
# Ignore errors since windows can have problems with locked files
|
|
shutil.rmtree(self.tmp_folder, ignore_errors=True)
|
|
|
|
def test_image_filenames_table(self):
|
|
"""
|
|
Test that the ImageFilenames table is correctly upgraded to the latest version
|
|
"""
|
|
# GIVEN: An unversioned image database
|
|
temp_db_name = os.path.join(self.tmp_folder, 'image-v0.sqlite')
|
|
shutil.copyfile(os.path.join(TEST_RESOURCES_PATH, 'images', 'image-v0.sqlite'), temp_db_name)
|
|
|
|
with patch.object(AppLocation, 'get_data_path', return_value=Path('/', 'test', 'dir')):
|
|
# WHEN: Initalising the database manager
|
|
manager = Manager('images', init_schema, db_file_path=temp_db_name, upgrade_mod=upgrade)
|
|
|
|
# THEN: The database should have been upgraded and image_filenames.file_path should return Path objects
|
|
upgraded_results = manager.get_all_objects(ImageFilenames)
|
|
|
|
expected_result_data = {1: Path('/', 'test', 'image1.jpg'),
|
|
2: Path('/', 'test', 'dir', 'image2.jpg'),
|
|
3: Path('/', 'test', 'dir', 'subdir', 'image3.jpg')}
|
|
|
|
assert len(upgraded_results) == 3
|
|
for result in upgraded_results:
|
|
assert expected_result_data[result.id] == result.file_path
|