mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01:00
01fd62f37a
For some reason, chromium, which is still the nixpkgs version hangs inside the normal test vm, while working fine in .driverInteractive. I suspect that might have to do with the existence of a display in .driverInteractive. Neither vm does run X11 or wayland.
58 lines
1.9 KiB
Nix
58 lines
1.9 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
{
|
|
name = "playwright-python";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ phaer ];
|
|
};
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
environment.variables = {
|
|
NIX_MANUAL_DOCROOT = "file://${pkgs.nix.doc}/share/doc/nix/manual/index.html";
|
|
PLAYWRIGHT_BROWSERS_PATH = pkgs.playwright-driver.browsers;
|
|
};
|
|
environment.systemPackages = [
|
|
(pkgs.writers.writePython3Bin "test_playwright"
|
|
{
|
|
libraries = [ pkgs.python3Packages.playwright ];
|
|
}
|
|
''
|
|
import sys
|
|
from playwright.sync_api import sync_playwright
|
|
from playwright.sync_api import expect
|
|
|
|
browsers = {
|
|
"chromium": ["--headless", "--disable-gpu"],
|
|
"firefox": [],
|
|
"webkit": []
|
|
}
|
|
if len(sys.argv) != 3 or sys.argv[1] not in browsers.keys():
|
|
print(f"usage: {sys.argv[0]} [{'|'.join(browsers.keys())}] <url>")
|
|
sys.exit(1)
|
|
browser_name = sys.argv[1]
|
|
url = sys.argv[2]
|
|
browser_args = browsers.get(browser_name)
|
|
print(f"Running test on {browser_name} {' '.join(browser_args)}")
|
|
with sync_playwright() as p:
|
|
browser = getattr(p, browser_name).launch(args=browser_args)
|
|
context = browser.new_context()
|
|
page = context.new_page()
|
|
page.goto(url)
|
|
expect(page.get_by_text("Nix Reference Manual")).to_be_visible()
|
|
''
|
|
)
|
|
];
|
|
};
|
|
|
|
testScript = ''
|
|
# FIXME: Webkit segfaults
|
|
for browser in ["firefox", "chromium"]:
|
|
with subtest(f"Render Nix Manual in {browser}"):
|
|
machine.succeed(f"test_playwright {browser} $NIX_MANUAL_DOCROOT")
|
|
'';
|
|
|
|
}
|
|
)
|