2007-08-13 14:56:40 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
2014-02-26 18:28:55 +01: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
|
|
|
|
|
2023-10-18 00:14:11 +05:30
|
|
|
# Ensure that store info trusted works with ssh-ng://
|
|
|
|
nix --store ssh-ng://localhost?remote-store=$TEST_ROOT/other-store store info --json | jq -e '.trusted'
|
2022-12-26 20:21:08 +00:00
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
startDaemon
|
2014-02-26 18:28:55 +01:00
|
|
|
|
2022-12-26 20:21:08 +00:00
|
|
|
if isDaemonNewer "2.15pre0"; then
|
|
|
|
# Ensure that ping works trusted with new daemon
|
2023-10-18 00:14:11 +05:30
|
|
|
nix store info --json | jq -e '.trusted'
|
2024-04-07 22:43:02 -07: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
|
2023-10-18 00:14:11 +05:30
|
|
|
nix store info --json | jq -e 'has("trusted") | not'
|
2022-12-26 20:21:08 +00:00
|
|
|
fi
|
|
|
|
|
2020-11-17 13:50:36 +01:00
|
|
|
# Test import-from-derivation through the daemon.
|
2023-12-23 17:15:09 -05:00
|
|
|
[[ $(nix eval --impure --raw --file ./ifd.nix) = hi ]]
|
2020-11-17 13:50:36 +01:00
|
|
|
|
2024-05-06 15:42:49 +02:00
|
|
|
NIX_REMOTE_=$NIX_REMOTE $SHELL ./user-envs-test-case.sh
|
2014-02-26 18:28:55 +01:00
|
|
|
|
2020-11-10 10:43:33 +01:00
|
|
|
nix-store --gc --max-freed 1K
|
|
|
|
|
2014-02-26 18:28:55 +01:00
|
|
|
nix-store --dump-db > $TEST_ROOT/d1
|
|
|
|
NIX_REMOTE= nix-store --dump-db > $TEST_ROOT/d2
|
2014-02-26 22:41:29 +01:00
|
|
|
cmp $TEST_ROOT/d1 $TEST_ROOT/d2
|
2014-02-26 18:28:55 +01:00
|
|
|
|
2011-07-20 11:50:13 +00:00
|
|
|
killDaemon
|