vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / connman.nix
blob348b2a895a632a7adbfbdb931623a6a7b5b8d8e5
1 import ./make-test-python.nix ({ pkgs, lib, ...}:
3   name = "connman";
4   meta = with lib.maintainers; {
5     maintainers = [ rnhmjoj ];
6   };
8   # Router running radvd on VLAN 1
9   nodes.router = { ... }: {
10     imports = [ ../modules/profiles/minimal.nix ];
12     virtualisation.vlans = [ 1 ];
14     boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
16     networking = {
17       useDHCP = false;
18       interfaces.eth1.ipv6.addresses =
19         [ { address = "fd12::1"; prefixLength = 64; } ];
20     };
22     services.radvd = {
23       enable = true;
24       config = ''
25         interface eth1 {
26           AdvSendAdvert on;
27           AdvManagedFlag on;
28           AdvOtherConfigFlag on;
29           prefix fd12::/64 {
30             AdvAutonomous off;
31           };
32         };
33       '';
34     };
35   };
37   # Client running connman, connected to VLAN 1
38   nodes.client = { ... }: {
39     virtualisation.vlans = [ 1 ];
41     # add a virtual wlan interface
42     boot.kernelModules = [ "mac80211_hwsim" ];
43     boot.extraModprobeConfig = ''
44       options mac80211_hwsim radios=1
45     '';
47     # Note: the overrides are needed because the wifi is
48     # disabled with mkVMOverride in qemu-vm.nix.
49     services.connman.enable = lib.mkOverride 0 true;
50     services.connman.networkInterfaceBlacklist = [ "eth0" ];
51     networking.wireless.enable = lib.mkOverride 0 true;
52     networking.wireless.interfaces = [ "wlan0" ];
53   };
55   testScript =
56     ''
57       start_all()
59       with subtest("Router is ready"):
60           router.wait_for_unit("radvd.service")
62       with subtest("Daemons are running"):
63           client.wait_for_unit("wpa_supplicant-wlan0.service")
64           client.wait_for_unit("connman.service")
65           client.wait_until_succeeds("connmanctl state | grep -q ready")
67       with subtest("Wired interface is configured"):
68           client.wait_until_succeeds("ip -6 route | grep -q fd12::/64")
69           client.wait_until_succeeds("ping -c 1 fd12::1")
71       with subtest("Can set up a wireless access point"):
72           client.succeed("connmanctl enable wifi")
73           client.wait_until_succeeds("connmanctl tether wifi on nixos-test reproducibility | grep -q 'Enabled'")
74           client.wait_until_succeeds("iw wlan0 info | grep -q nixos-test")
75     '';