2018-11-11 08:41:11 +00:00
|
|
|
{ system ? builtins.currentSystem,
|
|
|
|
config ? {},
|
|
|
|
pkgs ? import ../.. { inherit system config; }
|
|
|
|
}:
|
2011-01-13 10:54:07 +00:00
|
|
|
|
2020-02-14 07:50:55 +00:00
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
2011-01-13 10:54:07 +00:00
|
|
|
|
2017-10-11 19:01:45 +01:00
|
|
|
let
|
|
|
|
output = runInMachine {
|
|
|
|
drv = pkgs.hello;
|
2018-07-20 21:56:59 +01:00
|
|
|
machine = { ... }: { /* services.sshd.enable = true; */ };
|
2017-10-11 19:01:45 +01:00
|
|
|
};
|
2018-12-07 04:56:53 +00:00
|
|
|
|
|
|
|
test = pkgs.runCommand "verify-output" { inherit output; } ''
|
|
|
|
if [ ! -e "$output/bin/hello" ]; then
|
|
|
|
echo "Derivation built using runInMachine produced incorrect output:" >&2
|
|
|
|
ls -laR "$output" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
"$output/bin/hello" > "$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
in test // { inherit test; } # To emulate behaviour of makeTest
|