From 741c1ef7a4f2ac316ad6e557ddbe03023413478d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:22:06 +0200 Subject: Adding upstream version 1:4.5. Signed-off-by: Daniel Baumann --- tests/chsh/07_chsh_usage_invalid_user/chsh.test | 54 ++++++++++++++++++++++ tests/chsh/07_chsh_usage_invalid_user/config.txt | 0 .../07_chsh_usage_invalid_user/config/etc/group | 0 .../07_chsh_usage_invalid_user/config/etc/gshadow | 0 .../07_chsh_usage_invalid_user/config/etc/passwd | 0 .../07_chsh_usage_invalid_user/config/etc/shadow | 0 .../chsh/07_chsh_usage_invalid_user/data/usage.out | 1 + 7 files changed, 55 insertions(+) create mode 100755 tests/chsh/07_chsh_usage_invalid_user/chsh.test create mode 100644 tests/chsh/07_chsh_usage_invalid_user/config.txt create mode 100644 tests/chsh/07_chsh_usage_invalid_user/config/etc/group create mode 100644 tests/chsh/07_chsh_usage_invalid_user/config/etc/gshadow create mode 100644 tests/chsh/07_chsh_usage_invalid_user/config/etc/passwd create mode 100644 tests/chsh/07_chsh_usage_invalid_user/config/etc/shadow create mode 100644 tests/chsh/07_chsh_usage_invalid_user/data/usage.out (limited to 'tests/chsh/07_chsh_usage_invalid_user') diff --git a/tests/chsh/07_chsh_usage_invalid_user/chsh.test b/tests/chsh/07_chsh_usage_invalid_user/chsh.test new file mode 100755 index 0000000..5d76de2 --- /dev/null +++ b/tests/chsh/07_chsh_usage_invalid_user/chsh.test @@ -0,0 +1,54 @@ +#!/bin/sh + +set -e + +cd $(dirname $0) + +. ../../common/config.sh +. ../../common/log.sh + +log_start "$0" "chsh checks that the user exist" + +save_config + +# restore the files on exit +trap 'log_status "$0" "FAILURE"; restore_config' 0 + +change_config + +echo -n "Use chsh for an invalid user (chsh wronguser)..." +chsh wronguser 2>tmp/usage.out && exit 1 || { + status=$? +} +echo "OK" + +echo -n "Check returned status ($status)..." +test "$status" = "1" +echo "OK" + +echo "chsh reported:" +echo "=======================================================================" +cat tmp/usage.out +echo "=======================================================================" +echo -n "Check the usage message..." +diff -au data/usage.out tmp/usage.out +echo "usage message OK." +rm -f tmp/usage.out + +echo -n "Check the passwd file..." +../../common/compare_file.pl config/etc/passwd /etc/passwd +echo "OK" +echo -n "Check the group file..." +../../common/compare_file.pl config/etc/group /etc/group +echo "OK" +echo -n "Check the shadow file..." +../../common/compare_file.pl config/etc/shadow /etc/shadow +echo "OK" +echo -n "Check the gshadow file..." +../../common/compare_file.pl config/etc/gshadow /etc/gshadow +echo "OK" + +log_status "$0" "SUCCESS" +restore_config +trap '' 0 + diff --git a/tests/chsh/07_chsh_usage_invalid_user/config.txt b/tests/chsh/07_chsh_usage_invalid_user/config.txt new file mode 100644 index 0000000..e69de29 diff --git a/tests/chsh/07_chsh_usage_invalid_user/config/etc/group b/tests/chsh/07_chsh_usage_invalid_user/config/etc/group new file mode 100644 index 0000000..e69de29 diff --git a/tests/chsh/07_chsh_usage_invalid_user/config/etc/gshadow b/tests/chsh/07_chsh_usage_invalid_user/config/etc/gshadow new file mode 100644 index 0000000..e69de29 diff --git a/tests/chsh/07_chsh_usage_invalid_user/config/etc/passwd b/tests/chsh/07_chsh_usage_invalid_user/config/etc/passwd new file mode 100644 index 0000000..e69de29 diff --git a/tests/chsh/07_chsh_usage_invalid_user/config/etc/shadow b/tests/chsh/07_chsh_usage_invalid_user/config/etc/shadow new file mode 100644 index 0000000..e69de29 diff --git a/tests/chsh/07_chsh_usage_invalid_user/data/usage.out b/tests/chsh/07_chsh_usage_invalid_user/data/usage.out new file mode 100644 index 0000000..f57326c --- /dev/null +++ b/tests/chsh/07_chsh_usage_invalid_user/data/usage.out @@ -0,0 +1 @@ +chsh: user 'wronguser' does not exist -- cgit v1.2.3