2013-09-22 21:11:03 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-13 13:00:22 +00:00
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
2022-02-01 10:10:57 +00:00
|
|
|
# Copyright (c) 2008-2022 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/>. #
|
|
|
|
##########################################################################
|
2017-12-28 08:31:35 +00:00
|
|
|
import json
|
2013-09-22 21:11:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def assert_length(expected, iterable, msg=None):
|
|
|
|
if len(iterable) != expected:
|
|
|
|
if not msg:
|
2016-04-23 00:40:59 +00:00
|
|
|
msg = 'Expected length {expected}, got {got}'.format(expected=expected, got=len(iterable))
|
2013-09-22 21:11:03 +00:00
|
|
|
raise AssertionError(msg)
|
|
|
|
|
|
|
|
|
|
|
|
def convert_file_service_item(test_path, name, row=0):
|
2018-12-01 05:52:49 +00:00
|
|
|
service_file = test_path / name
|
|
|
|
with service_file.open() as open_file:
|
|
|
|
try:
|
|
|
|
items = json.load(open_file)
|
|
|
|
first_line = items[row]
|
|
|
|
except OSError:
|
|
|
|
first_line = ''
|
2013-09-22 21:11:03 +00:00
|
|
|
return first_line
|
2017-12-22 22:21:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def load_external_result_data(file_path):
|
|
|
|
"""
|
|
|
|
A method to load and return an object containing the song data from an external file.
|
|
|
|
|
2019-05-22 06:47:00 +00:00
|
|
|
:param pathlib.Path file_path: The path of the file to load
|
2017-12-22 22:21:38 +00:00
|
|
|
"""
|
2017-12-23 23:45:10 +00:00
|
|
|
return json.loads(file_path.read_bytes().decode())
|