about summary refs log tree commit diff
path: root/tests/make-test.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-18 11:48:05 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-18 11:48:05 +0100
commita41fd5b7223fc83d43ede24477294685ddaf67a7 (patch)
tree47a88b2ca08b52fddbd88a85ef4b96936c873dbe /tests/make-test.nix
parent9b00ef30a0543ce74aef290a27b5831edf26d567 (diff)
tests: Integrate make-test.nix from labernix.
We already have abstracted the injection of the module list in labernix,
so we can reuse this with only minor changes.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'tests/make-test.nix')
-rw-r--r--tests/make-test.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/make-test.nix b/tests/make-test.nix
new file mode 100644
index 00000000..9276dae3
--- /dev/null
+++ b/tests/make-test.nix
@@ -0,0 +1,28 @@
+f: { system ? builtins.currentSystem, ... } @ args: let
+  lib = import <nixpkgs/lib>;
+
+  testLib = import <nixpkgs/nixos/lib/testing.nix> {
+    inherit system;
+  };
+
+  pkgs = import <nixpkgs> { inherit system; };
+
+  testArgs = if builtins.isFunction f then f (args // {
+    pkgs = pkgs // {
+      vuizvui = import ../pkgs { inherit pkgs; };
+    };
+  }) else f;
+
+  nodes = testArgs.nodes or (if testArgs ? machine then {
+    inherit (testArgs) machine;
+  } else {});
+
+  injectCommon = name: conf: {
+    imports = [ conf ] ++ import ../modules/module-list.nix;
+  };
+
+  testArgsWithCommon = removeAttrs testArgs [ "machine" ] // {
+    nodes = lib.mapAttrs injectCommon nodes;
+  };
+
+in testLib.makeTest testArgsWithCommon