]> git.ipfire.org Git - thirdparty/pdns.git/blob - regression-tests/start-test-stop
Merge pull request #6611 from mnordhoff/6130-rec-4.1.x
[thirdparty/pdns.git] / regression-tests / start-test-stop
1 #!/usr/bin/env bash
2 set -e
3 if [ "${PDNS_DEBUG}" = "YES" ]; then
4 set -x
5 fi
6
7 export PDNS=${PDNS:-${PWD}/../pdns/pdns_server}
8 export PDNS2=${PDNS2:-${PWD}/../pdns/pdns_server}
9 export PDNSRECURSOR=${PDNSRECURSOR:-${PWD}/../pdns/recursordist/pdns_recursor}
10 export RECCONTROL=${RECCONTROL:-${PWD}/../pdns/recursordist/rec_control}
11 export SDIG=${SDIG:-${PWD}/../pdns/sdig}
12 export NOTIFY=${NOTIFY:-${PWD}/../pdns/pdns_notify}
13 export NSEC3DIG=${NSEC3DIG:-${PWD}/../pdns/nsec3dig}
14 export SAXFR=${SAXFR:-${PWD}/../pdns/saxfr}
15 export ZONE2SQL=${ZONE2SQL:-${PWD}/../pdns/zone2sql}
16 export ZONE2LDAP=${ZONE2LDAP:-${PWD}/../pdns/zone2ldap}
17 export PDNSUTIL=${PDNSUTIL:-${PWD}/../pdns/pdnsutil}
18 export PDNSCONTROL=${PDNSCONTROL:-${PWD}/../pdns/pdns_control}
19
20
21 ALGORITHM=${ALGORITHM:="hmac-md5"}
22 KEY=${KEY:="kp4/24gyYsEzbuTVJRUMoqGFmN3LYgVDzJ/3oRSP7ys="}
23
24 MAKE=${MAKE:-make}
25
26 export ALGORITHM
27 export KEY
28
29 trap "kill_process 2" EXIT INT TERM
30
31 source ../regression-tests/common
32
33 bindwait ()
34 {
35 check_process
36 configname=$1
37 domcount=$(grep -c ^zone named.conf)
38 if [ ! -x $PDNSCONTROL ]
39 then
40 echo "No pdns_control found"
41 exit
42 fi
43 loopcount=0
44
45 while [ $loopcount -lt 20 ]
46 do
47 sleep 5
48 done=$( ($PDNSCONTROL --config-name=$configname --socket-dir=. --no-config bind-domain-status || true) | grep -c 'parsed into memory' || true )
49 if [ $done = $domcount ]
50 then
51 return
52 fi
53 let loopcount=loopcount+1
54 done
55
56 if [ $done != $domcount ]
57 then
58 echo "Domain parsing failed" >> failed_tests
59 fi
60 }
61
62 securezone ()
63 {
64 local zone=$1
65 local configname=$2
66
67 if [ -n "$configname" ]
68 then
69 configname="--config-name=$configname"
70 fi
71 if [ "${zone: 0:16}" = "secure-delegated" ]
72 then
73 $PDNSUTIL --config-dir=. $configname import-zone-key $zone $zone.private ksk 2>&1
74 $PDNSUTIL --config-dir=. $configname add-zone-key $zone rsasha256 1024 zsk active 2>&1
75 $PDNSUTIL --config-dir=. $configname rectify-zone $zone 2>&1
76 $PDNSUTIL --config-dir=. $configname set-publish-cds $zone 2>&1
77 $PDNSUTIL --config-dir=. $configname set-publish-cdnskey $zone 2>&1
78 else
79 # check if PKCS#11 should be used
80 if [ "$pkcs11" -eq 1 ]; then
81 if [ "$slot" == "" ]; then
82 slot=0
83 else
84 slot=$((slot+1))
85 fi
86 sudo softhsm --init-token --slot $slot --label label$slot --pin 123$slot --so-pin 123$slot
87 kid=`$PDNSUTIL --config-dir=. $configname hsm assign $zone ecdsa256 zsk softhsm label$slot 123$slot label$slot 2>&1 | grep softhsm | awk '{ print $NF }'`
88 kid=`$PDNSUTIL --config-dir=. $configname show-zone $zone | grep 'ID =.*ZSK' | awk '{ print $3 }'`
89 $PDNSUTIL --config-dir=. $configname hsm create-key $zone $kid
90 else
91 $PDNSUTIL --config-dir=. $configname secure-zone $zone 2>&1
92 if [ "${zone: 0:20}" = "cdnskey-cds-test.com" ]; then
93 $PDNSUTIL --config-dir=. $configname set-publish-cds $zone 2>&1
94 $PDNSUTIL --config-dir=. $configname set-publish-cdnskey $zone 2>&1
95 fi
96 fi
97 fi
98 }
99
100 kill_process ()
101 {
102 set +e
103 trap - EXIT INT TERM
104
105 if [ $1 -gt 1 ]
106 then
107 echo "exitvalue$1" >> failed_tests
108 ./toxml
109 ./totar
110 fi
111
112 pids=$(cat pdns*.pid)
113
114 if [ -n "$pids" ]
115 then
116 kill $pids
117 # make sure they die.
118 loopcount=0
119 done=0
120 while [ $loopcount -lt 10 ] && [ $done -eq 0 ]
121 do
122 done=1
123 for pid in $pids
124 do
125 kill -0 $pid > /dev/null 2>&1
126 if [ $? -eq 0 ];
127 then
128 done=0
129 fi
130 done
131 let loopcount=loopcount+1
132 sleep 1
133 done
134
135 kill -9 $pids
136 fi
137
138 rm pdns*.pid
139 exit $1
140 }
141
142 if [ ! -x $PDNS ]
143 then
144 echo "$PDNS is not executable binary"
145 exit
146 fi
147
148 if [ ! -x $PDNS2 ]
149 then
150 echo "$PDNS2 is not executable binary"
151 exit
152 fi
153
154 address="${PDNS_LISTEN_ADDR:-127.0.0.1}"
155 port=$1
156 [ -z "$port" ] && port=5300
157 context=$2
158 [ -z "$context" ] && context=bind-dnssec
159 wait=$3
160 [ -z "$wait" ] && wait=nowait
161 cachettl=$4
162 [ -z "$cachettl" ] && cachettl=0
163 spectest=$5
164
165 testsdir=./tests
166
167 if [ "$port" = help ] || [ "$context" = help ] || [ "$port" = "--help" ] || [ "$context" = "--help" ]
168 then
169 set +x
170 grep -v '^#' << '__EOF__'
171
172 Usage: ./start-test-stop <port> [<context>] [wait|nowait] [<cachettl>] [<specifictest>]
173
174 context is one of:
175 bind bind-dnssec bind-dnssec-nsec3 bind-dnssec-nsec3-optout bind-dnssec-nsec3-narrow
176 geoip geoip-nsec3-narrow
177 gmysql-nodnssec gmysql gmysql-nsec3 gmysql-nsec3-optout gmysql-nsec3-narrow
178 godbc_mssql-nodnssec godbc_mssql godbc_mssql-nsec3 godbc_mssql-nsec3-optout godbc_mssql-nsec3-narrow
179 goracle-nodnssec goracle goracle-nsec3 goracle-nsec3-optout goracle-nsec3-narrow
180 godbc_sqlite3-nodnssec godbc_sqlite3 godbc_sqlite3-nsec3 godbc_sqlite3-nsec3-optout godbc_sqlite3-narrow
181 gpgsql-nodnssec gpgsql gpgsql-nsec3 gpgsql-nsec3-optout gpgsql-nsec3-narrow
182 gsqlite3-nodnssec gsqlite3 gsqlite3-nsec3 gsqlite3-nsec3-optout gsqlite3-nsec3-narrow
183 mydns
184 opendbx-sqlite3
185 oracle-nodnssec oracle oracle-nsec3
186 remotebackend-pipe remotebackend-unix remotebackend-http remotebackend-zeromq
187 remotebackend-pipe-dnssec remotebackend-unix-dnssec remotebackend-http-dnssec remotebackend-zeromq-dnssec
188 #remotebackend-pipe-nsec3 remotebackend-unix-nsec3 remotebackend-http-nsec3
189 #remotebackend-pipe-nsec3-narrow remotebackend-unix-nsec3-narrow remotebackend-http-nsec3-narrow
190 tinydns
191 ldap-tree ldap-simple ldap-strict
192 #ext-nsd ext-nsd-nsec ext-nsd-nsec3 ext-bind ext-bind-nsec ext-bind-nsec3
193
194 * Add -presigned to any ext-nsd, ext-bind, bind, gmysql or gsqlite3 test (except narrow)
195 to test presigned operation.
196
197 * Add -both to any bind or gmysql test (except narrow) to
198 test normal and presigned operation.
199
200 * Add 'wait' (literally) after the context to not kill
201 pdns_server immediately after testing. 'nowait' will kill it.
202
203 * A cachettl can be supplied if you want to run tests with a
204 ttl setting set. The default cachettl is 0.
205
206 * Specifictest can be used to run only one single test.
207 __EOF__
208 exit
209 fi
210
211 for prog in $SDIG $SAXFR $NOTIFY $NSEC3DIG; do
212 if `echo $prog | grep -q '../pdns'`; then
213 ${MAKE} -C ../pdns ${prog##*../pdns/} || exit
214 fi
215 done
216
217 # Copy original zones because the test might modify them (well only the dyndns stuff, but let's make this work for others as well)
218 for zone in $(grep 'zone ' named.conf | cut -f2 -d\")
219 do
220 if [ -f zones/$zone.orig ]
221 then
222 cp -f zones/$zone.orig zones/$zone
223 fi
224 done
225
226 rm -f pdns*.pid
227 rm -f *_tests
228 rm -f pdns-*.conf
229
230 presigned=no
231 both=no
232
233 if [[ "$context" =~ .+-presigned.* ]]
234 then
235 presigned=yes
236 port=$((port-100))
237 eval "$(echo "$context" | sed -r 's/(.+)(-presigned)(-(.*))?/context=\1 presignedcontext=\4/')"
238 if [ -z "$presignedcontext" ]
239 then
240 presignedcontext=$context
241 fi
242 fi
243
244 if [ "${context: -5}" = "-both" ]
245 then
246 both=yes
247 port=$((port-100))
248 context=${context%-both}
249 presignedcontext=$context
250 fi
251
252 optout=0
253 pkcs11=0
254
255 if [ "${context: -13}" = "-nsec3-optout" ]
256 then
257 optout=1
258 fi
259
260 if [ "${context: -7}" = "-pkcs11" ]
261 then
262 pkcs11=1
263 context=${context:0:-7}
264 fi
265
266 # check for lua
267 if $PDNS --version 2>&1 | grep Features: | grep -q "lua"
268 then
269 lua_prequery="--lua-prequery-script=./check_stest_source"
270 skiplua=0
271 else
272 lua_prequery=""
273 skiplua=1
274 fi
275
276 source backends/common
277
278 start_master
279
280 if [ "$skiplua" == "1" ]; then
281 skipreasons="$skipreasons nolua"
282 fi
283
284 check_process
285
286 dotests () {
287 nameserver=127.0.0.1 ./runtests $spectest
288 ./toxml
289 ./totar
290
291 cat ./trustedkeys
292
293 if [ -s "./failed_tests" ]
294 then
295 for t in `cat failed_tests`
296 do
297 echo -e "\n\n$t"
298 cat ${testsdir}/$t/diff
299 done
300 if [ "${!1}" -eq 0 ]
301 then
302 eval "$1=1"
303 fi
304 fi
305 }
306
307 ## TODO: give sdig a timeout
308
309 RETVAL=0
310
311 export address
312 export port
313 export context
314 export extracontexts
315 export skipreasons
316 export testsdir
317 export optout
318
319 sleep 2
320
321 if [ $presigned = no ] || [ $both = yes ]
322 then
323 dotests RETVAL
324 fi
325
326 if [ $presigned = yes ] || [ $both = yes ]
327 then
328 start_slave
329
330 export port
331 export context
332 export skipreasons
333
334 dotests RETVAL
335 fi
336
337 if [ "$wait" = "wait" ]
338 then
339 echo tests done! push enter to terminate instance
340 read l
341 fi
342
343 trap "kill_process $RETVAL" EXIT