mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
This PR adds support for optionally running pyodide in a web worker: - add a new option config.execution_thread, which can be `main` or `worker`. The default is `main` - improve the test machinery so that we run all tests twice, once for `main` and once for `worker` - add a new esbuild target which builds the code for the worker The support for workers is not complete and many features are still missing: there are 71 tests which are marked as `@skip_worker`, but we can fix them in subsequent PRs. The vast majority of tests fail because js.document is unavailable: for it to run transparently, we need the "auto-syncify" feature of synclink. Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com> Co-authored-by: Madhur Tandon <20173739+madhur-tandon@users.noreply.github.com>
120 lines
3.9 KiB
Python
120 lines
3.9 KiB
Python
from playwright.sync_api import expect
|
|
|
|
from .support import PyScriptTest, skip_worker
|
|
|
|
|
|
class TestSplashscreen(PyScriptTest):
|
|
def test_autoshow_and_autoclose(self):
|
|
"""
|
|
By default, we show the splashscreen and we close it when the loading is
|
|
complete.
|
|
|
|
XXX: this test is a bit fragile: now it works reliably because the
|
|
startup is so slow that when we do expect(div).to_be_visible(), the
|
|
splashscreen is still there. But in theory, if the startup become very
|
|
fast, it could happen that by the time we arrive in python lang, it
|
|
has already been removed.
|
|
"""
|
|
self.pyscript_run(
|
|
"""
|
|
<py-script>
|
|
print('hello pyscript')
|
|
</py-script>
|
|
""",
|
|
wait_for_pyscript=False,
|
|
)
|
|
div = self.page.locator("py-splashscreen > div")
|
|
expect(div).to_be_visible()
|
|
expect(div).to_contain_text("Python startup...")
|
|
assert "Python startup..." in self.console.info.text
|
|
#
|
|
# now we wait for the startup to complete
|
|
self.wait_for_pyscript()
|
|
#
|
|
# and now the splashscreen should have been removed
|
|
expect(div).to_be_hidden()
|
|
assert self.page.locator("py-locator").count() == 0
|
|
|
|
assert "hello pyscript" in self.console.log.lines
|
|
|
|
def test_autoclose_false(self):
|
|
self.pyscript_run(
|
|
"""
|
|
<py-config>
|
|
[splashscreen]
|
|
autoclose = false
|
|
</py-config>
|
|
<py-script>
|
|
print('hello pyscript')
|
|
</py-script>
|
|
""",
|
|
)
|
|
div = self.page.locator("py-splashscreen > div")
|
|
expect(div).to_be_visible()
|
|
expect(div).to_contain_text("Python startup...")
|
|
expect(div).to_contain_text("Startup complete")
|
|
assert "hello pyscript" in self.console.log.lines
|
|
|
|
def test_autoclose_loader_deprecated(self):
|
|
self.pyscript_run(
|
|
"""
|
|
<py-config>
|
|
autoclose_loader = false
|
|
</py-config>
|
|
<py-script>
|
|
print('hello pyscript')
|
|
</py-script>
|
|
""",
|
|
)
|
|
warning = self.page.locator(".py-warning")
|
|
inner_text = warning.inner_html()
|
|
assert "The setting autoclose_loader is deprecated" in inner_text
|
|
|
|
div = self.page.locator("py-splashscreen > div")
|
|
expect(div).to_be_visible()
|
|
expect(div).to_contain_text("Python startup...")
|
|
expect(div).to_contain_text("Startup complete")
|
|
assert "hello pyscript" in self.console.log.lines
|
|
|
|
def test_splashscreen_disabled_option(self):
|
|
self.pyscript_run(
|
|
"""
|
|
<py-config>
|
|
[splashscreen]
|
|
enabled = false
|
|
</py-config>
|
|
|
|
<py-script>
|
|
def test():
|
|
print("Hello pyscript!")
|
|
test()
|
|
</py-script>
|
|
""",
|
|
)
|
|
assert self.page.locator("py-splashscreen").count() == 0
|
|
assert self.console.log.lines[-1] == "Hello pyscript!"
|
|
py_terminal = self.page.wait_for_selector("py-terminal")
|
|
assert py_terminal.inner_text() == "Hello pyscript!\n"
|
|
|
|
@skip_worker("FIXME: js.document")
|
|
def test_splashscreen_custom_message(self):
|
|
self.pyscript_run(
|
|
"""
|
|
<py-config>
|
|
[splashscreen]
|
|
autoclose = false
|
|
</py-config>
|
|
|
|
<py-script>
|
|
from js import document
|
|
|
|
splashscreen = document.querySelector("py-splashscreen")
|
|
splashscreen.log("Hello, world!")
|
|
</py-script>
|
|
""",
|
|
)
|
|
|
|
splashscreen = self.page.locator("py-splashscreen")
|
|
assert splashscreen.count() == 1
|
|
assert "Hello, world!" in splashscreen.inner_text()
|