summary refs log tree commit diff
path: root/nixos/tests/owncloud.nix
blob: c968569f2008cc0ebb54e04ea7b24478c22cfca0 (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
37
38
39
import ./make-test.nix ({ ... }:

{
  name = "owncloud";
  nodes =
    { web =
        { ... }:
        {
          services.postgresql.enable = true;
          services.httpd = {
            enable = true;
            logPerVirtualHost = true;
            adminAddr = "example@example.com";
            virtualHosts = [
              {
                hostName = "owncloud";
                extraSubservices =
                  [
                    {
                      serviceType   = "owncloud";
                      adminPassword = "secret";
                      dbPassword    = "secret";
                    }
                  ];
              }
            ];
          };
        };
    };

  testScript = ''
    startAll;

    $web->waitForUnit("postgresql");
    $web->waitForUnit("httpd");

    $web->succeed("curl -L 127.0.0.1:80");
  '';
})