nixosTests.haste-server: init

main
Maciej Krüger 2 years ago
parent a1cbf8cfff
commit d8bae875e0
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
  1. 1
      nixos/tests/all-tests.nix
  2. 23
      nixos/tests/haste-server.nix

@ -193,6 +193,7 @@ in
hadoop.hdfs = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./hadoop/hdfs.nix {};
hadoop.yarn = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./hadoop/yarn.nix {};
haka = handleTest ./haka.nix {};
haste-server = handleTest ./haste-server.nix {};
haproxy = handleTest ./haproxy.nix {};
hardened = handleTest ./hardened.nix {};
hedgedoc = handleTest ./hedgedoc.nix {};

@ -0,0 +1,23 @@
import ./make-test-python.nix ({ pkgs, lib, ... }:
{
name = "haste-server";
meta.maintainers = with lib.maintainers; [ mkg20001 ];
nodes.machine = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
curl
jq
];
services.haste-server = {
enable = true;
};
};
testScript = ''
machine.wait_for_unit("haste-server")
machine.wait_until_succeeds("curl -s localhost:7777")
machine.succeed('curl -s -X POST http://localhost:7777/documents -d "Hello World!" > bla')
machine.succeed('curl http://localhost:7777/raw/$(cat bla | jq -r .key) | grep "Hello World"')
'';
})
Loading…
Cancel
Save