test/sandbox: pass want file as argument
This avoids building the check program multiple times. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
parent
75e0c5d406
commit
2d379b5a38
@ -3,22 +3,9 @@
|
||||
buildGoModule,
|
||||
|
||||
version,
|
||||
name,
|
||||
want,
|
||||
}:
|
||||
let
|
||||
wantFile = writeText "fortify-${name}-want.json" (builtins.toJSON want);
|
||||
mainFile = writeText "main.go" ''
|
||||
package main
|
||||
|
||||
import "os"
|
||||
import "git.gensokyo.uk/security/fortify/test/sandbox"
|
||||
|
||||
func main() { (&sandbox.T{FS: os.DirFS("/"), PMountsPath: "/.fortify/mounts"}).MustCheckFile("${wantFile}") }
|
||||
'';
|
||||
in
|
||||
buildGoModule {
|
||||
pname = "fortify-${name}-check-sandbox";
|
||||
pname = "check-sandbox";
|
||||
inherit version;
|
||||
|
||||
src = ../.;
|
||||
@ -26,6 +13,13 @@ buildGoModule {
|
||||
|
||||
preBuild = ''
|
||||
go mod init git.gensokyo.uk/security/fortify/test >& /dev/null
|
||||
cp ${mainFile} main.go
|
||||
cp ${writeText "main.go" ''
|
||||
package main
|
||||
|
||||
import "os"
|
||||
import "git.gensokyo.uk/security/fortify/test/sandbox"
|
||||
|
||||
func main() { (&sandbox.T{FS: os.DirFS("/"), PMountsPath: "/.fortify/mounts"}).MustCheckFile(os.Args[1]) }
|
||||
''} main.go
|
||||
'';
|
||||
}
|
||||
|
@ -25,6 +25,8 @@ let
|
||||
;
|
||||
};
|
||||
|
||||
checkSandbox = callPackage ../. { inherit version; };
|
||||
|
||||
callTestCase =
|
||||
path:
|
||||
let
|
||||
@ -40,10 +42,7 @@ let
|
||||
verbose = true;
|
||||
share = foot;
|
||||
packages = [ ];
|
||||
command = "${callPackage ../. {
|
||||
inherit (tc) name want;
|
||||
inherit version;
|
||||
}}";
|
||||
command = builtins.toString (checkSandbox tc.name tc.want);
|
||||
extraPaths = [
|
||||
{
|
||||
src = "/proc/mounts";
|
||||
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
writeShellScript,
|
||||
writeText,
|
||||
callPackage,
|
||||
|
||||
name,
|
||||
version,
|
||||
want,
|
||||
}:
|
||||
name: want:
|
||||
writeShellScript "fortify-${name}-check-sandbox-script" ''
|
||||
set -e
|
||||
${callPackage ./assert.nix { inherit name version want; }}/bin/test
|
||||
${callPackage ./assert.nix { inherit version; }}/bin/test \
|
||||
${writeText "fortify-${name}-want.json" (builtins.toJSON want)}
|
||||
touch /tmp/sandbox-ok
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user