vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / mollysocket.nix
blob8cbd0c0272e09fb873802b564c961b9a58020769
1 import ./make-test-python.nix ({ pkgs, lib, ... }:
3 let
4   port = 1234;
5 in {
6   name = "mollysocket";
7   meta.maintainers = with lib.maintainers; [ dotlambda ];
9   nodes.mollysocket = { ... }: {
10     services.mollysocket = {
11       enable = true;
12       settings = {
13         inherit port;
14       };
15     };
16   };
18   testScript = ''
19     import json
21     mollysocket.wait_for_unit("mollysocket.service")
22     mollysocket.wait_for_open_port(${toString port})
24     out = mollysocket.succeed("curl --fail http://127.0.0.1:${toString port}")
25     assert json.loads(out)["mollysocket"]["version"] == "${toString pkgs.mollysocket.version}"
26   '';