summary refs log tree commit diff
path: root/nixos/tests/resolv.nix
blob: b506f87451ee719d1eb83ffc996d034741798684 (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
45
46
# Test whether DNS resolving returns multiple records and all address families.
import ./make-test-python.nix ({ pkgs, ... } : {
  name = "resolv";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ ckauhaus ];
  };

  nodes.resolv = { ... }: {
    networking.extraHosts = ''
      # IPv4 only
      192.0.2.1 host-ipv4.example.net
      192.0.2.2 host-ipv4.example.net
      # IP6 only
      2001:db8::2:1 host-ipv6.example.net
      2001:db8::2:2 host-ipv6.example.net
      # dual stack
      192.0.2.1 host-dual.example.net
      192.0.2.2 host-dual.example.net
      2001:db8::2:1 host-dual.example.net
      2001:db8::2:2 host-dual.example.net
    '';
  };

  testScript = ''
    def addrs_in(hostname, addrs):
        res = resolv.succeed("getent ahosts {}".format(hostname))
        for addr in addrs:
            assert addr in res, "Expected output '{}' not found in\n{}".format(addr, res)


    start_all()
    resolv.wait_for_unit("nscd")

    ipv4 = ["192.0.2.1", "192.0.2.2"]
    ipv6 = ["2001:db8::2:1", "2001:db8::2:2"]

    with subtest("IPv4 resolves"):
        addrs_in("host-ipv4.example.net", ipv4)

    with subtest("IPv6 resolves"):
        addrs_in("host-ipv6.example.net", ipv6)

    with subtest("Dual stack resolves"):
        addrs_in("host-dual.example.net", ipv4 + ipv6)
  '';
})