about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/openvscode-server.nix
blob: cbff8e09c5938e33bc8e2ac55c7ecca4a4ea6d39 (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 = "openvscode-server";

  nodes = {
    machine = {pkgs, ...}: {
      services.openvscode-server = {
        enable = true;
        withoutConnectionToken = true;
      };
    };
  };

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

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