2014-05-13 09:08:46 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-13 13:00:22 +00:00
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
2020-01-01 02:53:08 +00:00
|
|
|
# Copyright (c) 2008-2020 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-05-13 09:08:46 +00:00
|
|
|
"""
|
|
|
|
This module contains tests for the db submodule of the Songs plugin.
|
|
|
|
"""
|
2020-03-08 21:45:42 +00:00
|
|
|
import pytest
|
2014-11-25 11:25:41 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
from tempfile import mkdtemp
|
2014-05-13 09:08:46 +00:00
|
|
|
|
2014-11-25 11:25:41 +00:00
|
|
|
from openlp.core.lib.db import upgrade_db
|
2017-12-28 08:22:55 +00:00
|
|
|
from openlp.plugins.songs.lib import upgrade
|
2018-10-02 04:39:42 +00:00
|
|
|
from openlp.plugins.songs.lib.db import Author, AuthorType, Book, Song
|
2014-11-25 11:25:41 +00:00
|
|
|
from tests.utils.constants import TEST_RESOURCES_PATH
|
2014-05-13 09:08:46 +00:00
|
|
|
|
|
|
|
|
2020-03-08 21:45:42 +00:00
|
|
|
@pytest.yield_fixture()
|
|
|
|
def tmp_folder():
|
|
|
|
t_folder = mkdtemp()
|
|
|
|
yield t_folder
|
|
|
|
shutil.rmtree(t_folder, ignore_errors=True)
|
|
|
|
|
|
|
|
|
|
|
|
def test_add_author():
|
|
|
|
"""
|
|
|
|
Test adding an author to a song
|
|
|
|
"""
|
|
|
|
# GIVEN: A song and an author
|
|
|
|
song = Song()
|
|
|
|
song.authors_songs = []
|
|
|
|
author = Author()
|
|
|
|
author.first_name = "Max"
|
|
|
|
author.last_name = "Mustermann"
|
|
|
|
|
|
|
|
# WHEN: We add an author to the song
|
|
|
|
song.add_author(author)
|
|
|
|
|
|
|
|
# THEN: The author should have been added with author_type=None
|
|
|
|
assert 1 == len(song.authors_songs)
|
|
|
|
assert "Max" == song.authors_songs[0].author.first_name
|
|
|
|
assert "Mustermann" == song.authors_songs[0].author.last_name
|
|
|
|
assert song.authors_songs[0].author_type is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_add_author_with_type():
|
|
|
|
"""
|
|
|
|
Test adding an author with a type specified to a song
|
|
|
|
"""
|
|
|
|
# GIVEN: A song and an author
|
|
|
|
song = Song()
|
|
|
|
song.authors_songs = []
|
|
|
|
author = Author()
|
|
|
|
author.first_name = "Max"
|
|
|
|
author.last_name = "Mustermann"
|
|
|
|
|
|
|
|
# WHEN: We add an author to the song
|
|
|
|
song.add_author(author, AuthorType.Words)
|
|
|
|
|
|
|
|
# THEN: The author should have been added with author_type=None
|
|
|
|
assert 1 == len(song.authors_songs)
|
|
|
|
assert "Max" == song.authors_songs[0].author.first_name
|
|
|
|
assert "Mustermann" == song.authors_songs[0].author.last_name
|
|
|
|
assert AuthorType.Words == song.authors_songs[0].author_type
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_author():
|
|
|
|
"""
|
|
|
|
Test removing an author from a song
|
|
|
|
"""
|
|
|
|
# GIVEN: A song with an author
|
|
|
|
song = Song()
|
|
|
|
song.authors_songs = []
|
|
|
|
author = Author()
|
|
|
|
song.add_author(author)
|
|
|
|
|
|
|
|
# WHEN: We remove the author
|
|
|
|
song.remove_author(author)
|
|
|
|
|
|
|
|
# THEN: It should have been removed
|
|
|
|
assert 0 == len(song.authors_songs)
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_author_with_type():
|
|
|
|
"""
|
|
|
|
Test removing an author with a type specified from a song
|
|
|
|
"""
|
|
|
|
# GIVEN: A song with two authors
|
|
|
|
song = Song()
|
|
|
|
song.authors_songs = []
|
|
|
|
author = Author()
|
|
|
|
song.add_author(author)
|
|
|
|
song.add_author(author, AuthorType.Translation)
|
|
|
|
|
|
|
|
# WHEN: We remove the author with a certain type
|
|
|
|
song.remove_author(author, AuthorType.Translation)
|
|
|
|
|
|
|
|
# THEN: It should have been removed and the other author should still be there
|
|
|
|
assert 1 == len(song.authors_songs)
|
|
|
|
assert song.authors_songs[0].author_type is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_author_type_from_translated_text():
|
|
|
|
"""
|
|
|
|
Test getting an author type from translated text
|
|
|
|
"""
|
|
|
|
# GIVEN: A string with an author type
|
|
|
|
author_type_name = AuthorType.Types[AuthorType.Words]
|
|
|
|
|
|
|
|
# WHEN: We call the method
|
|
|
|
author_type = AuthorType.from_translated_text(author_type_name)
|
|
|
|
|
|
|
|
# THEN: The type should be correct
|
|
|
|
assert author_type == AuthorType.Words
|
|
|
|
|
|
|
|
|
|
|
|
def test_author_get_display_name():
|
|
|
|
"""
|
|
|
|
Test that the display name of an author is correct
|
|
|
|
"""
|
|
|
|
# GIVEN: An author
|
|
|
|
author = Author()
|
|
|
|
author.display_name = "John Doe"
|
|
|
|
|
|
|
|
# WHEN: We call the get_display_name() function
|
|
|
|
display_name = author.get_display_name()
|
|
|
|
|
|
|
|
# THEN: It should return only the name
|
|
|
|
assert "John Doe" == display_name
|
|
|
|
|
|
|
|
|
|
|
|
def test_author_get_display_name_with_type_words():
|
|
|
|
"""
|
|
|
|
Test that the display name of an author with a type is correct (Words)
|
|
|
|
"""
|
|
|
|
# GIVEN: An author
|
|
|
|
author = Author()
|
|
|
|
author.display_name = "John Doe"
|
|
|
|
|
|
|
|
# WHEN: We call the get_display_name() function
|
|
|
|
display_name = author.get_display_name(AuthorType.Words)
|
|
|
|
|
|
|
|
# THEN: It should return the name with the type in brackets
|
|
|
|
assert "John Doe (Words)" == display_name
|
|
|
|
|
|
|
|
|
|
|
|
def test_author_get_display_name_with_type_translation():
|
|
|
|
"""
|
|
|
|
Test that the display name of an author with a type is correct (Translation)
|
|
|
|
"""
|
|
|
|
# GIVEN: An author
|
|
|
|
author = Author()
|
|
|
|
author.display_name = "John Doe"
|
|
|
|
|
|
|
|
# WHEN: We call the get_display_name() function
|
|
|
|
display_name = author.get_display_name(AuthorType.Translation)
|
|
|
|
|
|
|
|
# THEN: It should return the name with the type in brackets
|
|
|
|
assert "John Doe (Translation)" == display_name
|
|
|
|
|
|
|
|
|
|
|
|
def test_add_songbooks():
|
|
|
|
"""
|
|
|
|
Test that adding songbooks to a song works correctly
|
|
|
|
"""
|
|
|
|
# GIVEN: A mocked song and songbook
|
|
|
|
song = Song()
|
|
|
|
song.songbook_entries = []
|
|
|
|
songbook = Book()
|
|
|
|
songbook.name = "Thy Word"
|
|
|
|
|
|
|
|
# WHEN: We add two songbooks to a Song
|
|
|
|
song.add_songbook_entry(songbook, "120")
|
|
|
|
song.add_songbook_entry(songbook, "550A")
|
|
|
|
|
|
|
|
# THEN: The song should have two songbook entries
|
|
|
|
assert len(song.songbook_entries) == 2, 'There should be two Songbook entries.'
|
|
|
|
|
|
|
|
|
|
|
|
def test_upgrade_old_song_db(settings, tmp_folder):
|
|
|
|
"""
|
|
|
|
Test that we can upgrade an old song db to the current schema
|
|
|
|
"""
|
|
|
|
# GIVEN: An old song db
|
|
|
|
old_db_path = os.path.join(TEST_RESOURCES_PATH, "songs", 'songs-1.9.7.sqlite')
|
|
|
|
old_db_tmp_path = os.path.join(tmp_folder, 'songs-1.9.7.sqlite')
|
|
|
|
shutil.copyfile(old_db_path, old_db_tmp_path)
|
|
|
|
db_url = 'sqlite:///' + old_db_tmp_path
|
|
|
|
|
|
|
|
# WHEN: upgrading the db
|
|
|
|
updated_to_version, latest_version = upgrade_db(db_url, upgrade)
|
|
|
|
|
|
|
|
# THEN: the song db should have been upgraded to the latest version
|
|
|
|
assert updated_to_version == latest_version, 'The song DB should have been upgrade to the latest version'
|
|
|
|
|
|
|
|
|
|
|
|
def test_upgrade_invalid_song_db(settings, tmp_folder):
|
|
|
|
"""
|
|
|
|
Test that we can upgrade an invalid song db to the current schema
|
|
|
|
"""
|
|
|
|
# GIVEN: A song db with invalid version
|
|
|
|
invalid_db_path = os.path.join(TEST_RESOURCES_PATH, "songs", 'songs-2.2-invalid.sqlite')
|
|
|
|
invalid_db_tmp_path = os.path.join(tmp_folder, 'songs-2.2-invalid.sqlite')
|
|
|
|
shutil.copyfile(invalid_db_path, invalid_db_tmp_path)
|
|
|
|
db_url = 'sqlite:///' + invalid_db_tmp_path
|
|
|
|
|
|
|
|
# WHEN: upgrading the db
|
|
|
|
updated_to_version, latest_version = upgrade_db(db_url, upgrade)
|
|
|
|
|
|
|
|
# THEN: the song db should have been upgraded to the latest version without errors
|
|
|
|
assert updated_to_version == latest_version, 'The song DB should have been upgrade to the latest version'
|