blob: 20f3d2f171928477e4b188803203eb0ef7eb4550 [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
import time
from ping_file_path import ping_filepath
sys.stdout.write('Content-Type: text/html\r\n\r\n')
while not os.path.isfile(ping_filepath):
time.sleep(0.01)
sys.stdout.write(
'<html><body>\n'
'Ping sent successfully'
)
ping_file = open(ping_filepath, 'r')
for line in ping_file.readlines():
sys.stdout.write('<br>{}'.format(line.strip()))
ping_file.close()
if os.path.isfile(ping_filepath):
os.remove(ping_filepath)
sys.stdout.write(
'<script>'
'if (window.testRunner) {{\n'
' var didLoadAppInitiatedRequest = testRunner.didLoadAppInitiatedRequest();\n'
' var didLoadNonAppInitiatedRequest = testRunner.didLoadNonAppInitiatedRequest();\n'
' if (didLoadNonAppInitiatedRequest) {{\n'
' console.log("FAIL did load non app initiated request");\n'
' testRunner.notifyDone();\n'
' }}\n'
' if (!didLoadAppInitiatedRequest) {{\n'
' console.log("FAIL did not load app initiated request");\n'
' testRunner.notifyDone();\n'
' }}\n'
' console.log("PASS successfully loaded only app initiated requests");\n'
' testRunner.notifyDone();\n'
'}}\n'
'</script>'
'</body></html>'
)