forked from lix-project/lix
9207f94582
This function returns true or false depending on whether the Nix client is trusted or not. Mostly relevant when speaking to a remote store with a daemon. We include this information in `nix ping store` and `nix doctor` Co-Authored-By: John Ericson <John.Ericson@Obsidian.Systems>
23 lines
518 B
Bash
23 lines
518 B
Bash
source common.sh
|
|
|
|
cd $TEST_ROOT
|
|
|
|
echo example > example.txt
|
|
mkdir -p ./x
|
|
|
|
NIX_STORE_DIR=$TEST_ROOT/x
|
|
|
|
CORRECT_PATH=$(nix-store --store ./x --add example.txt)
|
|
|
|
PATH1=$(nix path-info --store ./x $CORRECT_PATH)
|
|
[ $CORRECT_PATH == $PATH1 ]
|
|
|
|
PATH2=$(nix path-info --store "$PWD/x" $CORRECT_PATH)
|
|
[ $CORRECT_PATH == $PATH2 ]
|
|
|
|
PATH3=$(nix path-info --store "local?root=$PWD/x" $CORRECT_PATH)
|
|
[ $CORRECT_PATH == $PATH3 ]
|
|
|
|
# Ensure store ping trusted works with local store
|
|
nix --store ./x store ping --json | jq -e '.trusted'
|