openlp_api_tester/test_api/runner.py

49 lines
2.3 KiB
Python
Raw 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:
"""
2020-06-20 10:27:43 +00:00
print_text('OpenLP - API Test Runner V0_2')
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:
print_error('OpenLP is not running ')
return
else:
print_ok(f'OpenLP is running on port (http) {op_http_port}')
_, op_ws_port = check_for_openlp('ws')
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()