about summary refs log tree commit diff
path: root/nixos/tests/workout-tracker.nix
blob: 1ad509edf2d4c4d8ee694b3c16d2a500863ca7ad (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
import ./make-test-python.nix (
  { lib, pkgs, ... }:

  {
    name = "workout-tracker";

    meta.maintainers = with lib.maintainers; [ bhankas ];

    nodes.machine =
      { config, ... }:
      {
        virtualisation.memorySize = 2048;

        services.workout-tracker.enable = true;
      };

    testScript = ''
      start_all()
      machine.wait_for_unit("workout-tracker.service")
      # wait for workout-tracker to fully come up

      with subtest("workout-tracker service starts"):
          machine.wait_until_succeeds(
              "curl -sSfL http://localhost:8080/ > /dev/null",
              timeout=30
          )
    '';
  }
)