2020-08-07 19:09:26 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source common.sh
|
|
|
|
|
2020-09-03 22:14:21 +00:00
|
|
|
drv=$(nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A rootCA --arg seed 1)
|
2020-08-07 19:09:26 +00:00
|
|
|
nix --experimental-features 'nix-command ca-derivations' show-derivation --derivation "$drv" --arg seed 1
|
|
|
|
|
2020-10-07 10:24:53 +00:00
|
|
|
buildAttr () {
|
2020-08-22 20:44:47 +00:00
|
|
|
local derivationPath=$1
|
2020-12-03 12:20:53 +00:00
|
|
|
local seedValue=$2
|
|
|
|
shift; shift
|
|
|
|
local args=("--experimental-features" "ca-derivations" "./content-addressed.nix" "-A" "$derivationPath" --arg seed "$seedValue" "--no-out-link")
|
2020-10-07 10:24:53 +00:00
|
|
|
args+=("$@")
|
|
|
|
nix-build "${args[@]}"
|
|
|
|
}
|
|
|
|
|
|
|
|
testRemoteCache () {
|
|
|
|
clearCache
|
2020-12-03 12:20:53 +00:00
|
|
|
local outPath=$(buildAttr dependentNonCA 1)
|
2020-10-07 10:24:53 +00:00
|
|
|
nix copy --to file://$cacheDir $outPath
|
|
|
|
clearStore
|
2020-12-03 12:20:53 +00:00
|
|
|
buildAttr dependentNonCA 1 --option substituters file://$cacheDir --no-require-sigs |& (! grep "building dependent-non-ca")
|
2020-10-07 10:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testDeterministicCA () {
|
2020-12-03 12:20:53 +00:00
|
|
|
[[ $(buildAttr rootCA 1) = $(buildAttr rootCA 2) ]]
|
2020-10-07 10:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testCutoffFor () {
|
2020-09-03 22:44:56 +00:00
|
|
|
local out1 out2
|
2020-12-03 12:20:53 +00:00
|
|
|
out1=$(buildAttr $1 1)
|
2020-10-07 10:24:53 +00:00
|
|
|
# The seed only changes the root derivation, and not it's output, so the
|
|
|
|
# dependent derivations should only need to be built once.
|
2020-12-03 12:20:53 +00:00
|
|
|
buildAttr rootCA 2
|
|
|
|
out2=$(buildAttr $1 2 -j0)
|
2020-09-03 22:44:56 +00:00
|
|
|
test "$out1" == "$out2"
|
2020-08-22 20:44:47 +00:00
|
|
|
}
|
2020-08-07 19:09:26 +00:00
|
|
|
|
2020-10-07 10:24:53 +00:00
|
|
|
testCutoff () {
|
|
|
|
# Don't directly build depenentCA, that way we'll make sure we dodn't rely on
|
|
|
|
# dependent derivations always being already built.
|
|
|
|
#testDerivation dependentCA
|
|
|
|
testCutoffFor transitivelyDependentCA
|
|
|
|
testCutoffFor dependentNonCA
|
2020-11-25 17:20:35 +00:00
|
|
|
testCutoffFor dependentFixedOutput
|
2020-10-07 10:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testGC () {
|
|
|
|
nix-instantiate --experimental-features ca-derivations ./content-addressed.nix -A rootCA --arg seed 5
|
|
|
|
nix-collect-garbage --experimental-features ca-derivations --option keep-derivations true
|
2020-12-08 17:11:33 +00:00
|
|
|
clearStore
|
|
|
|
buildAttr rootCA 1 --out-link $TEST_ROOT/rootCA
|
|
|
|
nix-collect-garbage --experimental-features ca-derivations
|
|
|
|
buildAttr rootCA 1 -j0
|
2020-10-07 10:24:53 +00:00
|
|
|
}
|
|
|
|
|
2020-12-10 16:40:00 +00:00
|
|
|
testNixCommand () {
|
|
|
|
clearStore
|
|
|
|
nix build --experimental-features 'nix-command ca-derivations' --file ./content-addressed.nix --no-link
|
|
|
|
}
|
|
|
|
|
2020-10-08 15:36:51 +00:00
|
|
|
# Disabled until we have it properly working
|
|
|
|
# testRemoteCache
|
2020-11-09 15:04:18 +00:00
|
|
|
clearStore
|
2020-10-07 10:24:53 +00:00
|
|
|
testDeterministicCA
|
2020-11-09 15:04:18 +00:00
|
|
|
clearStore
|
2020-10-07 10:24:53 +00:00
|
|
|
testCutoff
|
|
|
|
testGC
|
2020-12-10 16:40:00 +00:00
|
|
|
testNixCommand
|