From 05bfd29f9b6e162552771d9d260c2b08c4380fbc Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sat, 15 Nov 2014 05:12:30 +0000 Subject: Add a test for locking and unlocking user accounts Submitted by: Robert O'Neil Reviewed by: will --- pw/tests/pw_lock.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 pw/tests/pw_lock.sh (limited to 'pw/tests/pw_lock.sh') diff --git a/pw/tests/pw_lock.sh b/pw/tests/pw_lock.sh new file mode 100755 index 0000000..070a6f9 --- /dev/null +++ b/pw/tests/pw_lock.sh @@ -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 +} -- cgit v1.2.3-56-ge451