2007-08-13 14:56:40 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
2014-02-26 17:28:55 +00:00
|
|
|
|
2020-08-12 15:14:56 +00:00
|
|
|
# Ensure "fake ssh" remote store works just as legacy fake ssh would.
|
|
|
|
nix --store ssh-ng://localhost?remote-store=$TEST_ROOT/other-store doctor
|
|
|
|
|
2022-12-26 20:21:08 +00:00
|
|
|
# Ensure that store ping trusted works with ssh-ng://
|
|
|
|
nix --store ssh-ng://localhost?remote-store=$TEST_ROOT/other-store store ping --json | jq -e '.trusted'
|
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
startDaemon
|
2014-02-26 17:28:55 +00:00
|
|
|
|
2022-12-26 20:21:08 +00:00
|
|
|
if isDaemonNewer "2.15pre0"; then
|
|
|
|
# Ensure that ping works trusted with new daemon
|
|
|
|
nix store ping --json | jq -e '.trusted'
|
2024-04-08 05:34:24 +00:00
|
|
|
# Suppress grumpiness about multiple nixes on PATH
|
|
|
|
(nix doctor || true) 2>&1 | grep 'You are trusted by'
|
2022-12-26 20:21:08 +00:00
|
|
|
else
|
|
|
|
# And the the field is absent with the old daemon
|
|
|
|
nix store ping --json | jq -e 'has("trusted") | not'
|
|
|
|
fi
|
|
|
|
|
2020-11-17 12:50:36 +00:00
|
|
|
# Test import-from-derivation through the daemon.
|
2023-12-23 22:15:09 +00:00
|
|
|
[[ $(nix eval --impure --raw --file ./ifd.nix) = hi ]]
|
2020-11-17 12:50:36 +00:00
|
|
|
|
2020-06-08 08:01:14 +00:00
|
|
|
storeCleared=1 NIX_REMOTE_=$NIX_REMOTE $SHELL ./user-envs.sh
|
2014-02-26 17:28:55 +00:00
|
|
|
|
2020-11-10 09:43:33 +00:00
|
|
|
nix-store --gc --max-freed 1K
|
|
|
|
|
2014-02-26 17:28:55 +00:00
|
|
|
nix-store --dump-db > $TEST_ROOT/d1
|
|
|
|
NIX_REMOTE= nix-store --dump-db > $TEST_ROOT/d2
|
2014-02-26 21:41:29 +00:00
|
|
|
cmp $TEST_ROOT/d1 $TEST_ROOT/d2
|
2014-02-26 17:28:55 +00:00
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
killDaemon
|