2014-11-03 14:36:27 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-13 13:00:22 +00:00
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
2022-02-06 09:10:17 +00:00
|
|
|
# Copyright (c) 2008-2022 OpenLP Developers #
|
2019-04-13 13:00:22 +00:00
|
|
|
# ---------------------------------------------------------------------- #
|
|
|
|
# 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, either version 3 of the License, or #
|
|
|
|
# (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
# 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, see <https://www.gnu.org/licenses/>. #
|
|
|
|
##########################################################################
|
2014-11-03 14:36:27 +00:00
|
|
|
"""
|
|
|
|
This module contains tests for the Words of Worship song importer.
|
|
|
|
"""
|
|
|
|
from tests.helpers.songfileimport import SongImportTestHelper
|
2017-12-22 22:21:38 +00:00
|
|
|
from tests.utils.constants import RESOURCE_PATH
|
2014-11-03 14:36:27 +00:00
|
|
|
|
2018-10-02 04:39:42 +00:00
|
|
|
|
2017-12-24 08:42:46 +00:00
|
|
|
TEST_PATH = RESOURCE_PATH / 'songs' / 'wordsofworship'
|
2014-11-03 14:36:27 +00:00
|
|
|
|
|
|
|
|
2020-09-29 04:42:45 +00:00
|
|
|
def test_amazing_grace_song_import(registry):
|
|
|
|
"""
|
|
|
|
Test that loading a Words of Worship file works correctly
|
|
|
|
"""
|
|
|
|
with SongImportTestHelper('WordsOfWorshipImport', 'wordsofworship') as helper:
|
|
|
|
helper.file_import([TEST_PATH / 'Amazing Grace (6 Verses)_v2_1_2.wow-song'],
|
|
|
|
helper.load_external_result_data(TEST_PATH / 'Amazing Grace (6 Verses)_v2_1_2.json'))
|
2014-11-03 14:36:27 +00:00
|
|
|
|
|
|
|
|
2020-09-29 04:42:45 +00:00
|
|
|
def test_when_morning_gilds_song_import(registry):
|
|
|
|
"""
|
|
|
|
Test that loading a Words of Worship file v2.0.0 works correctly
|
|
|
|
"""
|
|
|
|
with SongImportTestHelper('WordsOfWorshipImport', 'wordsofworship') as helper:
|
|
|
|
helper.file_import([TEST_PATH / 'When morning gilds the skies_v2_0_0.wsg'],
|
|
|
|
helper.load_external_result_data(TEST_PATH / 'When morning gilds the skies_v2_0_0.json'))
|
2019-06-28 18:09:25 +00:00
|
|
|
|
|
|
|
|
2020-09-29 04:42:45 +00:00
|
|
|
def test_holy_holy_holy_song_import(registry):
|
|
|
|
"""
|
|
|
|
Test that loading a Words of Worship file works correctly
|
|
|
|
"""
|
|
|
|
with SongImportTestHelper('WordsOfWorshipImport', 'wordsofworship') as helper:
|
|
|
|
helper.file_import([TEST_PATH / 'Holy Holy Holy Lord God Almighty_v2_1_2.wow-song'],
|
|
|
|
helper.load_external_result_data(TEST_PATH / 'Holy Holy Holy Lord God Almighty_v2_1_2.json'))
|
2019-06-28 18:09:25 +00:00
|
|
|
|
|
|
|
|
2020-09-29 04:42:45 +00:00
|
|
|
def test_test_song_v2_0_0_song_import(registry):
|
|
|
|
"""
|
|
|
|
Test that loading a Words of Worship file v2.0.0 works correctly
|
|
|
|
"""
|
|
|
|
with SongImportTestHelper('WordsOfWorshipImport', 'wordsofworship') as helper:
|
|
|
|
helper.file_import([TEST_PATH / 'Test_Song_v2_0_0.wsg'],
|
|
|
|
helper.load_external_result_data(TEST_PATH / 'Test_Song_v2_0_0.json'))
|
|
|
|
|
|
|
|
|
|
|
|
def test_test_song_song_import(registry):
|
|
|
|
"""
|
|
|
|
Test that loading a Words of Worship file v2.1.2 works correctly
|
|
|
|
"""
|
|
|
|
with SongImportTestHelper('WordsOfWorshipImport', 'wordsofworship') as helper:
|
|
|
|
helper.file_import([TEST_PATH / 'Test_Song_v2_1_2.wow-song'],
|
|
|
|
helper.load_external_result_data(TEST_PATH / 'Test_Song_v2_1_2.json'))
|