openlp/tests/openlp_plugins/bibles/test_lib_manager.py

86 lines
3.7 KiB
Python
Raw Permalink Normal View History

2014-03-11 19:01:09 +00:00
# -*- coding: utf-8 -*-
2019-04-13 13:00:22 +00:00
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
2024-01-05 17:18:59 +00:00
# Copyright (c) 2008-2024 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-03-11 19:01:09 +00:00
"""
Functional tests to test the Bible Manager class and related methods.
"""
2020-03-19 20:04:28 +00:00
import pytest
from unittest.mock import MagicMock, patch
2014-03-11 19:01:09 +00:00
2017-10-07 07:05:07 +00:00
from openlp.core.common.registry import Registry
from openlp.plugins.bibles.lib.manager import BibleManager
2017-12-28 08:27:44 +00:00
from tests.utils.constants import TEST_RESOURCES_PATH
2014-03-11 19:01:09 +00:00
2020-03-19 20:04:28 +00:00
@pytest.fixture()
def manager(settings):
Registry().register('service_list', MagicMock())
with patch('openlp.core.common.applocation.AppLocation.get_section_data_path') as mocked_get_data_path, \
patch('openlp.core.common.applocation.AppLocation.get_files') as mocked_get_files:
# GIVEN: A mocked out AppLocation.get_files()
mocked_get_files.return_value = ["tests.sqlite"]
mocked_get_data_path.return_value = TEST_RESOURCES_PATH + "/bibles"
return BibleManager(MagicMock())
2014-03-11 19:01:09 +00:00
2020-03-19 20:04:28 +00:00
def test_get_books(manager):
"""
Test the get_books method
"""
# GIVEN given a bible in the bible manager
# WHEN asking for the books of the bible
books = manager.get_books('tests')
# THEN a list of books should be returned
assert 66 == len(books), 'There should be 66 books in the bible'
2014-03-11 19:01:09 +00:00
2020-03-19 20:04:28 +00:00
def test_get_book_by_id(manager):
"""
Test the get_book_by_id method
"""
# GIVEN given a bible in the bible manager
# WHEN asking for the book of the bible
book = manager.get_book_by_id('tests', 54)
# THEN a book should be returned
assert '1 Timothy' == book.name, '1 Timothy should have been returned from the bible'
2014-03-11 19:01:09 +00:00
2020-03-19 20:04:28 +00:00
def test_get_chapter_count(manager):
"""
Test the get_chapter_count method
"""
# GIVEN given a bible in the bible manager
# WHEN asking for the chapters in a book of the bible
book = manager.get_book_by_id('tests', 54)
chapter = manager.get_chapter_count('tests', book)
# THEN the chapter count should be returned
assert 6 == chapter, '1 Timothy should have 6 chapters returned from the bible'
def test_get_verse_count_by_book_ref_id(manager):
"""
Test the get_verse_count_by_book_ref_id method
"""
# GIVEN given a bible in the bible manager
# WHEN asking for the number of verses in a book of the bible
verses = manager.get_verse_count_by_book_ref_id('tests', 54, 3)
# THEN the chapter count should be returned
assert 16 == verses, '1 Timothy v3 should have 16 verses returned from the bible'