2013-10-22 15:09:10 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2013-10-26 17:25:07 +00:00
|
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
2013-10-22 15:09:10 +00:00
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
|
# --------------------------------------------------------------------------- #
|
2013-12-24 08:56:50 +00:00
|
|
|
|
# Copyright (c) 2008-2014 Raoul Snyman #
|
|
|
|
|
# Portions copyright (c) 2008-2014 Tim Bentley, Gerald Britton, Jonathan #
|
2013-10-22 15:09:10 +00:00
|
|
|
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
|
|
|
|
# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. #
|
|
|
|
|
# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, #
|
|
|
|
|
# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
|
|
|
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, #
|
|
|
|
|
# Frode Woldsund, Martin Zibricky, Patrick Zimmermann #
|
|
|
|
|
# --------------------------------------------------------------------------- #
|
|
|
|
|
# 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 #
|
|
|
|
|
###############################################################################
|
2013-10-06 22:07:49 +00:00
|
|
|
|
"""
|
|
|
|
|
This module contains tests for the Songbeamer song importer.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
from unittest import TestCase
|
|
|
|
|
|
2013-10-22 15:09:10 +00:00
|
|
|
|
from tests.functional import MagicMock, patch
|
2013-10-06 22:07:49 +00:00
|
|
|
|
from openlp.plugins.songs.lib.songbeamerimport import SongBeamerImport
|
|
|
|
|
|
2013-10-22 15:09:10 +00:00
|
|
|
|
TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__),
|
|
|
|
|
'..', '..', '..', 'resources', 'songbeamersongs'))
|
2014-02-27 21:36:33 +00:00
|
|
|
|
SONG_TEST_DATA = {
|
|
|
|
|
'Lobsinget dem Herrn.sng': {
|
|
|
|
|
'title': 'GL 1 - Lobsinget dem Herrn',
|
|
|
|
|
'verses': [
|
|
|
|
|
('1. Lobsinget dem Herrn,\no preiset Ihn gern!\nAnbetung und Lob Ihm gebühret.\n', 'v'),
|
|
|
|
|
('2. Lobsingt Seiner Lieb´,\ndie einzig ihn trieb,\nzu sterben für unsere Sünden!\n', 'v'),
|
|
|
|
|
('3. Lobsingt Seiner Macht!\nSein Werk ist vollbracht:\nEr sitzet zur Rechten des Vaters.\n', 'v'),
|
|
|
|
|
('4. Lobsingt seiner Treu´,\ndie immerdar neu,\nbis Er uns zur Herrlichket führet!\n\n', 'v')
|
|
|
|
|
],
|
|
|
|
|
'song_book_name': 'Glaubenslieder I',
|
|
|
|
|
'song_number': "1"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-06 22:07:49 +00:00
|
|
|
|
|
|
|
|
|
class TestSongBeamerImport(TestCase):
|
|
|
|
|
"""
|
|
|
|
|
Test the functions in the :mod:`songbeamerimport` module.
|
|
|
|
|
"""
|
|
|
|
|
def create_importer_test(self):
|
|
|
|
|
"""
|
|
|
|
|
Test creating an instance of the SongBeamer file importer
|
|
|
|
|
"""
|
|
|
|
|
# GIVEN: A mocked out SongImport class, and a mocked out "manager"
|
|
|
|
|
with patch('openlp.plugins.songs.lib.songbeamerimport.SongImport'):
|
|
|
|
|
mocked_manager = MagicMock()
|
|
|
|
|
|
|
|
|
|
# WHEN: An importer object is created
|
2014-03-29 13:31:28 +00:00
|
|
|
|
importer = SongBeamerImport(mocked_manager, filenames=[])
|
2013-10-06 22:07:49 +00:00
|
|
|
|
|
|
|
|
|
# THEN: The importer object should not be None
|
|
|
|
|
self.assertIsNotNone(importer, 'Import should not be none')
|
|
|
|
|
|
|
|
|
|
def invalid_import_source_test(self):
|
|
|
|
|
"""
|
2014-03-06 20:40:08 +00:00
|
|
|
|
Test SongBeamerImport.do_import handles different invalid import_source values
|
2013-10-06 22:07:49 +00:00
|
|
|
|
"""
|
|
|
|
|
# GIVEN: A mocked out SongImport class, and a mocked out "manager"
|
|
|
|
|
with patch('openlp.plugins.songs.lib.songbeamerimport.SongImport'):
|
|
|
|
|
mocked_manager = MagicMock()
|
|
|
|
|
mocked_import_wizard = MagicMock()
|
2014-03-29 13:31:28 +00:00
|
|
|
|
importer = SongBeamerImport(mocked_manager, filenames=[])
|
2013-10-06 22:07:49 +00:00
|
|
|
|
importer.import_wizard = mocked_import_wizard
|
|
|
|
|
importer.stop_import_flag = True
|
|
|
|
|
|
|
|
|
|
# WHEN: Import source is not a list
|
|
|
|
|
for source in ['not a list', 0]:
|
|
|
|
|
importer.import_source = source
|
|
|
|
|
|
2014-03-06 20:40:08 +00:00
|
|
|
|
# THEN: do_import should return none and the progress bar maximum should not be set.
|
|
|
|
|
self.assertIsNone(importer.do_import(), 'do_import should return None when import_source is not a list')
|
2013-10-06 22:07:49 +00:00
|
|
|
|
self.assertEquals(mocked_import_wizard.progress_bar.setMaximum.called, False,
|
|
|
|
|
'setMaxium on import_wizard.progress_bar should not have been called')
|
|
|
|
|
|
|
|
|
|
def valid_import_source_test(self):
|
|
|
|
|
"""
|
2014-03-06 20:40:08 +00:00
|
|
|
|
Test SongBeamerImport.do_import handles different invalid import_source values
|
2013-10-06 22:07:49 +00:00
|
|
|
|
"""
|
|
|
|
|
# GIVEN: A mocked out SongImport class, and a mocked out "manager"
|
|
|
|
|
with patch('openlp.plugins.songs.lib.songbeamerimport.SongImport'):
|
|
|
|
|
mocked_manager = MagicMock()
|
|
|
|
|
mocked_import_wizard = MagicMock()
|
2014-03-29 13:31:28 +00:00
|
|
|
|
importer = SongBeamerImport(mocked_manager, filenames=[])
|
2013-10-06 22:07:49 +00:00
|
|
|
|
importer.import_wizard = mocked_import_wizard
|
|
|
|
|
importer.stop_import_flag = True
|
|
|
|
|
|
|
|
|
|
# WHEN: Import source is a list
|
|
|
|
|
importer.import_source = ['List', 'of', 'files']
|
|
|
|
|
|
2014-03-06 20:40:08 +00:00
|
|
|
|
# THEN: do_import should return none and the progress bar setMaximum should be called with the length of
|
2013-10-06 22:07:49 +00:00
|
|
|
|
# import_source.
|
2014-03-06 20:40:08 +00:00
|
|
|
|
self.assertIsNone(importer.do_import(),
|
2014-04-02 19:35:09 +00:00
|
|
|
|
'do_import should return None when import_source is a list and stop_import_flag is True')
|
2013-10-06 22:07:49 +00:00
|
|
|
|
mocked_import_wizard.progress_bar.setMaximum.assert_called_with(len(importer.import_source))
|
|
|
|
|
|
|
|
|
|
def file_import_test(self):
|
|
|
|
|
"""
|
|
|
|
|
Test the actual import of real song files and check that the imported data is correct.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# GIVEN: Test files with a mocked out SongImport class, a mocked out "manager", a mocked out "import_wizard",
|
|
|
|
|
# and mocked out "author", "add_copyright", "add_verse", "finish" methods.
|
|
|
|
|
with patch('openlp.plugins.songs.lib.songbeamerimport.SongImport'):
|
|
|
|
|
for song_file in SONG_TEST_DATA:
|
|
|
|
|
mocked_manager = MagicMock()
|
|
|
|
|
mocked_import_wizard = MagicMock()
|
|
|
|
|
mocked_add_verse = MagicMock()
|
|
|
|
|
mocked_finish = MagicMock()
|
|
|
|
|
mocked_finish.return_value = True
|
2014-03-29 13:31:28 +00:00
|
|
|
|
importer = SongBeamerImport(mocked_manager, filenames=[])
|
2013-10-06 22:07:49 +00:00
|
|
|
|
importer.import_wizard = mocked_import_wizard
|
|
|
|
|
importer.stop_import_flag = False
|
2014-03-05 18:58:22 +00:00
|
|
|
|
importer.add_verse = mocked_add_verse
|
2013-10-06 22:07:49 +00:00
|
|
|
|
importer.finish = mocked_finish
|
|
|
|
|
|
|
|
|
|
# WHEN: Importing each file
|
|
|
|
|
importer.import_source = [os.path.join(TEST_PATH, song_file)]
|
|
|
|
|
title = SONG_TEST_DATA[song_file]['title']
|
|
|
|
|
add_verse_calls = SONG_TEST_DATA[song_file]['verses']
|
|
|
|
|
song_book_name = SONG_TEST_DATA[song_file]['song_book_name']
|
|
|
|
|
song_number = SONG_TEST_DATA[song_file]['song_number']
|
|
|
|
|
|
2014-03-06 20:40:08 +00:00
|
|
|
|
# THEN: do_import should return none, the song data should be as expected, and finish should have been
|
2013-10-06 22:07:49 +00:00
|
|
|
|
# called.
|
2014-03-06 20:40:08 +00:00
|
|
|
|
self.assertIsNone(importer.do_import(), 'do_import should return None when it has completed')
|
2013-10-06 22:07:49 +00:00
|
|
|
|
self.assertEquals(importer.title, title, 'title for %s should be "%s"' % (song_file, title))
|
|
|
|
|
for verse_text, verse_tag in add_verse_calls:
|
|
|
|
|
mocked_add_verse.assert_any_call(verse_text, verse_tag)
|
|
|
|
|
if song_book_name:
|
2014-04-02 19:35:09 +00:00
|
|
|
|
self.assertEquals(importer.song_book_name, song_book_name, 'song_book_name for %s should be "%s"' %
|
|
|
|
|
(song_file, song_book_name))
|
2013-10-06 22:07:49 +00:00
|
|
|
|
if song_number:
|
2014-04-02 19:35:09 +00:00
|
|
|
|
self.assertEquals(importer.song_number, song_number, 'song_number for %s should be %s' %
|
|
|
|
|
(song_file, song_number))
|
2013-10-06 22:07:49 +00:00
|
|
|
|
mocked_finish.assert_called_with()
|