1 import ./make-test-python.nix ({ pkgs, lib, ... }:
3 inherit (import ./ssh-keys.nix pkgs)
4 snakeOilPrivateKey snakeOilPublicKey;
6 setUpPrivateKey = name: ''
9 "chown 700 /root/.ssh",
10 "cat '${snakeOilPrivateKey}' > /root/.ssh/id_snakeoil",
11 "chown 600 /root/.ssh/id_snakeoil",
13 ${name}.wait_for_file("/root/.ssh/id_snakeoil")
16 sshOpts = "-oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null -oIdentityFile=/root/.ssh/id_snakeoil";
20 name = "tmate-ssh-server";
24 services.tmate-ssh-server = {
30 environment.systemPackages = [ pkgs.tmate ];
31 services.openssh.enable = true;
32 users.users.root.openssh.authorizedKeys.keys = [ snakeOilPublicKey ];
35 environment.systemPackages = [ pkgs.openssh ];
41 server.wait_for_unit("tmate-ssh-server.service")
42 server.wait_for_open_port(2223)
43 server.wait_for_file("/etc/tmate-ssh-server-keys/ssh_host_ed25519_key.pub")
44 server.wait_for_file("/etc/tmate-ssh-server-keys/ssh_host_rsa_key.pub")
45 server.succeed("tmate-client-config > /tmp/tmate.conf")
46 server.wait_for_file("/tmp/tmate.conf")
48 ${setUpPrivateKey "server"}
49 client.wait_for_unit("sshd.service")
50 client.wait_for_open_port(22)
51 server.succeed("scp ${sshOpts} /tmp/tmate.conf client:/tmp/tmate.conf")
53 client.wait_for_file("/tmp/tmate.conf")
54 client.send_chars("root\n")
56 client.send_chars("tmate -f /tmp/tmate.conf\n")
58 client.send_chars("q")
60 client.send_chars("tmate display -p '#{tmate_ssh}' > /tmp/ssh_command\n")
61 client.wait_for_file("/tmp/ssh_command")
62 ssh_cmd = client.succeed("cat /tmp/ssh_command")
64 client2.succeed("mkdir -p ~/.ssh; ssh-keyscan -p 2223 server > ~/.ssh/known_hosts")
65 client2.send_chars("root\n")
67 client2.send_chars(ssh_cmd.strip() + "\n")
69 client2.send_chars("touch /tmp/client_2\n")
71 client.wait_for_file("/tmp/client_2")