summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/sys/rc/t_rc_d_cli.sh
blob: d97f8cca66386d62f0592c829f67a655eb1501a3 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# $NetBSD: t_rc_d_cli.sh,v 1.4 2010/11/07 17:51:21 jmmv Exp $
#
# Copyright (c) 2010 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Julio Merino.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

atf_test_case no_command
no_command_head() {
	atf_set "descr" "Tests that the lack of a command errors out"
}
no_command_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	atf_check -s eq:1 -o empty -e ignore ${rc_helper}
}

atf_test_case default_start_no_args
default_start_no_args_head() {
	atf_set "descr" "Tests that running the default 'start' without" \
	    "arguments does not error out"
}
default_start_no_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	atf_check -s eq:0 -o ignore -e empty ${rc_helper} start
	${rc_helper} forcestop
}

atf_test_case default_start_with_args
default_start_with_args_head() {
	atf_set "descr" "Tests that running the default 'start' with" \
	    "arguments errors out"
}
default_start_with_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	atf_check -s eq:1 -o ignore -e ignore ${rc_helper} start foo
	if ${rc_helper} status >/dev/null; then
		${rc_helper} forcestop
		atf_fail 'extra argument to start did not error out'
	fi
}

atf_test_case default_stop_no_args
default_stop_no_args_head() {
	atf_set "descr" "Tests that running the default 'stop' without" \
	    "arguments does not error out"
}
default_stop_no_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	${rc_helper} start
	atf_check -s eq:0 -o ignore -e empty ${rc_helper} stop
}

atf_test_case default_stop_with_args
default_stop_with_args_head() {
	atf_set "descr" "Tests that running the default 'stop' with" \
	    "arguments errors out"
}
default_stop_with_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	${rc_helper} start
	atf_check -s eq:1 -o ignore -e ignore ${rc_helper} stop foo
	if ${rc_helper} status >/dev/null; then
		${rc_helper} forcestop
	else
		atf_fail 'extra argument to stop did not error out'
	fi
}

atf_test_case default_restart_no_args
default_restart_no_args_head() {
	atf_set "descr" "Tests that running the default 'restart' without" \
	    "arguments does not error out"
}
default_restart_no_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	${rc_helper} start
	atf_check -s eq:0 -o ignore -e empty ${rc_helper} restart
	${rc_helper} forcestop
}

atf_test_case default_restart_with_args
default_restart_with_args_head() {
	atf_set "descr" "Tests that running the default 'restart' with" \
	    "arguments errors out"
}
default_restart_with_args_body() {
	export h_simple=YES
	rc_helper=$(atf_get_srcdir)/h_simple

	${rc_helper} start
	atf_check -s eq:1 -o ignore -e ignore ${rc_helper} restart foo
	${rc_helper} forcestop
}

do_overriden_no_args() {
	local command="${1}"; shift

	export h_args=YES
	rc_helper=$(atf_get_srcdir)/h_args

	cat >expout <<EOF
pre${command}:.
${command}:.
post${command}:.
EOF
	atf_check -s eq:0 -o file:expout -e empty ${rc_helper} ${command}
}

do_overriden_with_args() {
	local command="${1}"; shift

	export h_args=YES
	rc_helper=$(atf_get_srcdir)/h_args

	cat >expout <<EOF
pre${command}:.
${command}: >arg1< > arg 2 < >arg3< >*<.
post${command}:.
EOF
	atf_check -s eq:0 -o file:expout -e empty ${rc_helper} ${command} \
	    'arg1' ' arg 2 ' 'arg3' '*'
}

atf_test_case overriden_start_no_args
overriden_start_no_args_head() {
	atf_set "descr" "Tests that running a custom 'start' without" \
	    "arguments does not pass any parameters to the command"
}
overriden_start_no_args_body() {
	do_overriden_no_args start
}

atf_test_case overriden_start_with_args
overriden_start_with_args_head() {
	atf_set "descr" "Tests that running a custom 'start' with" \
	    "arguments passes those arguments as parameters to the command"
}
overriden_start_with_args_body() {
	do_overriden_with_args start
}

atf_test_case overriden_stop_no_args
overriden_stop_no_args_head() {
	atf_set "descr" "Tests that running a custom 'stop' without" \
	    "arguments does not pass any parameters to the command"
}
overriden_stop_no_args_body() {
	do_overriden_no_args stop
}

atf_test_case overriden_stop_with_args
overriden_stop_with_args_head() {
	atf_set "descr" "Tests that running a custom 'stop' with" \
	    "arguments passes those arguments as parameters to the command"
}
overriden_stop_with_args_body() {
	do_overriden_with_args stop
}

atf_test_case overriden_restart_no_args
overriden_restart_no_args_head() {
	atf_set "descr" "Tests that running a custom 'restart' without" \
	    "arguments does not pass any parameters to the command"
}
overriden_restart_no_args_body() {
	do_overriden_no_args restart
}

atf_test_case overriden_restart_with_args
overriden_restart_with_args_head() {
	atf_set "descr" "Tests that running a custom 'restart' with" \
	    "arguments passes those arguments as parameters to the command"
}
overriden_restart_with_args_body() {
	do_overriden_with_args restart
}

atf_test_case overriden_custom_no_args
overriden_custom_no_args_head() {
	atf_set "descr" "Tests that running a custom command without" \
	    "arguments does not pass any parameters to the command"
}
overriden_custom_no_args_body() {
	do_overriden_no_args custom
}

atf_test_case overriden_custom_with_args
overriden_custom_with_args_head() {
	atf_set "descr" "Tests that running a custom command with" \
	    "arguments passes those arguments as parameters to the command"
}
overriden_custom_with_args_body() {
	do_overriden_with_args custom
}

atf_init_test_cases()
{
	atf_add_test_case no_command

	atf_add_test_case default_start_no_args
	atf_add_test_case default_start_with_args
	atf_add_test_case default_stop_no_args
	atf_add_test_case default_stop_with_args
	atf_add_test_case default_restart_no_args
	atf_add_test_case default_restart_with_args

	atf_add_test_case overriden_start_no_args
	atf_add_test_case overriden_start_with_args
	atf_add_test_case overriden_stop_no_args
	atf_add_test_case overriden_stop_with_args
	atf_add_test_case overriden_restart_no_args
	atf_add_test_case overriden_restart_with_args
	atf_add_test_case overriden_custom_no_args
	atf_add_test_case overriden_custom_with_args
}
OpenPOWER on IntegriCloud