summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/usr.bin/config/t_config.sh
blob: 55af069f5afd5c5ec66813a0ba453e46d8f10ac2 (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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# $NetBSD: t_config.sh,v 1.8 2016/08/27 12:08:14 christos Exp $
#
# Copyright (c) 2008, 2010 The NetBSD Foundation, Inc.
# All rights reserved.
#
# 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.
#

srcdir=..
merge_backslash()
{
	sed '
: again
/\\$/ {
    N
    s/\\\n//
    t again
}
' "$1"
}
run_and_check_prep()
{
	local name="${1}"; shift

	mkdir -p compile
	srcdir="$(atf_get_srcdir)"
	if [ ! -d "${srcdir}/support" ]; then
		srcdir="$(dirname "${srcdir}")"
		if [ ! -d "${srcdir}/support" ]; then
			atf_fail "bad source directory ${srcdir}"
			exit 1
		fi
	fi
	supportdir="${srcdir}/support"

	local config_str
	eval config_str=\$${name}_config_str
	if [ -n "$config_str" ]; then
		config="d_${name}"
		printf "$config_str" >"${config}"
	else
		config="${srcdir}/d_${name}"
	fi
}

run_and_check_pass()
{
	local name="${1}"; shift

	run_and_check_prep "${name}"

	atf_check -o ignore -s eq:0 \
	    config -s "${supportdir}" -b "compile/${name}" "${config}"
}

run_and_check_warn()
{
	local name="${1}"; shift

	run_and_check_prep "${name}"

	local stderr
	eval stderr=\$${name}_stderr
	atf_check -o ignore -e "${stderr}" -s eq:0 \
	    config -s "${supportdir}" -b "compile/${name}" "${config}"
}

run_and_check_fail()
{
	local name="${1}"; shift

	run_and_check_prep "${name}"

	atf_check -o ignore -e ignore -s ne:0 \
	    config -s "${supportdir}" -b "compile/${name}" "${config}"
}

test_output()
{
	local name="${1}"; shift
	local res=1

	run_and_check_prep "${name}"

	config -s "${supportdir}" -b compile/"${name}" "${config}" >/dev/null &&
	cd compile/"${name}" &&
	check_${name} &&
	cd $OLDPWD &&
	res=0

	atf_check test $res -eq 0
}

# Defines a test case for config(1).
test_case()
{
	local name="${1}"; shift
	local type="${1}"; shift
	local descr="${*}"

	atf_test_case "${name}"
	eval "${name}_head() { \
		atf_set descr \"${descr}\"; \
		atf_set require.progs \"config\"; \
	}"
	eval "${name}_body() { \
		run_and_check_${type} '${name}'; \
	}"
}

test_case shadow_instance pass "Checks correct handling of shadowed instances"
test_case loop pass "Checks correct handling of loops"
test_case loop2 pass "Checks correct handling of devices that can be their" \
    "own parents"
test_case pseudo_parent pass "Checks correct handling of children of pseudo" \
    "devices (PR/32329)"
test_case postponed_orphan fail "Checks that config catches adding an" \
    "instance of a child of a negated instance as error"
test_case no_pseudo fail "Checks that config catches ommited 'pseudo-device'" \
    "as error (PR/34111)"
test_case deffs_redef fail "Checks that config doesn't allow a deffs to use" \
    "the same name as a previous defflag/defparam"

# Selecting an undefined option.
undefined_opt_config_str="
include \"${srcdir}/d_min\"
options UNDEFINED
"
test_case undefined_opt pass \
    "Checks that config allows a selection for an undefined options"

# Negating an undefined option.
no_undefined_opt_config_str="
include \"${srcdir}/d_min\"
no options UNDEFINED
"
no_undefined_opt_stderr='match:UNDEFINED'
test_case no_undefined_opt warn \
    "Checks that config allows a negation for an undefined options"

# Attribute selection
test_case select pass "Attribute selection"
select_config_str="
include \"${srcdir}/d_min\"
select c
"
check_select()
{
	local f=Makefile

	grep -q '^	a\.c ' $f &&
	grep -q '^	b\.c ' $f &&
	grep -q '^	c\.c ' $f &&
	:
}
select_body() {
	test_output select
}

# Attribute negation
test_case no_select pass "Attribute negation"
no_select_config_str="
include \"${srcdir}/d_min\"
select c
no select a
"
check_no_select()
{
	local f=Makefile

	: >tmp
	grep -q '^a\.o:' $f >>tmp
	grep -q '^b\.o:' $f >>tmp
	grep -q '^c\.o:' $f >>tmp

	[ ! -s tmp ] &&
	:
}
no_select_body() {
	test_output no_select
}

# Device instance
test_case devi pass "Device instance"
devi_config_str="
include \"${srcdir}/d_min\"
d0 at root
"
check_devi()
{
	local f=ioconf.c

	sed -ne '/^struct cfdriver \* const cfdriver_list_initial\[\]/,/^};/p' $f >tmp.cfdriver
	sed -ne '/^struct cfdata cfdata\[\]/,/^};/p' $f >tmp.cfdata

	grep -q '^CFDRIVER_DECL(d, ' $f &&
	grep -q '&d_cd,' tmp.cfdriver &&
	grep -q '^extern struct cfattach d_ca;$' $f &&
	grep -q '^static const struct cfiattrdata \* const d_attrs\[\]' $f &&
	grep -q '^static const struct cfiattrdata icf_iattrdata' $f &&
	grep -q '{ "d",' tmp.cfdata &&
	:
}
devi_body() {
	test_output devi
}

# Check minimal kernel config(1) output
test_case min pass "Minimal config"
check_min_files()
{
	test -e Makefile &&
	test -e config_file.h &&
	test -e config_time.src &&
	test -e ioconf.c &&
	test -e ioconf.h &&
	test -e locators.h &&
	test -e swapregress.c &&
	test -h machine &&
	test -h regress &&
	:
}
check_min_makefile()
{
	local f=Makefile

	grep -q '^%' $f >tmp.template

	grep -q '^MACHINE=regress$' $f &&
	(merge_backslash $f | grep -q '^IDENT=[ 	]*-DMAXUSERS="4"') &&
	[ ! -s tmp.template ] &&
	:
}
check_min()
{
	check_min_files &&
	check_min_makefile &&
	:
}
min_body() {
	test_output min
}

atf_init_test_cases()
{
	atf_add_test_case shadow_instance
	atf_add_test_case loop
	atf_add_test_case loop2
	atf_add_test_case pseudo_parent
	atf_add_test_case postponed_orphan
	atf_add_test_case no_pseudo
	atf_add_test_case deffs_redef
	atf_add_test_case undefined_opt
	atf_add_test_case no_undefined_opt
	atf_add_test_case select
	atf_add_test_case no_select
	atf_add_test_case devi
	atf_add_test_case min
}
OpenPOWER on IntegriCloud