summary refs log tree commit diff
path: root/nixos/tests/dokuwiki.nix
blob: 38bde10f47edc88e4479f5b8144f648bda1dc23f (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, ... }:

with lib;

{
  name = "dokuwiki";
  meta.maintainers = with maintainers; [ maintainers."1000101" ];

  nodes.machine =
    { pkgs, ... }:
    { services.dokuwiki = {
        enable = true;
        acl = " ";
        superUser = null;
        nginx = {
          forceSSL = false;
          enableACME = false;
        };
      }; 
    };

  testScript = ''
    machine.start()
    machine.wait_for_unit("phpfpm-dokuwiki.service")
    machine.wait_for_unit("nginx.service")
    machine.wait_for_open_port(80)
    machine.succeed("curl -sSfL http://localhost/ | grep 'DokuWiki'")
  '';
})