forked from lix-project/lix
Add a test for LegacySSHStore that doesn't require a VM
This commit is contained in:
parent
eeebe4cdc5
commit
34c17fdae5
|
@ -25,7 +25,8 @@ nix_tests = \
|
||||||
pure-eval.sh \
|
pure-eval.sh \
|
||||||
check.sh \
|
check.sh \
|
||||||
plugins.sh \
|
plugins.sh \
|
||||||
search.sh
|
search.sh \
|
||||||
|
nix-copy-ssh.sh
|
||||||
# parallel.sh
|
# parallel.sh
|
||||||
|
|
||||||
install-tests += $(foreach x, $(nix_tests), tests/$(x))
|
install-tests += $(foreach x, $(nix_tests), tests/$(x))
|
||||||
|
|
20
tests/nix-copy-ssh.sh
Normal file
20
tests/nix-copy-ssh.sh
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
source common.sh
|
||||||
|
|
||||||
|
clearStore
|
||||||
|
clearCache
|
||||||
|
|
||||||
|
remoteRoot=$TEST_ROOT/store2
|
||||||
|
chmod -R u+w "$remoteRoot" || true
|
||||||
|
rm -rf "$remoteRoot"
|
||||||
|
|
||||||
|
outPath=$(nix-build dependencies.nix)
|
||||||
|
|
||||||
|
nix copy --to "ssh://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath
|
||||||
|
|
||||||
|
[ -f $remoteRoot$outPath/foobar ]
|
||||||
|
|
||||||
|
clearStore
|
||||||
|
|
||||||
|
nix copy --no-check-sigs --from "ssh://localhost?store=$NIX_STORE_DIR&remote-store=$remoteRoot%3fstore=$NIX_STORE_DIR%26real=$remoteRoot$NIX_STORE_DIR" $outPath
|
||||||
|
|
||||||
|
[ -f $outPath/foobar ]
|
Loading…
Reference in a new issue