Module src.runtests.uicheck
Expand source code
from onionrutils import localcommand
def check_ui(test_manager):
endpoints = ['/', '/mail/', '/friends/', '/board/']
for point in endpoints:
result = localcommand.local_command(point)
if not result: raise ValueError
result = result.lower()
if 'script' not in result:
raise ValueError(f'uicheck failed on {point}')
Functions
def check_ui(test_manager)
-
Expand source code
def check_ui(test_manager): endpoints = ['/', '/mail/', '/friends/', '/board/'] for point in endpoints: result = localcommand.local_command(point) if not result: raise ValueError result = result.lower() if 'script' not in result: raise ValueError(f'uicheck failed on {point}')