summary refs log tree commit diff
path: root/nixos/tests/cryptpad.nix
blob: 895f291abaca330a73f36a8fbe9416b18d59ce7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ./make-test-python.nix ({ lib, ... }:

with lib;

{
  name = "cryptpad";
  meta.maintainers = with maintainers; [ davhau ];

  nodes.machine =
    { pkgs, ... }:
    { services.cryptpad.enable = true; };

  testScript = ''
    machine.wait_for_unit("cryptpad.service")
    machine.wait_for_open_port("3000")
    machine.succeed("curl -L --fail http://localhost:3000/sheet")
  '';
})