about summary refs log tree commit diff
path: root/nixos/tests/firefoxpwa.nix
blob: 374d67b01ac609ce8a89579f2e5dcc5cc2d4e056 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import ./make-test-python.nix ({ lib, ... }:

{
  name = "firefoxpwa";
  meta.maintainers = with lib.maintainers; [ camillemndn ];

  nodes.machine =
    { pkgs, ... }:
    {
      imports = [ ./common/x11.nix ];
      environment.systemPackages = with pkgs; [ firefoxpwa jq ];

      programs.firefox = {
        enable = true;
        nativeMessagingHosts.packages = [ pkgs.firefoxpwa ];
      };

      services.jellyfin.enable = true;
    };

  enableOCR = true;

  testScript = ''
    machine.start()

    with subtest("Install a progressive web app"):
        machine.wait_for_unit("jellyfin.service")
        machine.wait_for_open_port(8096)
        machine.succeed("firefoxpwa site install http://localhost:8096/web/manifest.json >&2")

    with subtest("Launch the progressive web app"):
        machine.succeed("firefoxpwa site launch $(jq -r < ~/.local/share/firefoxpwa/config.json '.sites | keys[0]') >&2")
        machine.wait_for_window("Jellyfin")
        machine.wait_for_text("Jellyfin")
  '';
})