2024-04-05 15:02:00 +02:00
|
|
|
let
|
|
|
|
inherit (builtins) attrValues;
|
2024-04-05 17:26:22 +02:00
|
|
|
in
|
2024-04-09 14:02:16 +02:00
|
|
|
(import ../lib/test.nix) {
|
2024-04-02 11:15:15 +02:00
|
|
|
name = "neovim";
|
|
|
|
|
2024-08-03 20:42:39 +02:00
|
|
|
nodes.machine =
|
|
|
|
{ nix-config, ... }:
|
|
|
|
{
|
|
|
|
imports = attrValues {
|
|
|
|
inherit (nix-config.nixosModules) desktop system shell;
|
|
|
|
|
|
|
|
customConfig = {
|
|
|
|
modules.desktop.container = true;
|
|
|
|
};
|
2024-05-19 05:56:31 +02:00
|
|
|
};
|
|
|
|
|
2024-08-03 21:26:45 +02:00
|
|
|
home-manager.sharedModules = with nix-config.homeModules; [ neovim ];
|
2024-04-05 15:02:00 +02:00
|
|
|
};
|
2024-08-03 20:42:39 +02:00
|
|
|
|
|
|
|
testScript = # python
|
|
|
|
''
|
|
|
|
machine.wait_for_unit("default.target")
|
|
|
|
|
|
|
|
machine.send_chars("user")
|
|
|
|
machine.sleep(1)
|
|
|
|
machine.send_key("ret")
|
|
|
|
machine.sleep(1)
|
|
|
|
machine.send_chars("user")
|
|
|
|
machine.sleep(1)
|
|
|
|
machine.send_key("ret")
|
|
|
|
machine.sleep(5)
|
|
|
|
|
|
|
|
machine.send_chars("nvim hello.txt")
|
|
|
|
machine.sleep(1)
|
|
|
|
machine.send_key("ret")
|
|
|
|
machine.sleep(20)
|
|
|
|
|
|
|
|
machine.send_chars("i")
|
|
|
|
machine.sleep(2)
|
|
|
|
machine.send_chars("Hello world")
|
|
|
|
machine.sleep(2)
|
|
|
|
machine.send_key("esc")
|
|
|
|
machine.sleep(2)
|
|
|
|
machine.send_chars(":wq")
|
|
|
|
machine.sleep(2)
|
|
|
|
machine.send_key("ret")
|
|
|
|
machine.sleep(2)
|
|
|
|
|
|
|
|
text = machine.succeed("cat /home/user/hello.txt")
|
|
|
|
|
|
|
|
assert "Hello world" in text
|
|
|
|
'';
|
2024-04-02 11:15:15 +02:00
|
|
|
}
|