Add a test for the SSH substituter

This commit is contained in:
Eelco Dolstra 2014-07-10 01:50:29 +02:00
parent 0e5d0c1543
commit 66dbc0fdee

View file

@ -4,7 +4,7 @@
with import <nixpkgs/nixos/lib/testing.nix> { inherit system; }; with import <nixpkgs/nixos/lib/testing.nix> { inherit system; };
makeTest (let pkgA = pkgs.aterm; pkgB = pkgs.wget; in { makeTest (let pkgA = pkgs.aterm; pkgB = pkgs.wget; pkgC = pkgs.hello; in {
nodes = nodes =
{ client = { client =
@ -12,13 +12,14 @@ makeTest (let pkgA = pkgs.aterm; pkgB = pkgs.wget; in {
{ virtualisation.writableStore = true; { virtualisation.writableStore = true;
virtualisation.pathsInNixDB = [ pkgA ]; virtualisation.pathsInNixDB = [ pkgA ];
nix.package = nix; nix.package = nix;
nix.binaryCaches = [ ];
}; };
server = server =
{ config, pkgs, ... }: { config, pkgs, ... }:
{ services.openssh.enable = true; { services.openssh.enable = true;
virtualisation.writableStore = true; virtualisation.writableStore = true;
virtualisation.pathsInNixDB = [ pkgB ]; virtualisation.pathsInNixDB = [ pkgB pkgC ];
nix.package = nix; nix.package = nix;
}; };
}; };
@ -49,6 +50,14 @@ makeTest (let pkgA = pkgs.aterm; pkgB = pkgs.wget; in {
$client->fail("nix-store --check-validity ${pkgB}"); $client->fail("nix-store --check-validity ${pkgB}");
$client->succeed("nix-copy-closure --from server --gzip ${pkgB} >&2"); $client->succeed("nix-copy-closure --from server --gzip ${pkgB} >&2");
$client->succeed("nix-store --check-validity ${pkgB}"); $client->succeed("nix-store --check-validity ${pkgB}");
# Copy the closure of package C via the SSH substituter.
$client->fail("nix-store -r ${pkgC}");
$client->succeed(
"nix-store --option use-ssh-substituter true"
. " --option ssh-substituter-hosts root\@server"
. " -r ${pkgC} >&2");
$client->succeed("nix-store --check-validity ${pkgC}");
''; '';
}) })