nixos/emacs-daemon: convert test to python

gstqt5
Julian Stecklina 2019-10-27 11:44:06 +01:00 committed by Jacek Galowicz
parent 9b33b5d38c
commit 2af2d59fd6
1 changed files with 13 additions and 10 deletions

View File

@ -1,4 +1,4 @@
import ./make-test.nix ({ pkgs, ...} : {
import ./make-test-python.nix ({ pkgs, ...} : {
name = "emacs-daemon";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ ];
@ -21,25 +21,28 @@ import ./make-test.nix ({ pkgs, ...} : {
environment.variables.TEST_SYSTEM_VARIABLE = "system variable";
};
testScript =
''
$machine->waitForUnit("multi-user.target");
testScript = ''
machine.wait_for_unit("multi-user.target")
# checks that the EDITOR environment variable is set
$machine->succeed("test \$(basename \"\$EDITOR\") = emacseditor");
machine.succeed('test $(basename "$EDITOR") = emacseditor')
# waits for the emacs service to be ready
$machine->waitUntilSucceeds("systemctl --user status emacs.service | grep 'Active: active'");
machine.wait_until_succeeds(
"systemctl --user status emacs.service | grep 'Active: active'"
)
# connects to the daemon
$machine->succeed("emacsclient --create-frame \$EDITOR &");
machine.succeed("emacsclient --create-frame $EDITOR &")
# checks that Emacs shows the edited filename
$machine->waitForText("emacseditor");
machine.wait_for_text("emacseditor")
# makes sure environment variables are accessible from Emacs
$machine->succeed("emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")'") =~ /system variable/ or die;
machine.succeed(
"emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")' | grep -q 'system variable'"
)
$machine->screenshot("emacsclient");
machine.screenshot("emacsclient")
'';
})