Skip to content

Commit

Permalink
Add a test for LegacySSHStore that doesn't require a VM
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Aug 3, 2018
1 parent eeebe4c commit 34c17fd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/local.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ nix_tests = \
pure-eval.sh \
check.sh \
plugins.sh \
search.sh
search.sh \
nix-copy-ssh.sh
# parallel.sh

install-tests += $(foreach x, $(nix_tests), tests/$(x))
Expand Down
20 changes: 20 additions & 0 deletions tests/nix-copy-ssh.sh
Original file line number Diff line number Diff line change
@@ -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 ]

0 comments on commit 34c17fd

Please sign in to comment.