2018-03-30 14:51:13 +00:00
|
|
|
"""
|
|
|
|
Various common utilities for testing.
|
|
|
|
"""
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
import atexit
|
|
|
|
import multiprocessing
|
|
|
|
import os
|
2018-03-30 14:51:13 +00:00
|
|
|
import pathlib
|
2018-07-09 21:15:04 +00:00
|
|
|
import queue
|
|
|
|
import sys
|
2018-03-30 14:51:13 +00:00
|
|
|
|
2018-04-05 22:07:33 +00:00
|
|
|
try:
|
|
|
|
import pytest
|
|
|
|
except ImportError:
|
|
|
|
pytest = None
|
2018-03-30 14:51:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST_PATH = pathlib.Path(__file__).parents[0].resolve()
|
|
|
|
BUILD_PATH = TEST_PATH / '..' / 'build'
|
|
|
|
|
|
|
|
|
|
|
|
class PyodideInited:
|
|
|
|
def __call__(self, driver):
|
2018-05-04 17:09:32 +00:00
|
|
|
inited = driver.execute_script(
|
|
|
|
"return window.pyodide && window.pyodide.runPython")
|
2018-03-30 14:51:13 +00:00
|
|
|
return inited is not None
|
|
|
|
|
|
|
|
|
2018-05-04 17:09:32 +00:00
|
|
|
class PackageLoaded:
|
|
|
|
def __call__(self, driver):
|
|
|
|
inited = driver.execute_script(
|
|
|
|
"return window.done")
|
|
|
|
return bool(inited)
|
|
|
|
|
|
|
|
|
2018-03-30 14:51:13 +00:00
|
|
|
class SeleniumWrapper:
|
|
|
|
def __init__(self):
|
|
|
|
from selenium.webdriver.support.wait import WebDriverWait
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
driver = self.get_driver()
|
2018-03-30 14:51:13 +00:00
|
|
|
wait = WebDriverWait(driver, timeout=20)
|
2018-07-09 21:15:04 +00:00
|
|
|
driver.get(f'http://127.0.0.1:{PORT}/test.html')
|
2018-03-30 14:51:13 +00:00
|
|
|
wait.until(PyodideInited())
|
2018-05-04 17:09:32 +00:00
|
|
|
self.wait = wait
|
2018-03-30 14:51:13 +00:00
|
|
|
self.driver = driver
|
|
|
|
|
|
|
|
@property
|
|
|
|
def logs(self):
|
|
|
|
return self.driver.execute_script("return window.logs")
|
|
|
|
|
|
|
|
def run(self, code):
|
2018-05-04 17:09:32 +00:00
|
|
|
return self.run_js(
|
2018-03-30 14:51:13 +00:00
|
|
|
'return pyodide.runPython({!r})'.format(code))
|
|
|
|
|
2018-05-04 17:09:32 +00:00
|
|
|
def run_js(self, code):
|
|
|
|
return self.driver.execute_script(code)
|
|
|
|
|
|
|
|
def load_package(self, packages):
|
|
|
|
self.run_js(
|
2018-06-21 14:14:25 +00:00
|
|
|
'window.done = false\n' +
|
|
|
|
'pyodide.loadPackage({!r})'.format(packages) +
|
|
|
|
'.then(function() { window.done = true; })')
|
2018-05-04 17:09:32 +00:00
|
|
|
self.wait.until(PackageLoaded())
|
|
|
|
|
2018-03-30 14:51:13 +00:00
|
|
|
@property
|
|
|
|
def urls(self):
|
|
|
|
for handle in self.driver.window_handles:
|
|
|
|
self.driver.switch_to.window(handle)
|
|
|
|
yield self.driver.current_url
|
|
|
|
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
class FirefoxWrapper(SeleniumWrapper):
|
|
|
|
def get_driver(self):
|
|
|
|
from selenium.webdriver import Firefox
|
|
|
|
from selenium.webdriver.firefox.options import Options
|
2018-07-10 00:59:03 +00:00
|
|
|
from selenium.common.exceptions import JavascriptException
|
2018-07-09 19:09:49 +00:00
|
|
|
|
|
|
|
options = Options()
|
|
|
|
options.add_argument('-headless')
|
2018-07-10 00:59:03 +00:00
|
|
|
|
|
|
|
self.JavascriptException = JavascriptException
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
return Firefox(
|
|
|
|
executable_path='geckodriver', firefox_options=options)
|
|
|
|
|
|
|
|
|
|
|
|
class ChromeWrapper(SeleniumWrapper):
|
|
|
|
def get_driver(self):
|
|
|
|
from selenium.webdriver import Chrome
|
|
|
|
from selenium.webdriver.chrome.options import Options
|
2018-07-10 00:59:03 +00:00
|
|
|
from selenium.common.exceptions import WebDriverException
|
2018-07-09 19:09:49 +00:00
|
|
|
|
|
|
|
options = Options()
|
|
|
|
options.add_argument('--headless')
|
2018-07-10 00:59:03 +00:00
|
|
|
|
|
|
|
self.JavascriptException = WebDriverException
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
return Chrome(chrome_options=options)
|
|
|
|
|
|
|
|
|
2018-04-05 22:07:33 +00:00
|
|
|
if pytest is not None:
|
2018-07-09 19:09:49 +00:00
|
|
|
@pytest.fixture(params=['firefox', 'chrome'])
|
|
|
|
def selenium(request):
|
|
|
|
if request.param == 'firefox':
|
|
|
|
cls = FirefoxWrapper
|
|
|
|
elif request.param == 'chrome':
|
|
|
|
cls = ChromeWrapper
|
|
|
|
selenium = cls()
|
2018-04-20 13:52:54 +00:00
|
|
|
try:
|
|
|
|
yield selenium
|
|
|
|
finally:
|
2018-05-23 11:23:49 +00:00
|
|
|
print('\n'.join(str(x) for x in selenium.logs))
|
2018-04-20 13:52:54 +00:00
|
|
|
selenium.driver.quit()
|
2018-07-09 19:09:49 +00:00
|
|
|
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
PORT = 0
|
|
|
|
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
def spawn_web_server():
|
2018-07-09 21:15:04 +00:00
|
|
|
global PORT
|
|
|
|
|
2018-07-09 19:09:49 +00:00
|
|
|
print("Spawning webserver...")
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
q = multiprocessing.Queue()
|
|
|
|
p = multiprocessing.Process(target=run_web_server, args=(q,))
|
2018-07-09 19:09:49 +00:00
|
|
|
|
|
|
|
def shutdown_webserver():
|
2018-07-09 21:15:04 +00:00
|
|
|
q.put("TERMINATE")
|
|
|
|
p.join()
|
2018-07-09 19:09:49 +00:00
|
|
|
atexit.register(shutdown_webserver)
|
|
|
|
|
|
|
|
p.start()
|
2018-07-09 21:15:04 +00:00
|
|
|
PORT = q.get()
|
2018-07-09 19:09:49 +00:00
|
|
|
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
def run_web_server(q):
|
2018-07-09 19:09:49 +00:00
|
|
|
import http.server
|
|
|
|
import socketserver
|
|
|
|
|
|
|
|
print("Running webserver...")
|
|
|
|
|
|
|
|
os.chdir(BUILD_PATH)
|
|
|
|
Handler = http.server.SimpleHTTPRequestHandler
|
|
|
|
Handler.extensions_map['.wasm'] = 'application/wasm'
|
|
|
|
|
|
|
|
def dummy_log(*args, **kwargs):
|
|
|
|
pass
|
|
|
|
Handler.log_message = dummy_log
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
with socketserver.TCPServer(("", 0), Handler) as httpd:
|
|
|
|
host, port = httpd.server_address
|
|
|
|
print("serving at port", port)
|
|
|
|
q.put(port)
|
|
|
|
|
|
|
|
def service_actions():
|
|
|
|
try:
|
|
|
|
if q.get(False) == "TERMINATE":
|
|
|
|
sys.exit(0)
|
|
|
|
httpd.shutdown()
|
|
|
|
except queue.Empty:
|
|
|
|
pass
|
|
|
|
|
|
|
|
httpd.service_actions = service_actions
|
2018-07-09 19:09:49 +00:00
|
|
|
httpd.serve_forever()
|
|
|
|
|
|
|
|
|
|
|
|
if multiprocessing.current_process().name == 'MainProcess':
|
|
|
|
spawn_web_server()
|