about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/code-server.nix
blob: 7d523dfc617e3c2c2f4447e5570f967e340f54d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import ./make-test-python.nix ({pkgs, lib, ...}:
{
  name = "code-server";

  nodes = {
    machine = {pkgs, ...}: {
      services.code-server = {
        enable = true;
        auth = "none";
      };
    };
  };

  testScript = ''
    start_all()
    machine.wait_for_unit("code-server.service")
    machine.wait_for_open_port(4444)
    machine.succeed("curl -k --fail http://localhost:4444", timeout=10)
  '';

  meta.maintainers = [ lib.maintainers.drupol ];
})