nano: Add test
This commit is contained in:
parent
701df1a3dc
commit
0338f728c0
4 changed files with 51 additions and 3 deletions
|
@ -97,6 +97,7 @@ in rec {
|
||||||
(onFullSupported "nixos.tests.login")
|
(onFullSupported "nixos.tests.login")
|
||||||
(onFullSupported "nixos.tests.misc")
|
(onFullSupported "nixos.tests.misc")
|
||||||
(onFullSupported "nixos.tests.mutableUsers")
|
(onFullSupported "nixos.tests.mutableUsers")
|
||||||
|
(onFullSupported "nixos.tests.nano")
|
||||||
(onFullSupported "nixos.tests.nat.firewall-conntrack")
|
(onFullSupported "nixos.tests.nat.firewall-conntrack")
|
||||||
(onFullSupported "nixos.tests.nat.firewall")
|
(onFullSupported "nixos.tests.nat.firewall")
|
||||||
(onFullSupported "nixos.tests.nat.standalone")
|
(onFullSupported "nixos.tests.nat.standalone")
|
||||||
|
|
|
@ -225,6 +225,7 @@ in
|
||||||
mysql-backup = handleTest ./mysql/mysql-backup.nix {};
|
mysql-backup = handleTest ./mysql/mysql-backup.nix {};
|
||||||
mysql-replication = handleTest ./mysql/mysql-replication.nix {};
|
mysql-replication = handleTest ./mysql/mysql-replication.nix {};
|
||||||
nagios = handleTest ./nagios.nix {};
|
nagios = handleTest ./nagios.nix {};
|
||||||
|
nano = handleTest ./nano.nix {};
|
||||||
nar-serve = handleTest ./nar-serve.nix {};
|
nar-serve = handleTest ./nar-serve.nix {};
|
||||||
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
||||||
nat.firewall-conntrack = handleTest ./nat.nix { withFirewall = true; withConntrackHelpers = true; };
|
nat.firewall-conntrack = handleTest ./nat.nix { withFirewall = true; withConntrackHelpers = true; };
|
||||||
|
|
44
nixos/tests/nano.nix
Normal file
44
nixos/tests/nano.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
||||||
|
name = "nano";
|
||||||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
|
maintainers = [ nequissimus ];
|
||||||
|
};
|
||||||
|
|
||||||
|
machine = { lib, ... }: {
|
||||||
|
environment.systemPackages = [ pkgs.nano ];
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = { ... }: ''
|
||||||
|
start_all()
|
||||||
|
|
||||||
|
with subtest("Create user and log in"):
|
||||||
|
machine.wait_for_unit("multi-user.target")
|
||||||
|
machine.wait_until_succeeds("pgrep -f 'agetty.*tty1'")
|
||||||
|
machine.succeed("useradd -m alice")
|
||||||
|
machine.succeed("(echo foobar; echo foobar) | passwd alice")
|
||||||
|
machine.wait_until_tty_matches(1, "login: ")
|
||||||
|
machine.send_chars("alice\n")
|
||||||
|
machine.wait_until_tty_matches(1, "login: alice")
|
||||||
|
machine.wait_until_succeeds("pgrep login")
|
||||||
|
machine.wait_until_tty_matches(1, "Password: ")
|
||||||
|
machine.send_chars("foobar\n")
|
||||||
|
machine.wait_until_succeeds("pgrep -u alice bash")
|
||||||
|
machine.screenshot("prompt")
|
||||||
|
|
||||||
|
with subtest("Use nano"):
|
||||||
|
machine.send_chars("nano /tmp/foo")
|
||||||
|
machine.send_key("ret")
|
||||||
|
machine.sleep(2)
|
||||||
|
machine.send_chars("42")
|
||||||
|
machine.sleep(1)
|
||||||
|
machine.send_key("ctrl-x")
|
||||||
|
machine.sleep(1)
|
||||||
|
machine.send_key("y")
|
||||||
|
machine.sleep(1)
|
||||||
|
machine.screenshot("nano")
|
||||||
|
machine.sleep(1)
|
||||||
|
machine.send_key("ret")
|
||||||
|
machine.wait_for_file("/tmp/foo")
|
||||||
|
assert "42" in machine.succeed("cat /tmp/foo")
|
||||||
|
'';
|
||||||
|
})
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript
|
{ stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript
|
||||||
, common-updater-scripts, git, nix, nixfmt, coreutils, gnused, gettext ? null
|
, common-updater-scripts, git, nix, nixfmt, coreutils, gnused, nixosTests
|
||||||
, enableNls ? true, enableTiny ? false }:
|
, gettext ? null, enableNls ? true, enableTiny ? false }:
|
||||||
|
|
||||||
assert enableNls -> (gettext != null);
|
assert enableNls -> (gettext != null);
|
||||||
|
|
||||||
|
@ -41,6 +41,8 @@ in stdenv.mkDerivation rec {
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
tests = { inherit (nixosTests) nano; };
|
||||||
|
|
||||||
updateScript = writeScript "update.sh" ''
|
updateScript = writeScript "update.sh" ''
|
||||||
#!${stdenv.shell}
|
#!${stdenv.shell}
|
||||||
set -o errexit
|
set -o errexit
|
||||||
|
@ -73,7 +75,7 @@ in stdenv.mkDerivation rec {
|
||||||
homepage = "https://www.nano-editor.org/";
|
homepage = "https://www.nano-editor.org/";
|
||||||
description = "A small, user-friendly console text editor";
|
description = "A small, user-friendly console text editor";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ joachifm ];
|
maintainers = with maintainers; [ joachifm nequissimus ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue