openlp/tests/helpers/songfileimport.py

146 lines
7.7 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# 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 #
# 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-09-07 17:02:28 +00:00
"""
The :mod:`songfileimporthelper` modules provides a helper class and methods to easily enable testing the import of
song files from third party applications.
"""
import json
from unittest import TestCase
2013-10-05 09:16:04 +00:00
from tests.functional import patch, MagicMock, call
2013-09-07 17:02:28 +00:00
2014-03-05 18:58:22 +00:00
2013-09-07 17:02:28 +00:00
class SongImportTestHelper(TestCase):
"""
This class is designed to be a helper class to reduce repition when testing the import of song files.
"""
def __init__(self, *args, **kwargs):
2013-09-17 20:31:19 +00:00
super(SongImportTestHelper, self).__init__(*args, **kwargs)
2013-09-07 17:02:28 +00:00
self.importer_module = __import__(
2014-07-03 16:54:51 +00:00
'openlp.plugins.songs.lib.songimport.%s' % self.importer_module_name, fromlist=[self.importer_class_name])
2013-09-07 17:02:28 +00:00
self.importer_class = getattr(self.importer_module, self.importer_class_name)
def setUp(self):
"""
Patch and set up the mocks required.
"""
self.add_copyright_patcher = patch(
2014-07-03 16:54:51 +00:00
'openlp.plugins.songs.lib.songimport.%s.%s.add_copyright' % (self.importer_module_name, self.importer_class_name))
2013-09-07 17:02:28 +00:00
self.add_verse_patcher = patch(
2014-07-03 16:54:51 +00:00
'openlp.plugins.songs.lib.songimport.%s.%s.add_verse' % (self.importer_module_name, self.importer_class_name))
2013-09-07 17:02:28 +00:00
self.finish_patcher = patch(
2014-07-03 16:54:51 +00:00
'openlp.plugins.songs.lib.songimport.%s.%s.finish' % (self.importer_module_name, self.importer_class_name))
self.add_author_patcher = patch(
2014-07-03 16:54:51 +00:00
'openlp.plugins.songs.lib.songimport.%s.%s.add_author' % (self.importer_module_name, self.importer_class_name))
self.song_import_patcher = patch('openlp.plugins.songs.lib.songimport.%s.SongImport' % self.importer_module_name)
2013-09-07 17:02:28 +00:00
self.mocked_add_copyright = self.add_copyright_patcher.start()
self.mocked_add_verse = self.add_verse_patcher.start()
self.mocked_finish = self.finish_patcher.start()
self.mocked_add_author = self.add_author_patcher.start()
2013-09-07 17:02:28 +00:00
self.mocked_song_importer = self.song_import_patcher.start()
self.mocked_manager = MagicMock()
self.mocked_import_wizard = MagicMock()
self.mocked_finish.return_value = True
def tearDown(self):
"""
Clean up
"""
self.add_copyright_patcher.stop()
self.add_verse_patcher.stop()
self.finish_patcher.stop()
self.add_author_patcher.stop()
2013-09-07 17:02:28 +00:00
self.song_import_patcher.stop()
def load_external_result_data(self, file_name):
"""
A method to load and return an object containing the song data from an external file.
"""
result_file = open(file_name, 'rb')
2013-09-14 21:43:46 +00:00
return json.loads(result_file.read().decode())
2013-09-07 17:02:28 +00:00
def file_import(self, source_file_name, result_data):
"""
Import the given file and check that it has imported correctly
"""
importer = self.importer_class(self.mocked_manager, filenames=[source_file_name])
2013-09-07 17:02:28 +00:00
importer.import_wizard = self.mocked_import_wizard
importer.stop_import_flag = False
importer.topics = []
# WHEN: Importing the source file
2014-06-25 15:03:00 +00:00
importer.import_source = source_file_name
2013-10-14 22:05:17 +00:00
add_verse_calls = self._get_data(result_data, 'verses')
author_calls = self._get_data(result_data, 'authors')
ccli_number = self._get_data(result_data, 'ccli_number')
comments = self._get_data(result_data, 'comments')
song_book_name = self._get_data(result_data, 'song_book_name')
song_copyright = self._get_data(result_data, 'copyright')
song_number = self._get_data(result_data, 'song_number')
title = self._get_data(result_data, 'title')
topics = self._get_data(result_data, 'topics')
verse_order_list = self._get_data(result_data, 'verse_order_list')
2013-09-07 17:02:28 +00:00
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-09-07 17:02:28 +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')
self.assertEqual(importer.title, title, 'title for %s should be "%s"' % (source_file_name, title))
2013-09-07 17:02:28 +00:00
for author in author_calls:
self.mocked_add_author.assert_any_call(author)
2013-09-07 17:02:28 +00:00
if song_copyright:
self.mocked_add_copyright.assert_called_with(song_copyright)
if ccli_number:
2014-04-16 19:56:54 +00:00
self.assertEqual(importer.ccli_number, ccli_number,
'ccli_number for %s should be %s' % (source_file_name, ccli_number))
expected_calls = []
2013-09-07 17:02:28 +00:00
for verse_text, verse_tag in add_verse_calls:
self.mocked_add_verse.assert_any_call(verse_text, verse_tag)
expected_calls.append(call(verse_text, verse_tag))
self.mocked_add_verse.assert_has_calls(expected_calls, any_order=False)
2013-09-07 17:02:28 +00:00
if topics:
self.assertEqual(importer.topics, topics, 'topics for %s should be %s' % (source_file_name, topics))
2013-09-07 17:02:28 +00:00
if comments:
2014-04-16 19:56:54 +00:00
self.assertEqual(importer.comments, comments,
'comments for %s should be "%s"' % (source_file_name, comments))
2013-09-07 17:02:28 +00:00
if song_book_name:
2014-04-16 19:56:54 +00:00
self.assertEqual(importer.song_book_name, song_book_name,
'song_book_name for %s should be "%s"' % (source_file_name, song_book_name))
2013-09-07 17:02:28 +00:00
if song_number:
2014-04-16 19:56:54 +00:00
self.assertEqual(importer.song_number, song_number,
'song_number for %s should be %s' % (source_file_name, song_number))
2013-09-07 17:02:28 +00:00
if verse_order_list:
2014-04-22 21:46:21 +00:00
self.assertEqual(importer.verse_order_list, verse_order_list,
2014-04-16 19:56:54 +00:00
'verse_order_list for %s should be %s' % (source_file_name, verse_order_list))
2013-09-07 17:02:28 +00:00
self.mocked_finish.assert_called_with()
2013-10-14 22:05:17 +00:00
def _get_data(self, data, key):
2013-09-07 17:02:28 +00:00
if key in data:
return data[key]
return ''