nixpkgs/nixos/tests/coder.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
471 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
{
name = "coder";
meta.maintainers = pkgs.coder.meta.maintainers;
2022-10-24 20:08:00 +00:00
nodes.machine =
{ pkgs, ... }:
{
services.coder = {
enable = true;
accessUrl = "http://localhost:3000";
2022-10-24 20:08:00 +00:00
};
};
2022-10-24 20:08:00 +00:00
testScript = ''
machine.start()
machine.wait_for_unit("postgresql.service")
machine.wait_for_unit("coder.service")
machine.wait_for_open_port(3000)
2022-10-24 20:08:00 +00:00
machine.succeed("curl --fail http://localhost:3000")
'';
}