mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
89 lines
2.3 KiB
Bash
Executable file
89 lines
2.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
set -x
|
|
|
|
source common.sh
|
|
|
|
export NIX_CONFIG='build-users-group = '
|
|
|
|
# Creating testing directories
|
|
|
|
storeA="$TEST_ROOT/store-a"
|
|
storeBTop="$TEST_ROOT/store-b"
|
|
storeB="local-overlay?root=$TEST_ROOT/merged-store&lower-store=$TEST_ROOT/store-a"
|
|
|
|
mkdir -p "$TEST_ROOT"/{store-a,store-b,merged-store/nix/store,workdir}
|
|
|
|
# Mounting Overlay Store
|
|
|
|
# Init lower store with some stuff
|
|
nix-store --store "$storeA" --add dummy
|
|
|
|
# Build something in lower store
|
|
path=$(nix-build ./hermetic.nix --arg busybox "$busybox" --arg seed 1 --store "$storeA")
|
|
|
|
mount -t overlay overlay \
|
|
-o lowerdir="$storeA/nix/store" \
|
|
-o upperdir="$storeBTop" \
|
|
-o workdir="$TEST_ROOT/workdir" \
|
|
"$TEST_ROOT/merged-store/nix/store" \
|
|
|| skipTest "overlayfs is not supported"
|
|
|
|
cleanupOverlay () {
|
|
umount "$TEST_ROOT/merged-store/nix/store"
|
|
rm -r $TEST_ROOT/workdir
|
|
}
|
|
trap cleanupOverlay EXIT
|
|
|
|
toRealPath () {
|
|
storeDir=$1; shift
|
|
storePath=$1; shift
|
|
echo $storeDir$(echo $storePath | sed "s^$NIX_STORE_DIR^^")
|
|
}
|
|
|
|
### Check status
|
|
|
|
# Checking for path in lower layer
|
|
stat $(toRealPath "$storeA/nix/store" "$path")
|
|
|
|
# Checking for path in upper layer (should fail)
|
|
expect 1 stat $(toRealPath "$storeBTop" "$path")
|
|
|
|
# Checking for path in overlay store matching lower layer
|
|
diff $(toRealPath "$storeA/nix/store" "$path") $(toRealPath "$TEST_ROOT/merged-store/nix/store" "$path")
|
|
|
|
# Verifying path in lower layer
|
|
nix-store --verify-path --store "$storeA" "$path"
|
|
|
|
# Verifying path in merged-store
|
|
# FIXME should succeed
|
|
expect 1 nix-store --verify-path --store "$storeB" "$path"
|
|
|
|
### Do a redundant add
|
|
|
|
# upper layer should not have it
|
|
expect 1 stat $(toRealPath "$storeBTop/nix/store" "$path")
|
|
|
|
path=$(nix-store --store "$storeB" --add dummy)
|
|
|
|
# lower store should have it from before
|
|
stat $(toRealPath "$storeA/nix/store" "$path")
|
|
|
|
# upper layer should still not have it (no redundant copy)
|
|
# FIXME should fail
|
|
stat $(toRealPath "$storeA/nix/store" "$path")
|
|
|
|
### Do a build in overlay store
|
|
|
|
path=$(nix-build ./hermetic.nix --arg busybox $busybox --arg seed 2 --store "$storeB")
|
|
|
|
# Checking for path in lower layer (should fail)
|
|
expect 1 stat $(toRealPath "$storeA/nix/store" "$path")
|
|
|
|
# Checking for path in upper layer
|
|
stat $(toRealPath "$storeBTop" "$path")
|
|
|
|
# Verifying path in overlay store
|
|
nix-store --verify-path --store "$storeB" "$path"
|