openlp/tests/functional/openlp_plugins/bibles/test_csvimport.py

365 lines
17 KiB
Python
Raw Normal View History

2015-02-13 23:01:07 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
2019-04-13 13:00:22 +00:00
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
# Copyright (c) 2008-2019 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, 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/>. #
##########################################################################
2015-02-13 23:01:07 +00:00
"""
This module contains tests for the CSV Bible importer.
"""
2016-08-08 20:02:18 +00:00
import csv
from collections import namedtuple
from pathlib import Path
2015-02-13 23:01:07 +00:00
from unittest import TestCase
from unittest.mock import MagicMock, PropertyMock, call, patch
2015-02-13 23:01:07 +00:00
2016-08-08 20:02:18 +00:00
from openlp.core.lib.exceptions import ValidationError
from openlp.plugins.bibles.lib.bibleimport import BibleImport
from openlp.plugins.bibles.lib.importers.csvbible import Book, CSVBible, Verse
2017-12-22 22:21:38 +00:00
from tests.utils import load_external_result_data
2017-12-22 21:20:49 +00:00
from tests.utils.constants import RESOURCE_PATH
2016-08-08 20:02:18 +00:00
2018-10-02 04:39:42 +00:00
2017-12-22 21:20:49 +00:00
TEST_PATH = RESOURCE_PATH / 'bibles'
2015-02-13 23:01:07 +00:00
class TestCSVImport(TestCase):
"""
Test the functions in the :mod:`csvimport` module.
"""
def setUp(self):
self.manager_patcher = patch('openlp.plugins.bibles.lib.db.Manager')
2016-08-08 20:02:18 +00:00
self.addCleanup(self.manager_patcher.stop)
2015-02-13 23:01:07 +00:00
self.manager_patcher.start()
self.registry_patcher = patch('openlp.plugins.bibles.lib.bibleimport.Registry')
2016-08-14 10:00:27 +00:00
self.addCleanup(self.registry_patcher.stop)
2016-08-08 20:02:18 +00:00
self.registry_patcher.start()
2015-02-13 23:01:07 +00:00
2016-05-31 21:40:13 +00:00
def test_create_importer(self):
2015-02-13 23:01:07 +00:00
"""
Test creating an instance of the CSV file importer
"""
# GIVEN: A mocked out "manager"
mocked_manager = MagicMock()
# WHEN: An importer object is created
2017-10-10 19:09:20 +00:00
importer = \
CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'), verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
# THEN: The importer should be an instance of BibleImport
2017-12-22 15:50:45 +00:00
assert isinstance(importer, BibleImport)
assert importer.books_path == Path('books.csv')
assert importer.verses_path == Path('verse.csv')
2016-08-08 20:02:18 +00:00
def test_book_namedtuple(self):
2016-08-08 20:02:18 +00:00
"""
Test that the Book namedtuple is created as expected
"""
# GIVEN: The Book namedtuple
# WHEN: Creating an instance of Book
result = Book('id', 'testament_id', 'name', 'abbreviation')
# THEN: The attributes should match up with the data we used
2017-12-22 15:50:45 +00:00
assert result.id == 'id'
assert result.testament_id == 'testament_id'
assert result.name == 'name'
assert result.abbreviation == 'abbreviation'
2016-08-08 20:02:18 +00:00
def test_verse_namedtuple(self):
2016-08-08 20:02:18 +00:00
"""
Test that the Verse namedtuple is created as expected
"""
# GIVEN: The Verse namedtuple
# WHEN: Creating an instance of Verse
result = Verse('book_id_name', 'chapter_number', 'number', 'text')
# THEN: The attributes should match up with the data we used
2017-12-22 15:50:45 +00:00
assert result.book_id_name == 'book_id_name'
assert result.chapter_number == 'chapter_number'
assert result.number == 'number'
assert result.text == 'text'
2016-08-08 20:02:18 +00:00
def test_get_book_name_id(self):
2016-08-08 20:02:18 +00:00
"""
Test that get_book_name() returns the correct book when called with an id
"""
# GIVEN: A dictionary of books with their id as the keys
books = {1: 'Book 1', 2: 'Book 2', 3: 'Book 3'}
# WHEN: Calling get_book_name() and the name is an integer represented as a string
test_data = [['1', 'Book 1'], ['2', 'Book 2'], ['3', 'Book 3']]
for name, expected_result in test_data:
actual_result = CSVBible.get_book_name(name, books)
# THEN: get_book_name() should return the book name associated with that id from the books dictionary
2017-12-22 15:50:45 +00:00
assert actual_result == expected_result
2016-08-08 20:02:18 +00:00
def test_get_book_name(self):
2016-08-08 20:02:18 +00:00
"""
Test that get_book_name() returns the name when called with a non integer value
"""
# GIVEN: A dictionary of books with their id as the keys
books = {1: 'Book 1', 2: 'Book 2', 3: 'Book 3'}
# WHEN: Calling get_book_name() and the name is not an integer represented as a string
test_data = [['Book 4', 'Book 4'], ['Book 5', 'Book 5'], ['Book 6', 'Book 6']]
for name, expected_result in test_data:
actual_result = CSVBible.get_book_name(name, books)
# THEN: get_book_name() should return the input
2017-12-22 15:50:45 +00:00
assert actual_result == expected_result
2016-08-08 20:02:18 +00:00
def test_parse_csv_file(self):
2016-08-08 20:02:18 +00:00
"""
Test the parse_csv_file() with sample data
"""
# GIVEN: A mocked csv.reader which returns an iterator with test data
test_data = [['1', 'Line 1', 'Data 1'], ['2', 'Line 2', 'Data 2'], ['3', 'Line 3', 'Data 3']]
TestTuple = namedtuple('TestTuple', 'line_no line_description line_data')
mocked_csv_file = MagicMock()
mocked_enter_file = MagicMock()
mocked_csv_file.open.return_value.__enter__.return_value = mocked_enter_file
2016-08-08 20:02:18 +00:00
2019-05-04 12:05:53 +00:00
with patch('openlp.plugins.bibles.lib.importers.csvbible.get_file_encoding', return_value='utf-8'), \
2016-08-09 20:56:04 +00:00
patch('openlp.plugins.bibles.lib.importers.csvbible.csv.reader',
return_value=iter(test_data)) as mocked_reader:
2016-08-08 20:02:18 +00:00
# WHEN: Calling the CSVBible parse_csv_file method with a file name and TestTuple
result = CSVBible.parse_csv_file(mocked_csv_file, TestTuple)
2016-08-08 20:02:18 +00:00
# THEN: A list of TestTuple instances with the parsed data should be returned
2017-12-22 15:50:45 +00:00
assert result == [TestTuple('1', 'Line 1', 'Data 1'), TestTuple('2', 'Line 2', 'Data 2'),
TestTuple('3', 'Line 3', 'Data 3')]
mocked_csv_file.open.assert_called_once_with('r', encoding='utf-8', newline='')
mocked_reader.assert_called_once_with(mocked_enter_file, delimiter=',', quotechar='"')
2016-08-08 20:02:18 +00:00
def test_parse_csv_file_oserror(self):
2016-08-08 20:02:18 +00:00
"""
Test the parse_csv_file() handles an OSError correctly
"""
# GIVEN: Mocked a mocked open object which raises an OSError
mocked_csv_file = MagicMock()
mocked_csv_file.__str__.return_value = 'file.csv'
mocked_csv_file.open.side_effect = OSError()
with patch('openlp.plugins.bibles.lib.importers.csvbible.get_file_encoding',
return_value={'encoding': 'utf-8', 'confidence': 0.99}):
2016-08-08 20:02:18 +00:00
# WHEN: Calling CSVBible.parse_csv_file
# THEN: A ValidationError should be raised
with self.assertRaises(ValidationError) as context:
CSVBible.parse_csv_file(mocked_csv_file, None)
2017-12-22 15:50:45 +00:00
assert context.exception.msg == 'Parsing "file.csv" failed'
2016-08-08 20:02:18 +00:00
def test_parse_csv_file_csverror(self):
2016-08-08 20:02:18 +00:00
"""
Test the parse_csv_file() handles an csv.Error correctly
"""
# GIVEN: Mocked a csv.reader which raises an csv.Error
mocked_csv_file = MagicMock()
mocked_csv_file.__str__.return_value = 'file.csv'
with patch('openlp.plugins.bibles.lib.importers.csvbible.get_file_encoding',
2016-08-08 20:02:18 +00:00
return_value={'encoding': 'utf-8', 'confidence': 0.99}),\
patch('openlp.plugins.bibles.lib.importers.csvbible.csv.reader', side_effect=csv.Error):
2016-08-08 20:02:18 +00:00
# WHEN: Calling CSVBible.parse_csv_file
# THEN: A ValidationError should be raised
with self.assertRaises(ValidationError) as context:
CSVBible.parse_csv_file(mocked_csv_file, None)
2017-12-22 15:50:45 +00:00
assert context.exception.msg == 'Parsing "file.csv" failed'
2016-08-08 20:02:18 +00:00
def test_process_books_stopped_import(self):
2016-08-08 20:02:18 +00:00
"""
Test process books when the import is stopped
"""
# GIVEN: An instance of CSVBible with the stop_import_flag set to True
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
type(importer).application = PropertyMock()
importer.stop_import_flag = True
importer.wizard = MagicMock()
# WHEN: Calling process_books
result = importer.process_books(['Book 1'])
# THEN: increment_progress_bar should not be called and the return value should be an empty dictionary
2017-12-22 15:50:45 +00:00
assert importer.wizard.increment_progress_bar.called is False
assert result == {}
2016-08-08 20:02:18 +00:00
def test_process_books(self):
2016-08-08 20:02:18 +00:00
"""
Test process books when it completes successfully
"""
# GIVEN: An instance of CSVBible with the stop_import_flag set to False, and some sample data
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'),\
patch('openlp.plugins.bibles.lib.importers.csvbible.translate'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
importer.find_and_create_book = MagicMock()
importer.language_id = 10
importer.stop_import_flag = False
importer.wizard = MagicMock()
books = [Book('1', '1', '1. Mosebog', '1Mos'), Book('2', '1', '2. Mosebog', '2Mos')]
# WHEN: Calling process_books
result = importer.process_books(books)
# THEN: translate and find_and_create_book should have been called with both book names.
# The returned data should be a dictionary with both song's id and names.
2017-12-22 15:50:45 +00:00
assert importer.find_and_create_book.mock_calls == \
[call('1. Mosebog', 2, 10), call('2. Mosebog', 2, 10)]
assert result == {1: '1. Mosebog', 2: '2. Mosebog'}
2016-08-08 20:02:18 +00:00
def test_process_verses_stopped_import(self):
2016-08-08 20:02:18 +00:00
"""
Test process_verses when the import is stopped
"""
# GIVEN: An instance of CSVBible with the stop_import_flag set to True
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
importer.get_book_name = MagicMock()
importer.session = MagicMock()
importer.stop_import_flag = True
importer.wizard = MagicMock()
# WHEN: Calling process_verses
result = importer.process_verses(['Dummy Verse'], [])
2016-08-08 20:02:18 +00:00
# THEN: get_book_name should not be called and the return value should be None
2017-12-22 15:50:45 +00:00
assert importer.get_book_name.called is False
assert result is None
2016-08-08 20:02:18 +00:00
def test_process_verses_successful(self):
2016-08-08 20:02:18 +00:00
"""
Test process_verses when the import is successful
"""
# GIVEN: An instance of CSVBible with the application and wizard attributes mocked out, and some test data.
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'),\
patch('openlp.plugins.bibles.lib.importers.csvbible.translate'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
importer.create_verse = MagicMock()
importer.get_book = MagicMock(return_value=Book('1', '1', '1. Mosebog', '1Mos'))
importer.get_book_name = MagicMock(return_value='1. Mosebog')
importer.session = MagicMock()
importer.stop_import_flag = False
importer.wizard = MagicMock()
verses = [Verse(1, 1, 1, 'I Begyndelsen skabte Gud Himmelen og Jorden.'),
Verse(1, 1, 2, 'Og Jorden var øde og tom, og der var Mørke over Verdensdybet. '
'Men Guds Ånd svævede over Vandene.')]
books = {1: '1. Mosebog'}
# WHEN: Calling process_verses
importer.process_verses(verses, books)
# THEN: create_verse is called with the test data
2017-12-22 15:50:45 +00:00
assert importer.get_book_name.mock_calls == [call(1, books), call(1, books)]
2016-08-08 20:02:18 +00:00
importer.get_book.assert_called_once_with('1. Mosebog')
2017-12-22 15:50:45 +00:00
assert importer.session.commit.call_count == 2
assert importer.create_verse.mock_calls == \
[call('1', 1, 1, 'I Begyndelsen skabte Gud Himmelen og Jorden.'),
call('1', 1, 2, 'Og Jorden var øde og tom, og der var Mørke over Verdensdybet. '
'Men Guds Ånd svævede over Vandene.')]
2016-08-08 20:02:18 +00:00
def test_do_import_invalid_language_id(self):
2016-08-08 20:02:18 +00:00
"""
Test do_import when the user cancels the language selection dialog box
"""
# GIVEN: An instance of CSVBible and a mocked get_language which simulates the user cancelling the language box
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verse.csv'))
2016-08-08 20:02:18 +00:00
importer.get_language = MagicMock(return_value=None)
# WHEN: Calling do_import
result = importer.do_import('Bible Name')
# THEN: The False should be returned.
2016-08-08 20:02:18 +00:00
importer.get_language.assert_called_once_with('Bible Name')
2017-12-22 15:50:45 +00:00
assert result is False
2016-08-08 20:02:18 +00:00
def test_do_import_success(self):
2016-08-08 20:02:18 +00:00
"""
Test do_import when the import succeeds
"""
# GIVEN: An instance of CSVBible
mocked_manager = MagicMock()
with patch('openlp.plugins.bibles.lib.db.BibleDB._setup'):
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=Path('books.csv'),
verse_path=Path('verses.csv'))
2016-08-08 20:02:18 +00:00
importer.get_language = MagicMock(return_value=10)
importer.parse_csv_file = MagicMock(side_effect=[['Book 1'], ['Verse 1']])
importer.process_books = MagicMock(return_value=['Book 1'])
importer.process_verses = MagicMock(return_value=['Verse 1'])
importer.session = MagicMock()
importer.stop_import_flag = False
importer.wizard = MagicMock()
# WHEN: Calling do_import
result = importer.do_import('Bible Name')
2015-02-13 23:01:07 +00:00
# THEN: parse_csv_file should be called twice,
2016-08-08 20:02:18 +00:00
# and True should be returned.
2017-12-22 15:50:45 +00:00
assert importer.parse_csv_file.mock_calls == \
[call(Path('books.csv'), Book), call(Path('verses.csv'), Verse)]
2016-08-08 20:02:18 +00:00
importer.process_books.assert_called_once_with(['Book 1'])
importer.process_verses.assert_called_once_with(['Verse 1'], ['Book 1'])
2017-12-22 15:50:45 +00:00
assert result is True
2015-02-13 23:01:07 +00:00
def test_file_import(self):
2015-02-13 23:01:07 +00:00
"""
Test the actual import of CSV Bible file
"""
# GIVEN: Test files with a mocked out "manager", "import_wizard", and mocked functions
# get_book_ref_id_by_name, create_verse, create_book, session and get_language.
2017-12-22 22:21:38 +00:00
test_data = load_external_result_data(TEST_PATH / 'dk1933.json')
2017-12-22 21:20:49 +00:00
books_file = TEST_PATH / 'dk1933-books.csv'
verses_file = TEST_PATH / 'dk1933-verses.csv'
with patch('openlp.plugins.bibles.lib.importers.csvbible.CSVBible.application'):
2015-02-13 23:01:07 +00:00
mocked_manager = MagicMock()
mocked_import_wizard = MagicMock()
2017-10-10 19:09:20 +00:00
importer = CSVBible(mocked_manager, path='.', name='.', books_path=books_file, verse_path=verses_file)
2015-02-13 23:01:07 +00:00
importer.wizard = mocked_import_wizard
importer.get_book_ref_id_by_name = MagicMock()
importer.create_verse = MagicMock()
importer.create_book = MagicMock()
importer.session = MagicMock()
importer.get_language = MagicMock()
importer.get_language.return_value = 'Danish'
importer.get_book = MagicMock()
# WHEN: Importing bible file
importer.do_import()
# THEN: The create_verse() method should have been called with each verse in the file.
2017-12-22 15:50:45 +00:00
assert importer.create_verse.called is True
2015-02-13 23:01:07 +00:00
for verse_tag, verse_text in test_data['verses']:
2016-09-02 14:23:20 +00:00
importer.create_verse.assert_any_call(importer.get_book().id, 1, verse_tag, verse_text)
2015-02-13 23:01:07 +00:00
importer.create_book.assert_any_call('1. Mosebog', importer.get_book_ref_id_by_name(), 1)
importer.create_book.assert_any_call('1. Krønikebog', importer.get_book_ref_id_by_name(), 1)