2020-08-07 19:09:26 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
source common.sh
|
|
|
|
|
2023-06-30 15:11:12 +00:00
|
|
|
drv=$(nix-instantiate ./content-addressed.nix -A rootCA --arg seed 1)^out
|
2023-04-02 17:59:19 +00:00
|
|
|
nix derivation show "$drv" --arg seed 1
|
2020-08-07 19:09:26 +00:00
|
|
|
|
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
|
2023-03-01 23:02:26 +00:00
|
|
|
local args=("./content-addressed.nix" "-A" "$derivationPath" --arg seed "$seedValue" "--no-out-link")
|
2020-10-07 10:24:53 +00:00
|
|
|
args+=("$@")
|
|
|
|
nix-build "${args[@]}"
|
|
|
|
}
|
|
|
|
|
|
|
|
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 () {
|
2022-03-02 20:48:25 +00:00
|
|
|
# Don't directly build dependentCA, that way we'll make sure we don't rely on
|
2020-10-07 10:24:53 +00:00
|
|
|
# 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 () {
|
2023-03-01 23:02:26 +00:00
|
|
|
nix-instantiate ./content-addressed.nix -A rootCA --arg seed 5
|
|
|
|
nix-collect-garbage --option keep-derivations true
|
2020-12-08 17:11:33 +00:00
|
|
|
clearStore
|
|
|
|
buildAttr rootCA 1 --out-link $TEST_ROOT/rootCA
|
2023-03-01 23:02:26 +00:00
|
|
|
nix-collect-garbage
|
2020-12-08 17:11:33 +00:00
|
|
|
buildAttr rootCA 1 -j0
|
2020-10-07 10:24:53 +00:00
|
|
|
}
|
|
|
|
|
2020-12-10 16:40:00 +00:00
|
|
|
testNixCommand () {
|
|
|
|
clearStore
|
2023-03-01 23:02:26 +00:00
|
|
|
nix build --file ./content-addressed.nix --no-link
|
2020-12-10 16:40:00 +00:00
|
|
|
}
|
|
|
|
|
2021-05-05 19:00:08 +00:00
|
|
|
# Regression test for https://github.com/NixOS/nix/issues/4775
|
|
|
|
testNormalization () {
|
|
|
|
clearStore
|
|
|
|
outPath=$(buildAttr rootCA 1)
|
|
|
|
test "$(stat -c %Y $outPath)" -eq 1
|
|
|
|
}
|
|
|
|
|
2020-11-09 15:04:18 +00:00
|
|
|
clearStore
|
2021-05-05 19:00:08 +00:00
|
|
|
testNormalization
|
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
|