mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
abe218950c
You can now run a test in the nixos/tests directory directly using nix-build, e.g. $ nix-build '<nixos/tests/login.nix>' -A test This gets rid of having to add the test to nixos/tests/default.nix. (Of course, you still need to add it to nixos/release.nix if you want Hydra to run the test.)
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
import ./make-test.nix ({ pkgs, ... }: {
|
|
|
|
nodes = {
|
|
|
|
server =
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.openssh.enable = true;
|
|
security.pam.services.sshd.limits =
|
|
[ { domain = "*"; item = "memlock"; type = "-"; value = 1024; } ];
|
|
};
|
|
|
|
client =
|
|
{ config, pkgs, ... }: { };
|
|
|
|
};
|
|
|
|
testScript = ''
|
|
startAll;
|
|
|
|
my $key=`${pkgs.openssh}/bin/ssh-keygen -t dsa -f key -N ""`;
|
|
|
|
$server->waitForUnit("sshd");
|
|
|
|
$server->succeed("mkdir -m 700 /root/.ssh");
|
|
$server->copyFileFromHost("key.pub", "/root/.ssh/authorized_keys");
|
|
|
|
$client->succeed("mkdir -m 700 /root/.ssh");
|
|
$client->copyFileFromHost("key", "/root/.ssh/id_dsa");
|
|
$client->succeed("chmod 600 /root/.ssh/id_dsa");
|
|
|
|
$client->waitForUnit("network.target");
|
|
$client->succeed("ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no server 'echo hello world' >&2");
|
|
$client->succeed("ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no server 'ulimit -l' | grep 1024");
|
|
'';
|
|
})
|