summaryrefslogtreecommitdiffstats
path: root/nixos/tests/firefly-iii-data-importer.nix
blob: a068ff2d025e73308e1594686714e053a429c364 (plain)
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
{ lib, ... }:
{
  name = "firefly-iii-data-importer";
  meta = {
    maintainers = [ lib.maintainers.savyajha ];
    platforms = lib.platforms.linux;
  };

  nodes.dataImporter =
    { ... }:
    {
      services.firefly-iii-data-importer = {
        enable = true;
        enableNginx = true;
        settings = {
          LOG_CHANNEL = "stdout";
          USE_CACHE = true;
        };
      };
    };

  testScript = ''
    dataImporter.wait_for_unit("phpfpm-firefly-iii-data-importer.service")
    dataImporter.wait_for_unit("nginx.service")
    dataImporter.succeed("curl -fvvv -Ls http://localhost/token | grep 'Firefly III Data Import Tool'")
  '';
}