···
+
# Test for NixOS' container support.
+
hostIp = "192.168.0.1";
+
containerIp = "192.168.0.100";
+
import ./make-test.nix ({ pkgs, ...} : {
+
name = "containers-portforward";
+
meta = with pkgs.stdenv.lib.maintainers; {
+
maintainers = [ aristid aszlig eelco chaoflow kampfschlaefer ianwookim ];
+
{ imports = [ ../modules/installer/cd-dvd/channel.nix ];
+
virtualisation.writableStore = true;
+
virtualisation.memorySize = 768;
+
{ privateNetwork = true;
+
localAddress = containerIp;
+
forwardPorts = [ { protocol = "tcp"; hostPort = hostPort; containerPort = containerPort; } ];
+
{ services.httpd.enable = true;
+
services.httpd.adminAddr = "foo@example.org";
+
networking.firewall.allowedTCPPorts = [ 80 ];
+
networking.firewall.allowPing = true;
+
virtualisation.pathsInNixDB = [ pkgs.stdenv ];
+
$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
+
# 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");
+
$machine->succeed("ping -n -c1 ${hostIp}");
+
$machine->succeed("curl --fail http://${hostIp}:${toString hostPort}/ > /dev/null");
+
$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");