2019-09-26 07:43:03 +00:00
|
|
|
from onionrutils import localcommand
|
|
|
|
def check_ui(test_manager):
|
2019-09-27 15:42:35 +00:00
|
|
|
endpoints = ['/', '/mail/', '/friends/', '/board/']
|
|
|
|
for point in endpoints:
|
|
|
|
result = localcommand.local_command(point)
|
|
|
|
if not result: raise ValueError
|
|
|
|
result = result.lower()
|
|
|
|
if not 'onionr' in result and not 'Onionr' in result:
|
2019-09-27 23:04:49 +00:00
|
|
|
raise ValueError
|