summary refs log tree commit diff
path: root/nixos/tests/containers-portforward.nix
diff options
context:
space:
mode:
authorIan-Woo Kim <ianwookim@gmail.com>2017-02-03 12:50:02 -0800
committerRobin Gloster <mail@glob.in>2017-02-15 05:12:46 +0100
commitb7a24e0a2b540c0598fc3ff4056feb1208ec89f9 (patch)
tree8b687038ea4ab413cb4a892b815b649f44327e67 /nixos/tests/containers-portforward.nix
parent5ca0f72472a08ee42231410642a4928a3d58c61f (diff)
downloadnixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar.gz
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar.bz2
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar.lz
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar.xz
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.tar.zst
nixpkgs-b7a24e0a2b540c0598fc3ff4056feb1208ec89f9.zip
nixos-container: added test for port forwarding ( nixos/tests/containers-portforward.nix )
Diffstat (limited to 'nixos/tests/containers-portforward.nix')
-rw-r--r--nixos/tests/containers-portforward.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/nixos/tests/containers-portforward.nix b/nixos/tests/containers-portforward.nix
new file mode 100644
index 00000000000..78cc445c2dd
--- /dev/null
+++ b/nixos/tests/containers-portforward.nix
@@ -0,0 +1,63 @@
+# Test for NixOS' container support.
+
+let
+  hostIp = "192.168.0.1";
+  hostPort = 10080;
+  containerIp = "192.168.0.100";
+  containerPort = 80;
+in 
+
+import ./make-test.nix ({ pkgs, ...} : {
+  name = "containers-portforward";
+  meta = with pkgs.stdenv.lib.maintainers; {
+    maintainers = [ aristid aszlig eelco chaoflow kampfschlaefer ianwookim ];
+  };
+
+  machine =
+    { config, pkgs, ... }:
+    { imports = [ ../modules/installer/cd-dvd/channel.nix ];
+      virtualisation.writableStore = true;
+      virtualisation.memorySize = 768;
+
+      containers.webserver =
+        { privateNetwork = true;
+          hostAddress = hostIp;
+          localAddress = containerIp;
+          forwardPorts = [ { protocol = "tcp"; hostPort = hostPort; containerPort = containerPort; } ];
+          config =
+            { services.httpd.enable = true;
+              services.httpd.adminAddr = "foo@example.org";
+              networking.firewall.allowedTCPPorts = [ 80 ];
+              networking.firewall.allowPing = true;
+            };
+        };
+
+      virtualisation.pathsInNixDB = [ pkgs.stdenv ];
+    };
+
+  testScript =
+    ''
+      $machine->succeed("nixos-container list") =~ /webserver/ or die;
+
+      # Start the webserver container.
+      $machine->succeed("nixos-container start webserver");
+
+      # wait two seconds for the container to start and the network to be up
+      sleep 2;
+
+      # Since "start" returns after the container has reached
+      # multi-user.target, we should now be able to access it.
+      #my $ip = $machine->succeed("nixos-container show-ip webserver");
+      #chomp $ip;
+      $machine->succeed("ping -n -c1 ${hostIp}");
+      $machine->succeed("curl --fail http://${hostIp}:${toString hostPort}/ > /dev/null");
+
+      # Stop the container.
+      $machine->succeed("nixos-container stop webserver");
+      $machine->fail("curl --fail --connect-timeout 2 http://${hostIp}:${toString hostPort}/ > /dev/null");
+
+      # Destroying a declarative container should fail.
+      $machine->fail("nixos-container destroy webserver");
+    '';
+
+})