summary refs log tree commit diff
path: root/tests/openssh.nix
blob: 1c93f8a3b417d6ace41822d2e6c7ae36d2c52098 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ pkgs, ... }:

{
  nodes = {
  
    server = 
      { config, pkgs, ... }:
      
      {
        services.openssh.enable = true;
      };
      
    client = 
      { config, pkgs, ... }: { };
      
  };
  
  testScript = ''
    startAll;
    
    my $key=`${pkgs.openssh}/bin/ssh-keygen -t dsa -f key -N ""`;

    $server->waitForJob("sshd");
    
    $server->mustSucceed("mkdir -m 700 /root/.ssh");
    $server->copyFileFromHost("key.pub", "/root/.ssh/authorized_keys");
    
    $client->mustSucceed("mkdir -m 700 /root/.ssh");
    $client->copyFileFromHost("key", "/root/.ssh/id_dsa");
    $client->mustSucceed("chmod 600 /root/.ssh/id_dsa");
    
    $client->mustSucceed("ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no server 'echo hello world'");
  '';
}