Author: brd (doc committer)
Date: Tue Dec  9 20:36:07 2014
New Revision: 275653
URL: https://svnweb.freebsd.org/changeset/base/275653

Log:
  Add more tests for pw(8) useradd.
  
  PR:           195832
  Submitted by: Robert O'Neil <[email protected]>
  Approved by:  will

Added:
  head/usr.sbin/pw/tests/pw_add.sh   (contents, props changed)
Modified:
  head/usr.sbin/pw/tests/Makefile

Modified: head/usr.sbin/pw/tests/Makefile
==============================================================================
--- head/usr.sbin/pw/tests/Makefile     Tue Dec  9 20:05:05 2014        
(r275652)
+++ head/usr.sbin/pw/tests/Makefile     Tue Dec  9 20:36:07 2014        
(r275653)
@@ -5,8 +5,9 @@ TESTSRC=        ${.CURDIR}/../../../contrib/net
 
 TESTSDIR=      ${TESTSBASE}/usr.sbin/pw
 
-ATF_TESTS_SH=  pw_delete pw_lock pw_modify pw_etcdir
+ATF_TESTS_SH=  pw_add pw_delete pw_etcdir pw_lock pw_modify
 
+TEST_METADATA.pw_add+=         required_user="root"
 TEST_METADATA.pw_delete+=      required_user="root"
 TEST_METADATA.pw_modify+=      required_user="root"
 

Added: head/usr.sbin/pw/tests/pw_add.sh
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/usr.sbin/pw/tests/pw_add.sh    Tue Dec  9 20:36:07 2014        
(r275653)
@@ -0,0 +1,40 @@
+# $FreeBSD$
+
+# Import helper functions
+. $(atf_get_srcdir)/helper_functions.shin
+
+# Test add user
+atf_test_case user_add
+user_add_body() {
+       populate_etc_skel
+
+       atf_check -s exit:0 ${PW} useradd test
+       atf_check -s exit:0 -o match:"^test:.*" \
+               grep "^test:.*" $HOME/master.passwd
+}
+
+
+atf_test_case user_add_comments
+user_add_comments_body() {
+       populate_etc_skel
+
+       atf_check -s exit:0 ${PW} useradd test -c "Test User,work,123,456"
+       atf_check -s exit:0 -o match:"^test:.*:Test User,work,123,456:" \
+               grep "^test:.*:Test User,work,123,456:" $HOME/master.passwd
+}
+
+atf_test_case user_add_comments_invalid
+user_add_comments_invalid_body() {
+       populate_etc_skel
+
+       atf_check -s exit:65 -e match:"invalid character" \
+               ${PW} useradd test -c "Test User,work,123:456,456"
+       atf_check -s exit:1 -o empty \
+               grep "^test:.*:Test User,work,123:456,456:" $HOME/master.passwd
+}
+
+atf_init_test_cases() {
+       atf_add_test_case user_add
+       atf_add_test_case user_add_comments
+       atf_add_test_case user_add_comments_invalid 
+}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to