mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
This PR re-enables tests on `worker`s. Highlights: * by default, each test is run twice: the main thread version uses `<script type="py">`, the worker version automatically turn the tags into `<script type="py" worker>` * you can tweak the settings per-class by using the `@with_execution_thread` decorator. In particular, `@with_execution_thread(None)` is for those tests which don't care about it (e.g., `test_py_config.py`) * inside each class, there might be some test which should be run only in the main thread (because it doesn't make sense to test it in a worker). For those, I introduced the `@only_main` decorator * we might introduce `@only_worker` in the future, if needed * `@skip_worker` is for those tests which currently pass on main but not on workers. These are meant to be temporary, and eventually they should all be fixed During the process, I tweaked/improved/fixed/deleted some of the existing tests. Some of them were at risk of being flaky and I made them more robust, others depended on some very precise implementation detail, and I made them more generic (for example, `test_image_renders_correctly` relied on pillow to render an image with a very specific string of bytes, and it broke due to the recent upgrade to pyodide 0.24.1) I also renamed all the skip messages to start with `NEXT`, so that they are easier to grep.
99 lines
3.0 KiB
Python
99 lines
3.0 KiB
Python
import pytest
|
|
|
|
from .support import PyScriptTest
|
|
|
|
pytest.skip(
|
|
reason="NEXT: pyscript API changed doesn't expose pyscript to window anymore",
|
|
allow_module_level=True,
|
|
)
|
|
|
|
|
|
class TestInterpreterAccess(PyScriptTest):
|
|
"""Test accessing Python objects from JS via pyscript.interpreter"""
|
|
|
|
def test_interpreter_python_access(self):
|
|
self.pyscript_run(
|
|
"""
|
|
<script type="py">
|
|
x = 1
|
|
def py_func():
|
|
return 2
|
|
</script>
|
|
"""
|
|
)
|
|
|
|
self.run_js(
|
|
"""
|
|
const x = await pyscript.interpreter.globals.get('x');
|
|
const py_func = await pyscript.interpreter.globals.get('py_func');
|
|
const py_func_res = await py_func();
|
|
console.log(`x is ${x}`);
|
|
console.log(`py_func() returns ${py_func_res}`);
|
|
"""
|
|
)
|
|
assert self.console.log.lines[-2:] == [
|
|
"x is 1",
|
|
"py_func() returns 2",
|
|
]
|
|
|
|
def test_interpreter_script_execution(self):
|
|
"""Test running Python code from js via pyscript.interpreter"""
|
|
self.pyscript_run("")
|
|
|
|
self.run_js(
|
|
"""
|
|
const interface = pyscript.interpreter._remote.interface;
|
|
await interface.runPython('print("Interpreter Ran This")');
|
|
"""
|
|
)
|
|
|
|
expected_message = "Interpreter Ran This"
|
|
assert self.console.log.lines[-1] == expected_message
|
|
|
|
py_terminal = self.page.wait_for_selector("py-terminal")
|
|
assert py_terminal.text_content() == expected_message
|
|
|
|
def test_backward_compatibility_runtime_script_execution(self):
|
|
"""Test running Python code from js via pyscript.runtime"""
|
|
self.pyscript_run("")
|
|
|
|
self.run_js(
|
|
"""
|
|
const interface = pyscript.runtime._remote.interpreter;
|
|
await interface.runPython('print("Interpreter Ran This")');
|
|
"""
|
|
)
|
|
|
|
expected_message = "Interpreter Ran This"
|
|
assert self.console.log.lines[-1] == expected_message
|
|
|
|
py_terminal = self.page.wait_for_selector("py-terminal")
|
|
assert py_terminal.text_content() == expected_message
|
|
|
|
def test_backward_compatibility_runtime_python_access(self):
|
|
"""Test accessing Python objects from JS via pyscript.runtime"""
|
|
self.pyscript_run(
|
|
"""
|
|
<script type="py">
|
|
x = 1
|
|
def py_func():
|
|
return 2
|
|
</script>
|
|
"""
|
|
)
|
|
|
|
self.run_js(
|
|
"""
|
|
const x = await pyscript.interpreter.globals.get('x');
|
|
const py_func = await pyscript.interpreter.globals.get('py_func');
|
|
const py_func_res = await py_func();
|
|
console.log(`x is ${x}`);
|
|
console.log(`py_func() returns ${py_func_res}`);
|
|
"""
|
|
)
|
|
|
|
assert self.console.log.lines[-2:] == [
|
|
"x is 1",
|
|
"py_func() returns 2",
|
|
]
|