Add a test for locking and unlocking user accounts

Submitted by:	Robert O'Neil <oneil.rs@gmail.com>
Reviewed by:	will
This commit is contained in:
Brad Davis 2014-11-15 05:12:30 +00:00
parent df826e78d4
commit 45ba9627e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274542
2 changed files with 23 additions and 1 deletions

View File

@ -5,7 +5,7 @@ TESTSRC= ${.CURDIR}/../../../contrib/netbsd-tests/usr.sbin/useradd
TESTSDIR= ${TESTSBASE}/usr.sbin/pw
ATF_TESTS_SH= pw_delete pw_modify pw_etcdir
ATF_TESTS_SH= pw_delete pw_lock pw_modify pw_etcdir
TEST_METADATA.pw_delete+= required_user="root"
TEST_METADATA.pw_modify+= required_user="root"

22
usr.sbin/pw/tests/pw_lock.sh Executable file
View File

@ -0,0 +1,22 @@
# $FreeBSD$
# Import helper functions
. $(atf_get_srcdir)/helper_functions.shin
# Test locking and unlocking a user account
atf_test_case user_locking cleanup
user_locking_body() {
populate_etc_skel
pw -V ${HOME} useradd test || atf_fail "Creating test user"
pw -V ${HOME} lock test || atf_fail "Locking the user"
atf_check -s exit:0 -o match:"^test:\*LOCKED\*\*:1001:" \
grep "^test:\*LOCKED\*\*:1001:" $HOME/master.passwd
pw -V ${HOME} unlock test || atf_fail "Locking the user"
atf_check -s exit:0 -o match:"^test:\*:1001:" \
grep "^test:\*:1001:" $HOME/master.passwd
}
atf_init_test_cases() {
atf_add_test_case user_locking
}