diff options
Diffstat (limited to 'tests/chsh/02_chsh_usage')
-rwxr-xr-x | tests/chsh/02_chsh_usage/chsh.test | 48 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/config.txt | 0 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/config/etc/group | 0 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/config/etc/gshadow | 0 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/config/etc/passwd | 0 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/config/etc/shadow | 0 | ||||
-rw-r--r-- | tests/chsh/02_chsh_usage/data/usage.out | 7 |
7 files changed, 55 insertions, 0 deletions
diff --git a/tests/chsh/02_chsh_usage/chsh.test b/tests/chsh/02_chsh_usage/chsh.test new file mode 100755 index 0000000..3a6e656 --- /dev/null +++ b/tests/chsh/02_chsh_usage/chsh.test @@ -0,0 +1,48 @@ +#!/bin/sh + +set -e + +cd $(dirname $0) + +. ../../common/config.sh +. ../../common/log.sh + +log_start "$0" "chsh can display its usage message" + +save_config + +# restore the files on exit +trap 'log_status "$0" "FAILURE"; restore_config' 0 + +change_config + +echo -n "Get chsh usage (chsh -h)..." +chsh -h >tmp/usage.out +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/02_chsh_usage/config.txt b/tests/chsh/02_chsh_usage/config.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/chsh/02_chsh_usage/config.txt diff --git a/tests/chsh/02_chsh_usage/config/etc/group b/tests/chsh/02_chsh_usage/config/etc/group new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/chsh/02_chsh_usage/config/etc/group diff --git a/tests/chsh/02_chsh_usage/config/etc/gshadow b/tests/chsh/02_chsh_usage/config/etc/gshadow new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/chsh/02_chsh_usage/config/etc/gshadow diff --git a/tests/chsh/02_chsh_usage/config/etc/passwd b/tests/chsh/02_chsh_usage/config/etc/passwd new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/chsh/02_chsh_usage/config/etc/passwd diff --git a/tests/chsh/02_chsh_usage/config/etc/shadow b/tests/chsh/02_chsh_usage/config/etc/shadow new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/chsh/02_chsh_usage/config/etc/shadow diff --git a/tests/chsh/02_chsh_usage/data/usage.out b/tests/chsh/02_chsh_usage/data/usage.out new file mode 100644 index 0000000..ef576ec --- /dev/null +++ b/tests/chsh/02_chsh_usage/data/usage.out @@ -0,0 +1,7 @@ +Usage: chsh [options] [LOGIN] + +Options: + -h, --help display this help message and exit + -R, --root CHROOT_DIR directory to chroot into + -s, --shell SHELL new login shell for the user account + |