30dcc19d1f
I think it is bad for these reasons when `tests/` contains a mix of functional and integration tests - Concepts is harder to understand, the documentation makes a good unit vs functional vs integration distinction, but when the integration tests are just two subdirs within `tests/` this is not clear. - Source filtering in the `flake.nix` is more complex. We need to filter out some of the dirs from `tests/`, rather than simply pick the dirs we want and take all of them. This is a good sign the structure of what we are trying to do is not matching the structure of the files. With this change we have a clean: ```shell-session $ git show 'HEAD:tests' tree HEAD:tests functional/ installer/ nixos/ ``` (cherry picked from commit 68c81c737571794f7246db53fb4774e94fcf4b7e)
39 lines
979 B
Bash
39 lines
979 B
Bash
source common.sh
|
||
|
||
BINARY_CACHE=file://$cacheDir
|
||
|
||
getHash() {
|
||
basename "$1" | cut -d '-' -f 1
|
||
}
|
||
getRemoteNarInfo () {
|
||
echo "$cacheDir/$(getHash "$1").narinfo"
|
||
}
|
||
|
||
cat <<EOF > $TEST_HOME/good.txt
|
||
I’m a good path
|
||
EOF
|
||
|
||
cat <<EOF > $TEST_HOME/bad.txt
|
||
I’m a bad path
|
||
EOF
|
||
|
||
good=$(nix-store --add $TEST_HOME/good.txt)
|
||
bad=$(nix-store --add $TEST_HOME/bad.txt)
|
||
nix copy --to "$BINARY_CACHE" "$good"
|
||
nix copy --to "$BINARY_CACHE" "$bad"
|
||
nix-collect-garbage >/dev/null 2>&1
|
||
|
||
# Falsifying the narinfo file for '$good'
|
||
goodPathNarInfo=$(getRemoteNarInfo "$good")
|
||
badPathNarInfo=$(getRemoteNarInfo "$bad")
|
||
for fieldName in URL FileHash FileSize NarHash NarSize; do
|
||
sed -i "/^$fieldName/d" "$goodPathNarInfo"
|
||
grep -E "^$fieldName" "$badPathNarInfo" >> "$goodPathNarInfo"
|
||
done
|
||
|
||
# Copying back '$good' from the binary cache. This should fail as it is
|
||
# corrupted
|
||
if nix copy --from "$BINARY_CACHE" "$good"; then
|
||
fail "Importing a path with a wrong CA field should fail"
|
||
fi
|