nixos/tests/xrdp: port to python
This commit is contained in:
parent
5a3dcb531e
commit
362e377154
@ -1,4 +1,4 @@
|
|||||||
import ./make-test.nix ({ pkgs, ...} : {
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
||||||
name = "xrdp";
|
name = "xrdp";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
maintainers = [ volth ];
|
maintainers = [ volth ];
|
||||||
@ -21,25 +21,27 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = { ... }: ''
|
testScript = { nodes, ... }: let
|
||||||
startAll;
|
user = nodes.client.config.users.users.alice;
|
||||||
|
in ''
|
||||||
|
start_all()
|
||||||
|
|
||||||
$client->waitForX;
|
client.wait_for_x()
|
||||||
$client->waitForFile("/home/alice/.Xauthority");
|
client.wait_for_file("${user.home}/.Xauthority")
|
||||||
$client->succeed("xauth merge ~alice/.Xauthority");
|
client.succeed("xauth merge ${user.home}/.Xauthority")
|
||||||
|
|
||||||
$client->sleep(5);
|
client.sleep(5)
|
||||||
|
|
||||||
$client->execute("xterm &");
|
client.execute("xterm &")
|
||||||
$client->sleep(1);
|
client.sleep(1)
|
||||||
$client->sendChars("xfreerdp /cert-tofu /w:640 /h:480 /v:127.0.0.1 /u:alice /p:foobar\n");
|
client.send_chars("xfreerdp /cert-tofu /w:640 /h:480 /v:127.0.0.1 /u:${user.name} /p:${user.password}\n")
|
||||||
$client->sleep(5);
|
client.sleep(5)
|
||||||
$client->screenshot("localrdp");
|
client.screenshot("localrdp")
|
||||||
|
|
||||||
$client->execute("xterm &");
|
client.execute("xterm &")
|
||||||
$client->sleep(1);
|
client.sleep(1)
|
||||||
$client->sendChars("xfreerdp /cert-tofu /w:640 /h:480 /v:server /u:alice /p:foobar\n");
|
client.send_chars("xfreerdp /cert-tofu /w:640 /h:480 /v:server /u:${user.name} /p:${user.password}\n")
|
||||||
$client->sleep(5);
|
client.sleep(5)
|
||||||
$client->screenshot("remoterdp");
|
client.screenshot("remoterdp")
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user