summaryrefslogtreecommitdiffstats
path: root/pw/tests/pw_groupadd_test.sh
blob: 5fa7bef0fdf14a66b555372af4d55348f09a64b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $FreeBSD$

# Import helper functions
. $(atf_get_srcdir)/helper_functions.shin

atf_test_case group_add_gid_too_large
group_add_gid_too_large_body() {
	populate_etc_skel
	atf_check -s exit:64 -e inline:"pw: Bad id '9999999999999': too large\n" \
		${PW} groupadd -n test1 -g 9999999999999
}

atf_test_case group_add_already_exists
group_add_already_exists_body() {
	populate_etc_skel

	atf_check -s exit:0 ${PW} groupadd foo
	atf_check -s exit:65 \
		-e inline:"pw: group name \`foo' already exists\n" \
		${PW} groupadd foo
}

atf_init_test_cases() {
	atf_add_test_case group_add_gid_too_large
	atf_add_test_case group_add_already_exists
}