1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/functional/chroot-store.sh

51 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2020-07-17 15:50:53 -04:00
source common.sh
echo example > "$TEST_ROOT"/example.txt
mkdir -p "$TEST_ROOT/x"
2020-07-17 15:50:53 -04:00
2024-03-29 08:19:36 -04:00
export NIX_STORE_DIR=/nix2/store
2020-07-17 15:50:53 -04:00
CORRECT_PATH=$(cd "$TEST_ROOT" && nix-store --store ./x --add example.txt)
2020-07-17 15:50:53 -04:00
2024-03-29 08:19:36 -04:00
[[ $CORRECT_PATH =~ ^/nix2/store/.*-example.txt$ ]]
2020-07-17 15:50:53 -04:00
PATH1=$(cd "$TEST_ROOT" && nix path-info --store ./x "$CORRECT_PATH")
[ "$CORRECT_PATH" == "$PATH1" ]
2020-07-17 15:50:53 -04:00
PATH2=$(nix path-info --store "$TEST_ROOT/x" "$CORRECT_PATH")
[ "$CORRECT_PATH" == "$PATH2" ]
2020-07-17 15:50:53 -04:00
PATH3=$(nix path-info --store "local?root=$TEST_ROOT/x" "$CORRECT_PATH")
[ "$CORRECT_PATH" == "$PATH3" ]
# Ensure store info trusted works with local store
nix --store "$TEST_ROOT/x" store info --json | jq -e '.trusted'
2024-03-29 08:19:36 -04:00
# Test building in a chroot store.
if canUseSandbox; then
flakeDir=$TEST_ROOT/flake
mkdir -p "$flakeDir"
2024-03-29 08:19:36 -04:00
cat > "$flakeDir"/flake.nix <<EOF
2024-03-29 08:19:36 -04:00
{
outputs = inputs: rec {
packages.$system.default = import ./simple.nix;
};
}
EOF
cp simple.nix shell.nix simple.builder.sh config.nix "$flakeDir/"
2024-03-29 08:19:36 -04:00
TODO_NixOS
outPath=$(nix build --print-out-paths --no-link --sandbox-paths '/nix? /bin? /lib? /lib64? /usr?' --store "$TEST_ROOT/x" path:"$flakeDir")
2024-03-29 08:19:36 -04:00
[[ $outPath =~ ^/nix2/store/.*-simple$ ]]
base=$(basename "$outPath")
[[ $(cat "$TEST_ROOT"/x/nix/store/"$base"/hello) = 'Hello World!' ]]
2024-03-29 08:19:36 -04:00
fi