python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / pingvin-share.nix
blob5b1ec55add20689a7af0277b6a23b337be7e9640
1 import ./make-test-python.nix (
2   { lib, ... }:
3   {
4     name = "pingvin-share";
5     meta.maintainers = with lib.maintainers; [ ratcornu ];
7     nodes.machine =
8       { ... }:
9       {
10         services.pingvin-share = {
11           enable = true;
13           backend.port = 9010;
14           frontend.port = 9011;
15         };
16       };
18     testScript = ''
19       machine.wait_for_unit("pingvin-share-frontend.service")
20       machine.wait_for_open_port(9010)
21       machine.wait_for_open_port(9011)
22       machine.succeed("curl --fail http://127.0.0.1:9010/api/configs")
23       machine.succeed("curl --fail http://127.0.0.1:9011/")
24     '';
25   }