vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / ladybird.nix
blob85c23353a668ae0eb70ebe74983c7cbcdd74b573
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "ladybird";
3   meta = with pkgs.lib.maintainers; {
4     maintainers = [ fgaz ];
5   };
7   nodes.machine = { config, pkgs, ... }: {
8     imports = [
9       ./common/x11.nix
10     ];
12     services.xserver.enable = true;
13     programs.ladybird.enable = true;
14   };
16   enableOCR = true;
18   testScript =
19     ''
20       machine.wait_for_x()
21       machine.succeed("echo '<!DOCTYPE html><html><body><h1>Hello world</h1></body></html>' > page.html")
22       machine.execute("Ladybird file://$(pwd)/page.html >&2 &")
23       machine.wait_for_window("Ladybird")
24       machine.sleep(5)
25       machine.wait_for_text("Hello world")
26       machine.screenshot("screen")
27     '';