2019-12-19 10:34:19 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
|
|
|
|
|
|
|
Command to tell daemon to do run time tests
|
|
|
|
"""
|
2020-01-06 12:06:27 +00:00
|
|
|
from gevent import spawn
|
|
|
|
|
|
|
|
from onionrutils import localcommand
|
2019-12-19 10:34:19 +00:00
|
|
|
"""
|
2022-03-18 00:56:31 +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/>.
|
2019-12-19 10:34:19 +00:00
|
|
|
"""
|
|
|
|
|
2019-09-26 07:43:03 +00:00
|
|
|
|
|
|
|
def do_runtime_test():
|
2019-12-19 10:34:19 +00:00
|
|
|
"""Send runtime test daemon queue command."""
|
2020-01-06 12:06:27 +00:00
|
|
|
spawn(
|
|
|
|
localcommand.local_command,
|
2020-01-30 04:56:47 +00:00
|
|
|
f'daemon-event/test_runtime',
|
2020-01-06 12:06:27 +00:00
|
|
|
post=True,
|
|
|
|
is_json=True,
|
2020-07-17 18:49:18 +00:00
|
|
|
post_data={},
|
|
|
|
max_wait=300
|
2020-01-30 04:56:47 +00:00
|
|
|
).get(300)
|
2019-09-26 07:43:03 +00:00
|
|
|
|
2019-12-19 10:34:19 +00:00
|
|
|
|
|
|
|
do_runtime_test.onionr_help = "If Onionr is running, " # type: ignore
|
|
|
|
do_runtime_test.onionr_help += "run runtime tests (check logs)" # type: ignore
|