wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / coder.nix
blobfd1fa0cc3031fafcf061fcfb1a2344976331d860
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "coder";
3   meta.maintainers = pkgs.coder.meta.maintainers;
5   nodes.machine =
6     { pkgs, ... }:
7     {
8       services.coder = {
9         enable = true;
10         accessUrl = "http://localhost:3000";
11       };
12     };
14   testScript = ''
15     machine.start()
16     machine.wait_for_unit("postgresql.service")
17     machine.wait_for_unit("coder.service")
18     machine.wait_for_open_port(3000)
20     machine.succeed("curl --fail http://localhost:3000")
21   '';