aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-11-16 12:46:43 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-11-16 16:48:34 +0100
commit651a18dd2466662e7027e4dc04147e4f38c7bbf8 (patch)
tree10e617243eb0fa5a7e76f99dfcc4885ccfa12a94 /tests
parentb90a43533249a50f238a5e6cc9d77edb0fe6d748 (diff)
release.nix: Add a test for sandboxing
Right now it only tests whether seccomp correctly forges the return value of chown, but the long-term goal is to test the full sandboxing functionality at some point in the future. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/sandbox.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/sandbox.nix b/tests/sandbox.nix
new file mode 100644
index 000000000..7e2055038
--- /dev/null
+++ b/tests/sandbox.nix
@@ -0,0 +1,53 @@
+# Test Nix builder sandbox.
+
+{ system, nix }:
+
+with import <nixpkgs/nixos/lib/testing.nix> { inherit system; };
+
+let
+ mkUtils = pkgs: pkgs.buildEnv {
+ name = "sandbox-utils";
+ paths = [ pkgs.coreutils pkgs.utillinux pkgs.bash ];
+ pathsToLink = [ "/bin" "/sbin" ];
+ };
+
+ utils32 = mkUtils pkgs.pkgsi686Linux;
+ utils64 = mkUtils pkgs;
+
+ sandboxTestScript = pkgs.writeText "sandbox-testscript.sh" ''
+ [ $(id -u) -eq 0 ]
+ touch foo
+ chown 1024:1024 foo
+ touch "$out"
+ '';
+
+ testExpr = arch: pkgs.writeText "sandbox-test.nix" ''
+ let
+ utils = builtins.storePath
+ ${if arch == "i686-linux" then utils32 else utils64};
+ in derivation {
+ name = "sandbox-test";
+ system = "${arch}";
+ builder = "''${utils}/bin/bash";
+ args = ["-e" ${sandboxTestScript}];
+ PATH = "''${utils}/bin";
+ }
+ '';
+
+in makeTest {
+ name = "nix-sandbox";
+
+ machine = { pkgs, ... }: {
+ nix.package = nix;
+ nix.useSandbox = true;
+ nix.binaryCaches = [];
+ virtualisation.writableStore = true;
+ virtualisation.pathsInNixDB = [ utils32 utils64 ];
+ };
+
+ testScript = ''
+ $machine->waitForUnit("multi-user.target");
+ $machine->succeed("nix-build ${testExpr "x86_64-linux"}");
+ $machine->succeed("nix-build ${testExpr "i686-linux"}");
+ '';
+}