summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/container-shape.nix24
1 files changed, 24 insertions, 0 deletions
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 <nixpkgs/nixos/tests/make-test.nix> ( { 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;
+ '';
+})