about summary refs log tree commit diff
path: root/nixos/tests/firefly-iii.nix
blob: c93d799320a48f729e620853f6f3daf161561334 (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
import ./make-test-python.nix ({ lib, pkgs, ... }: {
  name = "firefly-iii";
  meta.maintainers = [ lib.maintainers.savyajha ];

  nodes.machine = { config, ... }: {
    environment.etc = {
      "firefly-iii-appkey".text = "TestTestTestTestTestTestTestTest";
    };
    services.firefly-iii = {
      enable = true;
      virtualHost = "http://localhost";
      enableNginx = true;
      settings = {
        APP_KEY_FILE = "/etc/firefly-iii-appkey";
        LOG_CHANNEL = "stdout";
        SITE_OWNER = "mail@example.com";
      };
    };
  };

  testScript = ''
    machine.wait_for_unit("phpfpm-firefly-iii.service")
    machine.wait_for_unit("nginx.service")
    machine.succeed("curl -fvvv -Ls http://localhost/ | grep 'Firefly III'")
  '';
})