-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from sinanmohd/feat/nixosTests
nixosTests: WIP integration tests
- Loading branch information
Showing
6 changed files
with
544 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Synthetic integration tests for "real" nix stores and substituters | ||
|
||
Usage | ||
--- | ||
|
||
```console | ||
$ nix build .#nixosTests.diamond-unbuilt-2 | ||
``` | ||
|
||
Development | ||
--- | ||
|
||
The `.#nixosTests` attrset is defined in [`all-tests.nix`](./all-tests.nix). | ||
In [dsl.nix](./dsl.nix) we define the helper for generating NixOS tests from DAGs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
{ lib, testers }: | ||
|
||
let | ||
dsl = ./dsl.nix; | ||
diamond.dag = { | ||
nodes.a = { }; | ||
nodes.b.inputs.a = { }; # b->a | ||
nodes.c.inputs.a = { }; # c->a | ||
nodes.d.inputs.b = { }; # d->b | ||
nodes.d.inputs.c = { }; # d->c | ||
}; | ||
|
||
# A B C D E | ||
# \ | / | | | ||
# U V W X | ||
sunset.dag = { | ||
nodes = | ||
let | ||
goalDependsOn = inputs: { | ||
goal = true; | ||
inputs = lib.genAttrs inputs (_: { }); | ||
}; | ||
in | ||
{ | ||
a = goalDependsOn [ "u" "v" ]; | ||
b = goalDependsOn [ "u" "v" ]; | ||
c = goalDependsOn [ "u" "v" ]; | ||
d = goalDependsOn [ "w" ]; | ||
e = goalDependsOn [ "x" ]; | ||
|
||
u = { }; | ||
v = { }; | ||
w = { }; | ||
x = { }; | ||
}; | ||
}; | ||
in | ||
builtins.mapAttrs | ||
( | ||
name: value: | ||
testers.runNixOSTest ( | ||
{ | ||
inherit name; | ||
imports = value.imports ++ [ dsl ]; | ||
testScript = | ||
value.testScriptPre or "" | ||
+ '' | ||
start_all() | ||
substituter.wait_for_unit("nix-serve.service") | ||
builder.succeed("dag-test") | ||
'' | ||
+ value.testScriptPost or ""; | ||
} | ||
// builtins.removeAttrs value [ | ||
"imports" | ||
"testScriptPre" | ||
"testScriptPost" | ||
] | ||
) | ||
) | ||
{ | ||
diamond-unbuilt-0 = { | ||
imports = [ | ||
{ | ||
dag.test.unconstrained.builds = 0; | ||
dag.test.unconstrained.downloads = 0; | ||
} | ||
diamond | ||
]; | ||
}; | ||
diamond-unbuilt-2 = { | ||
imports = [ | ||
{ | ||
dag.nodes.a.cache = "remote"; | ||
dag.nodes.b.cache = "remote"; | ||
dag.nodes.d.goal = true; | ||
dag.test.unconstrained.builds = 2; | ||
dag.test.unconstrained.downloads = 2; | ||
} | ||
diamond | ||
]; | ||
}; | ||
diamond-unbuilt-4 = { | ||
imports = [ | ||
{ | ||
dag.nodes.d.goal = true; | ||
dag.test.unconstrained.builds = 4; | ||
dag.test.unconstrained.downloads = 0; | ||
} | ||
diamond | ||
]; | ||
}; | ||
|
||
sunset-unbuilt-9 = { | ||
imports = [ | ||
{ | ||
dag = { | ||
test.unconstrained.builds = 9; | ||
|
||
constraints.builds = 5; | ||
test.constrained.builds = 3; | ||
|
||
nodes = { | ||
a.test = { | ||
chosen = true; | ||
needed = true; | ||
}; | ||
b.test = { | ||
chosen = true; | ||
needed = true; | ||
}; | ||
c.test = { | ||
chosen = true; | ||
needed = true; | ||
}; | ||
|
||
d.test.needed = true; | ||
e.test.needed = true; | ||
u.test.needed = true; | ||
v.test.needed = true; | ||
w.test.needed = true; | ||
x.test.needed = true; | ||
}; | ||
}; | ||
} | ||
sunset | ||
]; | ||
}; | ||
} |
Oops, something went wrong.