neovim-flake/flake/tests/checks/nixosModule.nix

57 lines
1.2 KiB
Nix
Raw Normal View History

2024-05-06 15:13:38 +02:00
{
nixosTest,
nixosModules,
testProfile,
2024-05-06 15:13:38 +02:00
...
}:
nixosTest {
2024-05-06 15:43:05 +02:00
name = "nixos-test";
2024-05-06 15:13:38 +02:00
nodes.machine = {
imports = [
testProfile
2024-05-06 15:13:38 +02:00
nixosModules.nvf
];
2024-05-06 15:43:05 +02:00
config = {
programs.nvf.enable = true;
};
2024-05-06 15:13:38 +02:00
};
testScript = ''
import subprocess
machine.wait_for_unit("default.target")
def check_errs(process):
# Check for errors
print("Connecting to Neovim process")
# Capture stdout and stderr
stdout, stderr = process.communicate()
# Print captured stdout and stderr
if stdout:
print("Captured stdout:")
print(stdout.decode('utf-8'))
if stderr:
print("Captured stderr:")
print(stderr.decode('utf-8'))
def run_neovim_headless():
print("Running Neovim in headless mode.")
# Run Neovim in headless mode
nvim_process = subprocess.Popen(['nvim', '--headless'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
check_errs(nvim_process)
# Load configuration file
nvim_process.stdin.write(b':NonExistentCommand\n')
nvim_process.stdin.flush()
# run Neovim in headless mode
# and expect it to return sucessfully
machine.succeed(run_neovim_headless())
'';
2024-05-06 15:13:38 +02:00
}