From dcab169d6faaafa378428b761633fc1d651dc721 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sat, 13 May 2017 20:23:41 -0400 Subject: Add new container, shape. --- tests/container-shape.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/container-shape.nix (limited to 'tests') diff --git a/tests/container-shape.nix b/tests/container-shape.nix new file mode 100644 index 0000000..441694f --- /dev/null +++ b/tests/container-shape.nix @@ -0,0 +1,24 @@ +let + hostIp = "fc00::2"; + localIp = "fc00::1"; +in +import ( { pkgs, ... }: { + machine = + { config, pkgs, lib, ... }: { + containers.shape2 = { + privateNetwork = true; + hostAddress6 = hostIp; + localAddress6 = localIp; + config = import ../machines/container-shape.nix { + inherit config pkgs lib; + }; + }; + }; + + testScript = '' + $machine->waitForUnit("default.target"); + $machine->succeed("nixos-container list") =~ /shape2/ or die; + $machine->succeed("nixos-container start shape2"); + $machine->succeed("nixos-container run shape2 -- hostname") =~ /shape/ or die; + ''; +}) -- cgit v1.2.3