nixosTests.emacs-daemon: migrate to runTest (#394008)

Changed files
+37 -41
nixos
+1 -1
nixos/tests/all-tests.nix
···
eintopf = handleTest ./eintopf.nix {};
ejabberd = handleTest ./xmpp/ejabberd.nix {};
elk = handleTestOn ["x86_64-linux"] ./elk.nix {};
-
emacs-daemon = handleTest ./emacs-daemon.nix {};
+
emacs-daemon = runTest ./emacs-daemon.nix;
endlessh = handleTest ./endlessh.nix {};
endlessh-go = handleTest ./endlessh-go.nix {};
engelsystem = handleTest ./engelsystem.nix {};
+36 -40
nixos/tests/emacs-daemon.nix
···
-
import ./make-test-python.nix (
-
{ pkgs, ... }:
-
{
-
name = "emacs-daemon";
-
meta = with pkgs.lib.maintainers; {
-
maintainers = [ ];
-
};
+
{ lib, ... }:
+
{
+
name = "emacs-daemon";
+
meta.maintainers = lib.teams.emacs.members;
-
enableOCR = true;
+
enableOCR = true;
-
nodes.machine =
-
{ ... }:
+
nodes.machine =
+
{ ... }:
-
{
-
imports = [ ./common/x11.nix ];
-
services.emacs = {
-
enable = true;
-
defaultEditor = true;
-
};
+
{
+
imports = [ ./common/x11.nix ];
+
services.emacs = {
+
enable = true;
+
defaultEditor = true;
+
};
-
# Important to get the systemd service running for root
-
environment.variables.XDG_RUNTIME_DIR = "/run/user/0";
+
# Important to get the systemd service running for root
+
environment.variables.XDG_RUNTIME_DIR = "/run/user/0";
-
environment.variables.TEST_SYSTEM_VARIABLE = "system variable";
-
};
+
environment.variables.TEST_SYSTEM_VARIABLE = "system variable";
+
};
-
testScript = ''
-
machine.wait_for_unit("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')
+
# checks that the EDITOR environment variable is set
+
machine.succeed('test $(basename "$EDITOR") = emacseditor')
-
# waits for the emacs service to be ready
-
machine.wait_until_succeeds(
-
"systemctl --user status emacs.service | grep 'Active: active'"
-
)
+
# waits for the emacs service to be ready
+
machine.wait_until_succeeds(
+
"systemctl --user status emacs.service | grep 'Active: active'"
+
)
-
# connects to the daemon
-
machine.succeed("emacsclient --no-wait --frame-parameters='((display . \"'\"$DISPLAY\"'\"))' --create-frame $EDITOR >&2")
+
# connects to the daemon
+
machine.succeed("emacsclient --no-wait --frame-parameters='((display . \"'\"$DISPLAY\"'\"))' --create-frame $EDITOR >&2")
-
# checks that Emacs shows the edited filename
-
machine.wait_for_text("emacseditor")
+
# checks that Emacs shows the edited filename
+
machine.wait_for_text("emacseditor")
-
# makes sure environment variables are accessible from Emacs
-
machine.succeed(
-
"emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")' | grep -q 'system variable'"
-
)
+
# makes sure environment variables are accessible from Emacs
+
machine.succeed(
+
"emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")' | grep -q 'system variable'"
+
)
-
machine.screenshot("emacsclient")
-
'';
-
}
-
)
+
machine.screenshot("emacsclient")
+
'';
+
}