Clean up some language

Reviewed by:	will
This commit is contained in:
Brad Davis 2014-11-17 15:44:00 +00:00
parent e2d52f146f
commit f3bcbf2399
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274632
2 changed files with 18 additions and 18 deletions

View File

@ -15,33 +15,33 @@ rmuser_seperate_group_body() {
pw -V ${HOME} useradd test || atf_fail "Creating test user"
pw -V ${HOME} groupmod test -M 'test,root' || \
atf_fail "Modifying the group"
pw -V ${HOME} userdel test || atf_fail "delete the user"
pw -V ${HOME} userdel test || atf_fail "Delete the test user"
}
atf_test_case group_do_not_delete_wheel_if_group_unkown
group_do_not_delete_wheel_if_group_unkown_head() {
atf_set "descr" "Make sure we do not consider as gid 0 an unknown group"
atf_test_case group_do_not_delete_wheel_if_group_unknown
group_do_not_delete_wheel_if_group_unknown_head() {
atf_set "descr" "Make sure we do not consider gid 0 an unknown group"
}
group_do_not_delete_wheel_if_group_unkown_body() {
group_do_not_delete_wheel_if_group_unknown_body() {
populate_etc_skel
atf_check -s exit:0 -o inline:"wheel:*:0:root\n" -x pw -V ${HOME} groupshow wheel
atf_check -e inline:"pw: -g expects a number\n" -s exit:64 -x pw -V ${HOME} groupdel -g I_do_not_exist
atf_check -s exit:0 -o inline:"wheel:*:0:root\n" -x pw -V ${HOME} groupshow wheel
}
atf_test_case user_do_not_try_to_delete_root_if_user_unkown
user_do_not_try_to_delete_root_if_user_unkown_head() {
atf_set "descr" "Make sure not to try to remove root if deleteing an unknown user"
atf_test_case user_do_not_try_to_delete_root_if_user_unknown
user_do_not_try_to_delete_root_if_user_unknown_head() {
atf_set "descr" "Make sure not to try to remove root if deleting an unknown user"
}
user_do_not_try_to_delete_root_if_user_unkown_body() {
user_do_not_try_to_delete_root_if_user_unknown_body() {
populate_etc_skel
atf_check -e inline:"pw: -u expects a number\n" -s exit:64 -x pw -V ${HOME} userdel -u plop
}
atf_init_test_cases() {
atf_add_test_case rmuser_seperate_group
atf_add_test_case group_do_not_delete_wheel_if_group_unkown
atf_add_test_case user_do_not_try_to_delete_root_if_user_unkown
atf_add_test_case group_do_not_delete_wheel_if_group_unknown
atf_add_test_case user_do_not_try_to_delete_root_if_user_unknown
}

View File

@ -1,18 +1,18 @@
# $FreeBSD$
# When provide -V dir, dir must exists
atf_test_case etcdir_must_exists
etcdir_must_exists_head() {
atf_set "descr" "When provide -V dir, dir must exists"
# When the '-V directory' option is provided, the directory must exist
atf_test_case etcdir_must_exist
etcdir_must_exist_head() {
atf_set "descr" "When the '-V directory' option is provided, the directory must exist"
}
etcdir_must_exists_body() {
local fakedir="/this_directory_does_not_exists"
etcdir_must_exist_body() {
local fakedir="/this_directory_does_not_exist"
atf_check -e inline:"pw: no such directory \`$fakedir'\n" \
-s exit:72 -x pw -V ${fakedir} usershow root
}
atf_init_test_cases() {
atf_add_test_case etcdir_must_exists
atf_add_test_case etcdir_must_exist
}