Release NixOS 23.11
[NixPkgs.git] / nixos / tests / terminal-emulators.nix
blobb52801c898eb3ed9665d0ab252fda127774316c9
1 # Terminal emulators all present a pretty similar interface.
2 # That gives us an opportunity to easily test their basic functionality with a single codebase.
4 # There are two tests run on each terminal emulator
5 # - can it successfully execute a command passed on the cmdline?
6 # - can it successfully display a colour?
7 # the latter is used as a proxy for "can it display text?", without going through all the intricacies of OCR.
9 # 256-colour terminal mode is used to display the test colour, since it has a universally-applicable palette (unlike 8- and 16- colour, where the colours are implementation-defined), and it is widely supported (unlike 24-bit colour).
11 # Future work:
12 # - Wayland support (both for testing the existing terminals, and for testing wayland-only terminals like foot and havoc)
13 # - Test keyboard input? (skipped for now, to eliminate the possibility of race conditions and focus issues)
15 { system ? builtins.currentSystem,
16   config ? {},
17   pkgs ? import ../.. { inherit system config; }
20 with import ../lib/testing-python.nix { inherit system pkgs; };
21 with pkgs.lib;
23 let tests = {
24       alacritty.pkg = p: p.alacritty;
26       # times out after spending many hours
27       #contour.pkg = p: p.contour;
28       #contour.cmd = "contour $command";
30       cool-retro-term.pkg = p: p.cool-retro-term;
31       cool-retro-term.colourTest = false; # broken by gloss effect
33       ctx.pkg = p: p.ctx;
34       ctx.pinkValue = "#FE0065";
36       darktile.pkg = p: p.darktile;
38       deepin-terminal.pkg = p: p.deepin.deepin-terminal;
40       eterm.pkg = p: p.eterm;
41       eterm.executable = "Eterm";
42       eterm.pinkValue = "#D40055";
44       germinal.pkg = p: p.germinal;
46       gnome-terminal.pkg = p: p.gnome.gnome-terminal;
48       guake.pkg = p: p.guake;
49       guake.cmd = "SHELL=$command guake --show";
50       guake.kill = true;
52       hyper.pkg = p: p.hyper;
54       kermit.pkg = p: p.kermit-terminal;
56       kgx.pkg = p: p.kgx;
57       kgx.cmd = "kgx -e $command";
58       kgx.kill = true;
60       kitty.pkg = p: p.kitty;
61       kitty.cmd = "kitty $command";
63       konsole.pkg = p: p.plasma5Packages.konsole;
65       lxterminal.pkg = p: p.lxterminal;
67       mate-terminal.pkg = p: p.mate.mate-terminal;
68       mate-terminal.cmd = "SHELL=$command mate-terminal --disable-factory"; # factory mode uses dbus, and we don't have a proper dbus session set up
70       mlterm.pkg = p: p.mlterm;
72       mrxvt.pkg = p: p.mrxvt;
74       qterminal.pkg = p: p.lxqt.qterminal;
75       qterminal.kill = true;
77       rio.pkg = p: p.rio;
78       rio.cmd = "rio -e $command";
79       rio.pinkValue = "#FF1261";
81       roxterm.pkg = p: p.roxterm;
82       roxterm.cmd = "roxterm -e $command";
84       sakura.pkg = p: p.sakura;
86       st.pkg = p: p.st;
87       st.kill = true;
89       stupidterm.pkg = p: p.stupidterm;
90       stupidterm.cmd = "stupidterm -- $command";
92       terminator.pkg = p: p.terminator;
93       terminator.cmd = "terminator -e $command";
95       terminology.pkg = p: p.enlightenment.terminology;
96       terminology.cmd = "SHELL=$command terminology --no-wizard=true";
97       terminology.colourTest = false; # broken by gloss effect
99       termite.pkg = p: p.termite;
101       termonad.pkg = p: p.termonad;
103       tilda.pkg = p: p.tilda;
105       tilix.pkg = p: p.tilix;
106       tilix.cmd = "tilix -e $command";
108       urxvt.pkg = p: p.rxvt-unicode;
110       wayst.pkg = p: p.wayst;
111       wayst.pinkValue = "#FF0066";
113       # times out after spending many hours
114       #wezterm.pkg = p: p.wezterm;
116       xfce4-terminal.pkg = p: p.xfce.xfce4-terminal;
118       xterm.pkg = p: p.xterm;
119     };
120 in mapAttrs (name: { pkg, executable ? name, cmd ? "SHELL=$command ${executable}", colourTest ? true, pinkValue ? "#FF0087", kill ? false }: makeTest
122   name = "terminal-emulator-${name}";
123   meta = with pkgs.lib.maintainers; {
124     maintainers = [ jjjollyjim ];
125   };
127   nodes.machine = { pkgsInner, ... }:
129   {
130     imports = [ ./common/x11.nix ./common/user-account.nix ];
132     # Hyper (and any other electron-based terminals) won't run as root
133     test-support.displayManager.auto.user = "alice";
135     environment.systemPackages = [
136       (pkg pkgs)
137       (pkgs.writeShellScriptBin "report-success" ''
138         echo 1 > /tmp/term-ran-successfully
139         ${optionalString kill "pkill ${executable}"}
140       '')
141       (pkgs.writeShellScriptBin "display-colour" ''
142         # A 256-colour background colour code for pink, then spaces.
143         #
144         # Background is used rather than foreground to minimize the effect of anti-aliasing.
145         #
146         # Keep adding more in case the window is partially offscreen to the left or requires
147         # a change to correctly redraw after initialising the window (as with ctx).
149         while :
150         do
151             echo -ne "\e[48;5;198m                   "
152             sleep 0.5
153         done
154         sleep infinity
155       '')
156       (pkgs.writeShellScriptBin "run-in-this-term" "sudo -u alice run-in-this-term-wrapped $1")
158       (pkgs.writeShellScriptBin "run-in-this-term-wrapped" "command=\"$(which \"$1\")\"; ${cmd}")
159     ];
161     # Helpful reminder to add this test to passthru.tests
162     warnings = if !((pkg pkgs) ? "passthru" && (pkg pkgs).passthru ? "tests") then [ "The package for ${name} doesn't have a passthru.tests" ] else [ ];
163   };
165   # We need imagemagick, though not tesseract
166   enableOCR = true;
168   testScript = { nodes, ... }: let
169   in ''
170     with subtest("wait for x"):
171         start_all()
172         machine.wait_for_x()
174     with subtest("have the terminal run a command"):
175         # We run this command synchronously, so we can be certain the exit codes are happy
176         machine.${if kill then "execute" else "succeed"}("run-in-this-term report-success")
177         machine.wait_for_file("/tmp/term-ran-successfully")
178     ${optionalString colourTest ''
180     import tempfile
181     import subprocess
184     def check_for_pink(final=False) -> bool:
185         with tempfile.NamedTemporaryFile() as tmpin:
186             machine.send_monitor_command("screendump {}".format(tmpin.name))
188             cmd = 'convert {} -define histogram:unique-colors=true -format "%c" histogram:info:'.format(
189                 tmpin.name
190             )
191             ret = subprocess.run(cmd, shell=True, capture_output=True)
192             if ret.returncode != 0:
193                 raise Exception(
194                     "image analysis failed with exit code {}".format(ret.returncode)
195                 )
197             text = ret.stdout.decode("utf-8")
198             return "${pinkValue}" in text
201     with subtest("ensuring no pink is present without the terminal"):
202         assert (
203             check_for_pink() == False
204         ), "Pink was present on the screen before we even launched a terminal!"
206     with subtest("have the terminal display a colour"):
207         # We run this command in the background
208         assert machine.shell is not None
209         machine.shell.send(b"(run-in-this-term display-colour |& systemd-cat -t terminal) &\n")
211         with machine.nested("Waiting for the screen to have pink on it:"):
212             retry(check_for_pink)
213   ''}'';
216   ) tests