mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
22ebaedc73
Diff: https://github.com/aquasecurity/tracee/compare/v0.9.2...v0.10.0 Changelog: https://github.com/aquasecurity/tracee/releases/tag/v0.10.0 Fix integration tests after recent changes
49 lines
1.9 KiB
Nix
49 lines
1.9 KiB
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "tracee-integration";
|
|
nodes = {
|
|
machine = { config, pkgs, ... }: {
|
|
# EventFilters/trace_only_events_from_new_containers requires docker
|
|
# podman with docker compat will suffice
|
|
virtualisation.podman.enable = true;
|
|
virtualisation.podman.dockerCompat = true;
|
|
|
|
environment.systemPackages = [
|
|
# build the go integration tests as a binary
|
|
(pkgs.tracee.overrideAttrs (oa: {
|
|
pname = oa.pname + "-integration";
|
|
postPatch = oa.postPatch or "" + ''
|
|
# prepare tester.sh
|
|
patchShebangs tests/integration/tester.sh
|
|
# fix the test to look at nixos paths for running programs
|
|
substituteInPlace tests/integration/integration_test.go \
|
|
--replace "/usr/bin" "/run"
|
|
'';
|
|
nativeBuildInputs = oa.nativeBuildInputs or [ ] ++ [ pkgs.makeWrapper ];
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
# just build the static lib we need for the go test binary
|
|
make $makeFlags ''${enableParallelBuilding:+-j$NIX_BUILD_CORES} bpf-core ./dist/btfhub
|
|
|
|
# then compile the tests to be ran later
|
|
CGO_LDFLAGS="$(pkg-config --libs libbpf)" go test -tags core,ebpf,integration -p 1 -c -o $GOPATH/tracee-integration ./tests/integration/...
|
|
runHook postBuild
|
|
'';
|
|
doCheck = false;
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv $GOPATH/tracee-integration $out/bin/
|
|
'';
|
|
doInstallCheck = false;
|
|
}))
|
|
];
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
with subtest("run integration tests"):
|
|
# EventFilters/trace_only_events_from_new_containers also requires a container called "alpine"
|
|
machine.succeed('tar cv -C ${pkgs.pkgsStatic.busybox} . | podman import - alpine --change ENTRYPOINT=sleep')
|
|
|
|
print(machine.succeed('tracee-integration -test.v'))
|
|
'';
|
|
})
|