about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/dae.nix
blob: b8c8ebce74574ef91dfc2b77b5c208d2b73ae6e9 (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 = "dae";

  meta = {
    maintainers = with lib.maintainers; [ oluceps ];
  };

  nodes.machine = { pkgs, ... }: {
    environment.systemPackages = [ pkgs.curl ];
    services.nginx = {
      enable = true;
      statusPage = true;
    };
    services.dae = {
      enable = true;
    };
  };

  testScript = ''
    machine.wait_for_unit("nginx.service")
    machine.wait_for_unit("dae.service")

    machine.wait_for_open_port(80)

    machine.succeed("curl --fail --max-time 10 http://localhost")
  '';

})