diff options
Diffstat (limited to 'tests/grouptools/gpasswd/68_gpasswd-M_myuser/gpasswd.test')
-rwxr-xr-x | tests/grouptools/gpasswd/68_gpasswd-M_myuser/gpasswd.test | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/grouptools/gpasswd/68_gpasswd-M_myuser/gpasswd.test b/tests/grouptools/gpasswd/68_gpasswd-M_myuser/gpasswd.test new file mode 100755 index 0000000..95d557d --- /dev/null +++ b/tests/grouptools/gpasswd/68_gpasswd-M_myuser/gpasswd.test @@ -0,0 +1,42 @@ +#!/bin/sh + +set -e + +cd $(dirname $0) + +. ../../../common/config.sh +. ../../../common/log.sh + +log_start "$0" "gpasswd can be used by root to change one group's passwd" + + +# no testsuite password +# root password: rootF00barbaz +# myuser password: myuserF00barbaz + +save_config + +# restore the files on exit +trap 'log_status "$0" "FAILURE"; restore_config' 0 + +change_config + +./gpasswd.exp myuser users '$ ' + +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 + |