about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/mihomo.nix
blob: 472d10050f7fb12a9aa227134d02e12b97464bbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "mihomo";
  meta.maintainers = with pkgs.lib.maintainers; [ Guanran928 ];

  nodes.machine = {
    environment.systemPackages = [ pkgs.curl ];

    services.nginx = {
      enable = true;
      statusPage = true;
    };

    services.mihomo = {
      enable = true;
      configFile = pkgs.writeTextFile {
        name = "config.yaml";
        text = ''
          mixed-port: 7890
          external-controller: 127.0.0.1:9090
          authentication:
          - "user:supersecret"
        '';
      };
    };
  };

  testScript = ''
    # Wait until it starts
    machine.wait_for_unit("nginx.service")
    machine.wait_for_unit("mihomo.service")
    machine.wait_for_open_port(80)
    machine.wait_for_open_port(7890)
    machine.wait_for_open_port(9090)

    # Proxy
    machine.succeed("curl --fail --max-time 10 --proxy http://user:supersecret@localhost:7890 http://localhost")
    machine.succeed("curl --fail --max-time 10 --proxy socks5://user:supersecret@localhost:7890 http://localhost")
    machine.fail("curl --fail --max-time 10 --proxy http://user:supervillain@localhost:7890 http://localhost")
    machine.fail("curl --fail --max-time 10 --proxy socks5://user:supervillain@localhost:7890 http://localhost")

    # Web UI
    machine.succeed("curl --fail http://localhost:9090") == '{"hello":"clash"}'
  '';
})