openlp_api_tester/test_api/runner.py

52 lines
2.4 KiB
Python
Raw Permalink Normal View History

2020-06-20 07:53:44 +00:00
# -*- coding: utf-8 -*-
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
2021-01-02 12:05:02 +00:00
# Copyright (c) 2008-2021 OpenLP Developers #
2020-06-20 07:53:44 +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/>. #
##########################################################################
from test_api.apitest.logger import print_text, print_error, print_ok
from test_api.apitest.zero import check_for_openlp
from test_api.apitest.runner import RunTestsController
def start() -> None:
"""
Instantiate and run the tests.
:return:
"""
2021-08-21 15:16:29 +00:00
print_text('OpenLP - API Test Runner V0_3')
2020-06-20 07:53:44 +00:00
print_text('Check OpenLP is running')
op_address, op_http_port = check_for_openlp('http')
if not op_http_port:
2022-02-12 17:02:13 +00:00
print_error('OpenLP is not found - defaulting to 4316')
op_http_port = 4316
2020-06-20 07:53:44 +00:00
else:
print_ok(f'OpenLP is running on port (http) {op_http_port}')
_, op_ws_port = check_for_openlp('ws')
2022-02-12 17:02:13 +00:00
if not op_ws_port:
print_error('OpenLP is not found - defaulting to 4317')
op_ws_port = 4317
2020-06-20 07:53:44 +00:00
print_ok(f'OpenLP is running network Address {op_address}')
print_ok(f'OpenLP is running on port (ws) {op_ws_port}')
rtc = RunTestsController(op_address, op_http_port, op_ws_port)
2020-06-20 10:27:43 +00:00
rtc.connect()
2020-06-26 13:57:22 +00:00
rtc.read_command_file()
print_ok('Finished running tests')
2020-06-20 07:53:44 +00:00
if __name__ == '__main__':
start()