forked from openlp/openlp
286 lines
12 KiB
Python
286 lines
12 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2017 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 Songs plugin.
|
|
"""
|
|
from unittest import TestCase
|
|
|
|
from PyQt5 import QtCore
|
|
|
|
from openlp.core.common import Registry, Settings
|
|
from openlp.core.lib import ServiceItem
|
|
from openlp.plugins.songs.lib.mediaitem import SongMediaItem
|
|
from openlp.plugins.songs.lib.db import AuthorType, Song
|
|
from tests.functional import patch, MagicMock
|
|
from tests.helpers.testmixin import TestMixin
|
|
|
|
|
|
class TestMediaItem(TestCase, TestMixin):
|
|
"""
|
|
Test the functions in the :mod:`lib` module.
|
|
"""
|
|
def setUp(self):
|
|
"""
|
|
Set up the components need for all tests.
|
|
"""
|
|
Registry.create()
|
|
Registry().register('service_list', MagicMock())
|
|
Registry().register('main_window', MagicMock())
|
|
with patch('openlp.core.lib.mediamanageritem.MediaManagerItem._setup'), \
|
|
patch('openlp.plugins.songs.forms.editsongform.EditSongForm.__init__'):
|
|
self.media_item = SongMediaItem(None, MagicMock())
|
|
self.media_item.display_songbook = False
|
|
self.media_item.display_copyright_symbol = False
|
|
self.setup_application()
|
|
self.build_settings()
|
|
QtCore.QLocale.setDefault(QtCore.QLocale('en_GB'))
|
|
|
|
def tearDown(self):
|
|
"""
|
|
Delete all the C++ objects at the end so that we don't have a segfault
|
|
"""
|
|
self.destroy_settings()
|
|
|
|
def build_song_footer_one_author_test(self):
|
|
"""
|
|
Test build songs footer with basic song and one author
|
|
"""
|
|
# GIVEN: A Song and a Service Item
|
|
mock_song = MagicMock()
|
|
mock_song.title = 'My Song'
|
|
mock_song.authors_songs = []
|
|
mock_author = MagicMock()
|
|
mock_author.display_name = 'my author'
|
|
mock_author_song = MagicMock()
|
|
mock_author_song.author = mock_author
|
|
mock_song.authors_songs.append(mock_author_song)
|
|
mock_song.copyright = 'My copyright'
|
|
service_item = ServiceItem(None)
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
author_list = self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: I get the following Array returned
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'Written by: my author', 'My copyright'],
|
|
'The array should be returned correctly with a song, one author and copyright')
|
|
self.assertEqual(author_list, ['my author'],
|
|
'The author list should be returned correctly with one author')
|
|
|
|
def build_song_footer_two_authors_test(self):
|
|
"""
|
|
Test build songs footer with basic song and two authors
|
|
"""
|
|
# GIVEN: A Song and a Service Item
|
|
mock_song = MagicMock()
|
|
mock_song.title = 'My Song'
|
|
mock_song.authors_songs = []
|
|
mock_author = MagicMock()
|
|
mock_author.display_name = 'my author'
|
|
mock_author_song = MagicMock()
|
|
mock_author_song.author = mock_author
|
|
mock_author_song.author_type = AuthorType.Music
|
|
mock_song.authors_songs.append(mock_author_song)
|
|
mock_author = MagicMock()
|
|
mock_author.display_name = 'another author'
|
|
mock_author_song = MagicMock()
|
|
mock_author_song.author = mock_author
|
|
mock_author_song.author_type = AuthorType.Words
|
|
mock_song.authors_songs.append(mock_author_song)
|
|
mock_author = MagicMock()
|
|
mock_author.display_name = 'translator'
|
|
mock_author_song = MagicMock()
|
|
mock_author_song.author = mock_author
|
|
mock_author_song.author_type = AuthorType.Translation
|
|
mock_song.authors_songs.append(mock_author_song)
|
|
mock_song.copyright = 'My copyright'
|
|
service_item = ServiceItem(None)
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
author_list = self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: I get the following Array returned
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'Words: another author', 'Music: my author',
|
|
'Translation: translator', 'My copyright'],
|
|
'The array should be returned correctly with a song, two authors and copyright')
|
|
self.assertEqual(author_list, ['another author', 'my author', 'translator'],
|
|
'The author list should be returned correctly with two authors')
|
|
|
|
def build_song_footer_base_ccli_test(self):
|
|
"""
|
|
Test build songs footer with basic song and a CCLI number
|
|
"""
|
|
# GIVEN: A Song and a Service Item and a configured CCLI license
|
|
mock_song = MagicMock()
|
|
mock_song.title = 'My Song'
|
|
mock_song.copyright = 'My copyright'
|
|
service_item = ServiceItem(None)
|
|
Settings().setValue('core/ccli number', '1234')
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: I get the following Array returned
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'CCLI License: 1234'],
|
|
'The array should be returned correctly with a song, an author, copyright and ccli')
|
|
|
|
# WHEN: I amend the CCLI value
|
|
Settings().setValue('core/ccli number', '4321')
|
|
self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: I would get an amended footer string
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'CCLI License: 4321'],
|
|
'The array should be returned correctly with a song, an author, copyright and amended ccli')
|
|
|
|
def build_song_footer_base_songbook_test(self):
|
|
"""
|
|
Test build songs footer with basic song and multiple songbooks
|
|
"""
|
|
# GIVEN: A Song and a Service Item
|
|
song = Song()
|
|
song.title = 'My Song'
|
|
song.copyright = 'My copyright'
|
|
song.authors_songs = []
|
|
song.songbook_entries = []
|
|
song.ccli_number = ''
|
|
book1 = MagicMock()
|
|
book1.name = "My songbook"
|
|
book2 = MagicMock()
|
|
book2.name = "Thy songbook"
|
|
song.songbookentries = []
|
|
song.add_songbook_entry(book1, '12')
|
|
song.add_songbook_entry(book2, '502A')
|
|
service_item = ServiceItem(None)
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
self.media_item.generate_footer(service_item, song)
|
|
|
|
# THEN: The songbook should not be in the footer
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright'])
|
|
|
|
# WHEN: I activate the "display songbook" option
|
|
self.media_item.display_songbook = True
|
|
self.media_item.generate_footer(service_item, song)
|
|
|
|
# THEN: The songbook should be in the footer
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright', 'My songbook #12, Thy songbook #502A'])
|
|
|
|
def build_song_footer_copyright_enabled_test(self):
|
|
"""
|
|
Test building song footer with displaying the copyright symbol
|
|
"""
|
|
# GIVEN: A Song and a Service Item; displaying the copyright symbol is enabled
|
|
self.media_item.display_copyright_symbol = True
|
|
mock_song = MagicMock()
|
|
mock_song.title = 'My Song'
|
|
mock_song.copyright = 'My copyright'
|
|
service_item = ServiceItem(None)
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: The copyright symbol should be in the footer
|
|
self.assertEqual(service_item.raw_footer, ['My Song', '© My copyright'])
|
|
|
|
def build_song_footer_copyright_disabled_test(self):
|
|
"""
|
|
Test building song footer without displaying the copyright symbol
|
|
"""
|
|
# GIVEN: A Song and a Service Item; displaying the copyright symbol should be disabled by default
|
|
mock_song = MagicMock()
|
|
mock_song.title = 'My Song'
|
|
mock_song.copyright = 'My copyright'
|
|
service_item = ServiceItem(None)
|
|
|
|
# WHEN: I generate the Footer with default settings
|
|
self.media_item.generate_footer(service_item, mock_song)
|
|
|
|
# THEN: The copyright symbol should not be in the footer
|
|
self.assertEqual(service_item.raw_footer, ['My Song', 'My copyright'])
|
|
|
|
def authors_match_test(self):
|
|
"""
|
|
Test the author matching when importing a song from a service
|
|
"""
|
|
# GIVEN: A song and a string with authors
|
|
song = MagicMock()
|
|
song.authors = []
|
|
author = MagicMock()
|
|
author.display_name = "Hans Wurst"
|
|
song.authors.append(author)
|
|
author2 = MagicMock()
|
|
author2.display_name = "Max Mustermann"
|
|
song.authors.append(author2)
|
|
# There are occasions where an author appears twice in a song (with different types).
|
|
# We need to make sure that this case works (lp#1313538)
|
|
author3 = MagicMock()
|
|
author3.display_name = "Max Mustermann"
|
|
song.authors.append(author3)
|
|
authors_str = "Hans Wurst, Max Mustermann, Max Mustermann"
|
|
|
|
# WHEN: Checking for matching
|
|
result = self.media_item._authors_match(song, authors_str)
|
|
|
|
# THEN: They should match
|
|
self.assertTrue(result, "Authors should match")
|
|
|
|
def authors_dont_match_test(self):
|
|
# GIVEN: A song and a string with authors
|
|
song = MagicMock()
|
|
song.authors = []
|
|
author = MagicMock()
|
|
author.display_name = "Hans Wurst"
|
|
song.authors.append(author)
|
|
author2 = MagicMock()
|
|
author2.display_name = "Max Mustermann"
|
|
song.authors.append(author2)
|
|
# There are occasions where an author appears twice in a song (with different types).
|
|
# We need to make sure that this case works (lp#1313538)
|
|
author3 = MagicMock()
|
|
author3.display_name = "Max Mustermann"
|
|
song.authors.append(author3)
|
|
|
|
# WHEN: An author is missing in the string
|
|
authors_str = "Hans Wurst, Max Mustermann"
|
|
result = self.media_item._authors_match(song, authors_str)
|
|
|
|
# THEN: They should not match
|
|
self.assertFalse(result, "Authors should not match")
|
|
|
|
def build_remote_search_test(self):
|
|
"""
|
|
Test results for the remote search api
|
|
"""
|
|
# GIVEN: A Song and a search a JSON array should be returned.
|
|
mock_song = MagicMock()
|
|
mock_song.id = 123
|
|
mock_song.title = 'My Song'
|
|
mock_song.search_title = 'My Song'
|
|
mock_song.alternate_title = 'My alternative'
|
|
self.media_item.search_entire = MagicMock()
|
|
self.media_item.search_entire.return_value = [mock_song]
|
|
|
|
# WHEN: I process a search
|
|
search_results = self.media_item.search('My Song', False)
|
|
|
|
# THEN: The correct formatted results are returned
|
|
self.assertEqual(search_results, [[123, 'My Song', 'My alternative']])
|