summaryrefslogtreecommitdiffstats
path: root/nixos/tests/containers-bridge.nix
diff options
context:
space:
mode:
authorArnold Krille <arnold@arnoldarts.de>2016-01-31 21:45:05 +0100
committerArnold Krille <arnold@arnoldarts.de>2016-04-02 17:07:41 +0200
commit3b31c52d4b2784de33280feb9949f2ab8241ac50 (patch)
tree04c3d5b62606e4a0edf6de437f4898b9d115d406 /nixos/tests/containers-bridge.nix
parentaa46904490cadc55817ec32695c484026ddf3e15 (diff)
containers: Add more tests for ipv6 and hostbridge
A testcase each for - declarative ipv6-only container Seems odd to define the container IPs with their prefix length attached. There should be a better way… - declarative bridged container Also fix the ping test by waiting for the container to start When the ping was executed, the container might not have finished starting. Or the host-side of the container wasn't finished with config. Waiting for 2 seconds in between fixes this.
Diffstat (limited to 'nixos/tests/containers-bridge.nix')
-rw-r--r--nixos/tests/containers-bridge.nix81
1 files changed, 81 insertions, 0 deletions
diff --git a/nixos/tests/containers-bridge.nix b/nixos/tests/containers-bridge.nix
new file mode 100644
index 000000000000..8c3340b60a7c
--- /dev/null
+++ b/nixos/tests/containers-bridge.nix
@@ -0,0 +1,81 @@
+# Test for NixOS' container support.
+
+let
+ hostIp = "192.168.0.1";
+ containerIp = "192.168.0.100/24";
+ hostIp6 = "fc00::1";
+ containerIp6 = "fc00::2/7";
+in
+
+import ./make-test.nix ({ pkgs, ...} : {
+ name = "containers-bridge";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ aristid aszlig eelco chaoflow ];
+ };
+
+ machine =
+ { config, pkgs, ... }:
+ { imports = [ ../modules/installer/cd-dvd/channel.nix ];
+ virtualisation.writableStore = true;
+ virtualisation.memorySize = 768;
+
+ networking.bridges = {
+ br0 = {
+ interfaces = [];
+ };
+ };
+ networking.interfaces = {
+ br0 = {
+ ip4 = [{ address = hostIp; prefixLength = 24; }];
+ ip6 = [{ address = hostIp6; prefixLength = 7; }];
+ };
+ };
+
+ containers.webserver =
+ {
+ autoStart = true;
+ privateNetwork = true;
+ hostBridge = "br0";
+ localAddress = containerIp;
+ localAddress6 = containerIp6;
+ 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->waitForUnit("default.target");
+ $machine->succeed("nixos-container list") =~ /webserver/ or die;
+
+ # Start the webserver container.
+ $machine->succeed("nixos-container status webserver") =~ /up/ or die;
+
+ "${containerIp}" =~ /([^\/]+)\/([0-9+])/;
+ my $ip = $1;
+ chomp $ip;
+ $machine->succeed("ping -n -c 1 $ip");
+ $machine->succeed("curl --fail http://$ip/ > /dev/null");
+
+ "${containerIp6}" =~ /([^\/]+)\/([0-9+])/;
+ my $ip6 = $1;
+ chomp $ip6;
+ $machine->succeed("ping6 -n -c 1 $ip6");
+ $machine->succeed("curl --fail http://[$ip6]/ > /dev/null");
+
+ # Stop the container.
+ $machine->succeed("nixos-container stop webserver");
+ $machine->fail("curl --fail --connect-timeout 2 http://$ip/ > /dev/null");
+ $machine->fail("curl --fail --connect-timeout 2 http://[$ip6]/ > /dev/null");
+
+ # Destroying a declarative container should fail.
+ $machine->fail("nixos-container destroy webserver");
+ '';
+
+})