]> git.ipfire.org Git - thirdparty/pdns.git/blob - build-scripts/travis.sh
0b64ee5e76245da0e900daa33ac14f9c858288e9
[thirdparty/pdns.git] / build-scripts / travis.sh
1 #!/bin/bash
2
3 ## "upstream" travis functions
4 ANSI_RED="\033[31;1m"
5 ANSI_GREEN="\033[32;1m"
6 ANSI_RESET="\033[0m"
7 ANSI_CLEAR="\033[0K"
8
9 TRAVIS_TEST_RESULT=
10 TRAVIS_CMD=
11
12 function travis_cmd() {
13 local assert output display retry timing cmd result
14
15 cmd=$1
16 TRAVIS_CMD=$cmd
17 shift
18
19 while true; do
20 case "$1" in
21 --assert) assert=true; shift ;;
22 --echo) output=true; shift ;;
23 --display) display=$2; shift 2;;
24 --retry) retry=true; shift ;;
25 --timing) timing=true; shift ;;
26 *) break ;;
27 esac
28 done
29
30 if [[ -n "$timing" ]]; then
31 travis_time_start
32 fi
33
34 if [[ -n "$output" ]]; then
35 echo "\$ ${display:-$cmd}"
36 fi
37
38 if [[ -n "$retry" ]]; then
39 travis_retry eval "$cmd"
40 else
41 eval "$cmd"
42 fi
43 result=$?
44
45 if [[ -n "$timing" ]]; then
46 travis_time_finish
47 fi
48
49 if [[ -n "$assert" ]]; then
50 travis_assert $result
51 fi
52
53 return $result
54 }
55
56 travis_time_start() {
57 travis_timer_id=$(printf %08x $(( RANDOM * RANDOM )))
58 travis_start_time=$(travis_nanoseconds)
59 echo -en "travis_time:start:$travis_timer_id\r${ANSI_CLEAR}"
60 }
61
62 travis_time_finish() {
63 local result=$?
64 travis_end_time=$(travis_nanoseconds)
65 local duration=$(($travis_end_time-$travis_start_time))
66 echo -en "\ntravis_time:end:$travis_timer_id:start=$travis_start_time,finish=$travis_end_time,duration=$duration\r${ANSI_CLEAR}"
67 return $result
68 }
69
70 function travis_nanoseconds() {
71 local cmd="date"
72 local format="+%s%N"
73 local os=$(uname)
74
75 if hash gdate > /dev/null 2>&1; then
76 cmd="gdate" # use gdate if available
77 elif [[ "$os" = Darwin ]]; then
78 format="+%s000000000" # fallback to second precision on darwin (does not support %N)
79 fi
80
81 $cmd -u $format
82 }
83
84 travis_assert() {
85 local result=${1:-$?}
86 if [ $result -ne 0 ]; then
87 echo -e "\n${ANSI_RED}The command \"$TRAVIS_CMD\" failed and exited with $result during $TRAVIS_STAGE.${ANSI_RESET}\n\nYour build has been stopped."
88 travis_terminate 2
89 fi
90 }
91
92 travis_result() {
93 local result=$1
94 export TRAVIS_TEST_RESULT=$(( ${TRAVIS_TEST_RESULT:-0} | $(($result != 0)) ))
95
96 if [ $result -eq 0 ]; then
97 echo -e "\n${ANSI_GREEN}The command \"$TRAVIS_CMD\" exited with $result.${ANSI_RESET}"
98 else
99 echo -e "\n${ANSI_RED}The command \"$TRAVIS_CMD\" exited with $result.${ANSI_RESET}"
100 fi
101 }
102
103 travis_terminate() {
104 pkill -9 -P $$ &> /dev/null || true
105 exit $1
106 }
107
108 travis_wait() {
109 local timeout=$1
110
111 if [[ $timeout =~ ^[0-9]+$ ]]; then
112 # looks like an integer, so we assume it's a timeout
113 shift
114 else
115 # default value
116 timeout=20
117 fi
118
119 local cmd="$@"
120 local log_file=travis_wait_$$.log
121
122 $cmd &>$log_file &
123 local cmd_pid=$!
124
125 travis_jigger $! $timeout $cmd &
126 local jigger_pid=$!
127 local result
128
129 {
130 wait $cmd_pid 2>/dev/null
131 result=$?
132 ps -p$jigger_pid &>/dev/null && kill $jigger_pid
133 }
134
135 if [ $result -eq 0 ]; then
136 echo -e "\n${ANSI_GREEN}The command $cmd exited with $result.${ANSI_RESET}"
137 else
138 echo -e "\n${ANSI_RED}The command $cmd exited with $result.${ANSI_RESET}"
139 fi
140
141 echo -e "\n${ANSI_GREEN}Log:${ANSI_RESET}\n"
142 cat $log_file
143
144 return $result
145 }
146
147 travis_jigger() {
148 # helper method for travis_wait()
149 local cmd_pid=$1
150 shift
151 local timeout=$1 # in minutes
152 shift
153 local count=0
154
155 # clear the line
156 echo -e "\n"
157
158 while [ $count -lt $timeout ]; do
159 count=$(($count + 1))
160 echo -ne "Still running ($count of $timeout): $@\r"
161 sleep 60
162 done
163
164 echo -e "\n${ANSI_RED}Timeout (${timeout} minutes) reached. Terminating \"$@\"${ANSI_RESET}\n"
165 kill -9 $cmd_pid
166 }
167
168 travis_retry() {
169 local result=0
170 local count=1
171 while [ $count -le 3 ]; do
172 [ $result -ne 0 ] && {
173 echo -e "\n${ANSI_RED}The command \"$@\" failed. Retrying, $count of 3.${ANSI_RESET}\n" >&2
174 }
175 "$@"
176 result=$?
177 [ $result -eq 0 ] && break
178 count=$(($count + 1))
179 sleep 1
180 done
181
182 [ $count -gt 3 ] && {
183 echo -e "\n${ANSI_RED}The command \"$@\" failed 3 times.${ANSI_RESET}\n" >&2
184 }
185
186 return $result
187 }
188
189 travis_fold() {
190 local action=$1
191 local name=$2
192 echo -en "travis_fold:${action}:${name}\r${ANSI_CLEAR}"
193 }
194
195 decrypt() {
196 echo $1 | base64 -d | openssl rsautl -decrypt -inkey ~/.ssh/id_rsa.repo
197 }
198
199
200 run() {
201 travis_cmd "$1" --echo --assert
202 }
203
204 install_auth() {
205 # pkcs11 build requirements
206 run "sudo apt-get -qq --no-install-recommends install \
207 libp11-kit-dev"
208
209 # for validns
210 run "sudo add-apt-repository -y ppa:jelu/validns"
211 run 'curl "http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0x7AA4AC1F04A52E842B88094F01B7B7D6564DECD0" | sudo apt-key add - '
212
213 # geoip-backend
214 run "sudo add-apt-repository -y ppa:maxmind/ppa"
215 run "gpg --keyserver keyserver.ubuntu.com --recv-keys DE742AFA"
216 run "gpg --export DE742AFA | sudo apt-key add -"
217 run "sudo apt-get update"
218 run "sudo apt-get -qq --no-install-recommends install \
219 libgeoip-dev \
220 libyaml-cpp-dev \
221 libmaxminddb-dev"
222
223 # lmdb-backend
224 run "sudo apt-get -qq --no-install-recommends install \
225 liblmdb-dev"
226
227 # opendbx-backend
228 run "sudo apt-get -qq --no-install-recommends install \
229 libopendbx1-dev \
230 libopendbx1-sqlite3"
231
232 # remote-backend build requirements
233 run "sudo apt-get -qq --no-install-recommends install \
234 libzmq3-dev"
235
236 # godbc-backend
237 run "sudo apt-get -qq --no-install-recommends install \
238 libsqliteodbc"
239
240 # authoritative test requirements / setup
241 run "sudo apt-get -qq --no-install-recommends install \
242 bind9utils \
243 ldnsutils \
244 libnet-dns-perl \
245 moreutils \
246 unbound-host \
247 validns \
248 default-jre \
249 jq"
250
251 run "cd .."
252 run "wget https://github.com/dblacka/jdnssec-tools/releases/download/0.14/jdnssec-tools-0.14.tar.gz"
253 run "sudo tar xfz jdnssec-tools-0.14.tar.gz --strip-components=1 -C /"
254 run "cd ${TRAVIS_BUILD_DIR}"
255
256 # pkcs11 test requirements / setup
257 run "sudo apt-get -qq --no-install-recommends install \
258 p11-kit \
259 softhsm"
260 run "sudo mkdir -p /etc/pkcs11/modules/"
261 run "sudo cp -f regression-tests/softhsm.mod /etc/pkcs11/modules/softhsm.module"
262 run "sudo cp -f regression-tests/softhsm.conf /etc/softhsm/softhsm.conf"
263 run "sudo chmod 0755 /etc/softhsm/"
264 run "sudo chmod 0644 /etc/softhsm/softhsm.conf"
265 run "sudo chmod 0777 /var/lib/softhsm"
266 run "p11-kit -l" # ensure it's ok
267
268 # bind-backend tests requirements
269 run "sudo apt-get -qq --no-install-recommends install \
270 alien\
271 fakeroot"
272 run "cd .."
273 run "wget https://downloads.powerdns.com/tmp/dnsperf-2.0.0.0-1-rhel-6-x86_64.tar.gz"
274 run "tar xzvf dnsperf-2.0.0.0-1-rhel-6-x86_64.tar.gz"
275 run "fakeroot alien --to-deb dnsperf-2.0.0.0-1/dnsperf-2.0.0.0-1.el6.x86_64.rpm"
276 run "sudo dpkg -i dnsperf_2.0.0.0-2_amd64.deb"
277 run "cd ${TRAVIS_BUILD_DIR}"
278
279 # geoip-backend test requirements / setup
280 run "sudo apt-get -qq --no-install-recommends install \
281 geoip-database"
282
283 # gmysql-backend test requirements
284 # as of 2016/12/01, mysql-5.6 is now installed in the default travis image
285 # see https://github.com/travis-ci/travis-ci/issues/6961
286 #run "sudo apt-get -qq --no-install-recommends install \
287 # mysql-server"
288
289 # godbc-backend test setup
290 run 'echo -e "[pdns-sqlite3-1]\nDriver = SQLite3\nDatabase = ${PWD}/regression-tests/pdns.sqlite3\n\n[pdns-sqlite3-2]\nDriver = SQLite3\nDatabase = ${PWD}/regression-tests/pdns.sqlite32\n" > ${HOME}/.odbc.ini'
291 run 'echo ${HOME}/.odbc.ini'
292 run 'cat ${HOME}/.odbc.ini'
293
294 # remote-backend tests requirements
295 run "sudo apt-get -qq --no-install-recommends install \
296 ruby-json \
297 rubygems-integration \
298 socat"
299 run "gem update --system"
300 run "gem install bundler --no-rdoc --no-ri"
301 run "cd modules/remotebackend"
302 run "ruby -S bundle install"
303 run "cd ../.."
304
305 # tinydns
306 run "sudo apt-get -qq --no-install-recommends install \
307 libcdb-dev"
308
309 # No backend
310 run "sudo apt-get -qq --no-install-recommends install \
311 authbind \
312 faketime"
313 run "sudo touch /etc/authbind/byport/53"
314 run "sudo chmod 755 /etc/authbind/byport/53"
315
316 # Install dnsmasq to make lookups more robust
317 run "sudo apt-get -qq --no-install-recommends install \
318 dnsmasq"
319 run 'echo listen-address=127.0.0.53 | sudo tee /etc/dnsmasq.d/local.conf'
320 run 'echo bind-interfaces | sudo tee -a /etc/dnsmasq.d/local.conf'
321
322 ## WARNING
323 ## after this dnsmasq restart, DNS lookups will fail for a few seconds.
324 run 'sudo service dnsmasq restart'
325 run "sudo resolvconf --disable-updates"
326 run 'echo nameserver 127.0.0.53 | sudo tee /etc/resolv.conf'
327 run "export RESOLVERIP=127.0.0.53"
328 }
329
330 install_ixfrdist() {
331 run "sudo apt-get -qq --no-install-recommends install \
332 libyaml-cpp-dev"
333 }
334
335 install_recursor() {
336 # recursor test requirements / setup
337 # lua-posix is required for the ghost tests
338 # (used by the prequery script in the auth)
339 run "sudo apt-get -qq --no-install-recommends install \
340 authbind \
341 daemontools \
342 jq \
343 libfaketime \
344 libsnmp-dev \
345 lua-posix \
346 lua-socket \
347 moreutils \
348 snmpd"
349 run "cd .."
350 run "wget http://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip"
351 run "unzip top-1m.csv.zip -d ${TRAVIS_BUILD_DIR}/regression-tests"
352 run 'echo -e "deb [arch=amd64] http://repo.powerdns.com/ubuntu trusty-auth-master main" | sudo tee /etc/apt/sources.list.d/pdns.list'
353 run 'echo -e "Package: pdns-*\nPin: origin repo.powerdns.com\nPin-Priority: 9001" | sudo tee /etc/apt/preferences.d/pdns'
354 run 'curl https://repo.powerdns.com/CBC8B383-pub.asc | sudo apt-key add - '
355 run 'sudo apt-get update'
356 run 'sudo apt-get -y install pdns-server pdns-tools'
357 run "sudo service pdns stop"
358 run 'for suffix in {1..40}; do sudo /sbin/ip addr add 10.0.3.$suffix/32 dev lo; done'
359 run "sudo touch /etc/authbind/byport/53"
360 run "sudo chmod 755 /etc/authbind/byport/53"
361 run "cd ${TRAVIS_BUILD_DIR}"
362 # install SNMP
363 run "sudo sed -i \"s/agentxperms 0700 0755 recursor/agentxperms 0700 0755 ${USER}/g\" regression-tests.recursor-dnssec/snmpd.conf"
364 run "sudo cp -f regression-tests.recursor-dnssec/snmpd.conf /etc/snmp/snmpd.conf"
365 run "sudo service snmpd restart"
366 ## fun story, the directory perms are only applied if it doesn't exist yet, and it is created by the init script, so..
367 run "sudo chmod 0755 /var/agentx"
368 }
369
370 install_dnsdist() {
371 # test requirements / setup
372 run "sudo add-apt-repository -y ppa:zeha/libfstrm-ppa"
373 run 'curl "http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0x396160EF8126A2E2" | sudo apt-key add - '
374 run "sudo apt-get -qq update"
375 run "sudo apt-get -qq --no-install-recommends install \
376 snmpd \
377 libcdb-dev \
378 libfstrm-dev \
379 liblmdb-dev \
380 libsnmp-dev"
381 run "sudo sed -i \"s/agentxperms 0700 0755 dnsdist/agentxperms 0700 0755 ${USER}/g\" regression-tests.dnsdist/snmpd.conf"
382 run "sudo cp -f regression-tests.dnsdist/snmpd.conf /etc/snmp/snmpd.conf"
383 run "sudo service snmpd restart"
384 # fun story, the directory perms are only applied if it doesn't exist yet, and it is created by the init script, so..
385 run "sudo chmod 0755 /var/agentx"
386 }
387
388 check_for_dangling_symlinks() {
389 run '! find -L . -name missing-sources -prune -o ! -name pubsuffix.cc -type l | grep .'
390 }
391
392 build_auth() {
393 run "autoreconf -vi"
394 run "./configure \
395 ${sanitizerflags} \
396 --with-dynmodules='bind gmysql geoip gpgsql gsqlite3 lmdb lua opendbx pipe random remote tinydns godbc lua2' \
397 --with-modules='' \
398 --with-sqlite3 \
399 --with-libsodium \
400 --enable-experimental-pkcs11 \
401 --enable-remotebackend-zeromq \
402 --enable-tools \
403 --enable-unit-tests \
404 --enable-backend-unit-tests \
405 --enable-fuzz-targets \
406 --disable-dependency-tracking \
407 --disable-silent-rules \
408 --with-lmdb=/usr"
409 run "make -k dist"
410 run "make -k -j3"
411 run "make -k install DESTDIR=/tmp/pdns-install-dir"
412 run "find /tmp/pdns-install-dir -ls"
413 }
414
415 build_ixfrdist() {
416 run "autoreconf -vi"
417 run "./configure \
418 ${sanitizerflags} \
419 --with-dynmodules='bind' \
420 --with-modules='' \
421 --enable-ixfrdist \
422 --enable-unit-tests \
423 --disable-dependency-tracking \
424 --disable-silent-rules"
425 run "make -C ext -k -j3"
426 run "cd pdns"
427 run "make -k -j3 ixfrdist"
428 run "cd .."
429 }
430
431 build_recursor() {
432 export PDNS_RECURSOR_DIR=$HOME/pdns_recursor
433 run "cd pdns/recursordist"
434 check_for_dangling_symlinks
435 run "cd ../.."
436 # distribution build
437 run "./build-scripts/dist-recursor"
438 run "cd pdns/recursordist"
439 run "tar xf pdns-recursor-*.tar.bz2"
440 run "rm -f pdns-recursor-*.tar.bz2"
441 run "cd pdns-recursor-*"
442 run "./configure \
443 ${sanitizerflags} \
444 --prefix=$PDNS_RECURSOR_DIR \
445 --with-libsodium \
446 --enable-unit-tests \
447 --enable-nod \
448 --disable-dnstap \
449 --disable-silent-rules"
450 run "make -k -j3"
451 run "make install"
452 run "find $PDNS_RECURSOR_DIR -ls"
453 run "cd ../../.."
454 }
455
456 build_dnsdist(){
457 run "cd pdns/dnsdistdist"
458 check_for_dangling_symlinks
459 run "cd ../.."
460 run "./build-scripts/dist-dnsdist"
461 run "cd pdns/dnsdistdist"
462 run "tar xf dnsdist*.tar.bz2"
463 run "cd dnsdist-*"
464 run "./configure \
465 ${sanitizerflags} \
466 --enable-unit-tests \
467 --with-libsodium \
468 --enable-dnscrypt \
469 --enable-dns-over-tls \
470 --enable-dnstap \
471 --with-lmdb=/usr \
472 --prefix=$HOME/dnsdist \
473 --disable-silent-rules"
474 run "make -k -j3"
475 run "./testrunner"
476 run "make install"
477 run "cd ../../.."
478 run "find $HOME/dnsdist -ls"
479 run "rm -rf pdns/dnsdistdist/dnsdist-*/"
480
481 }
482
483 test_auth() {
484 run "make -j3 check || (cat pdns/test-suite.log; false)"
485 run "test -f pdns/test-suite.log && cat pdns/test-suite.log || true"
486 run "test -f modules/remotebackend/test-suite.log && cat modules/remotebackend/test-suite.log || true"
487
488 #DNSName - make -k -j3 -C pdns $(grep '(EXEEXT):' pdns/Makefile | cut -f1 -d\$ | grep -E -v 'dnsdist|calidns')
489 run 'make -k -j3 -C pdns $(grep "(EXEEXT):" pdns/Makefile | cut -f1 -d\$)'
490
491 run "cd pdns"
492 run "./pdnsutil test-algorithms"
493 run "cd .."
494
495 run "cd regression-tests"
496
497 #travis unbound is too old for this test (unbound 1.6.0 required)
498 run "touch tests/ent-asterisk/fail.nsec"
499
500 run "./timestamp ./start-test-stop 5300 lua-minimal nowait 0 apex-level-a-but-no-a"
501
502 run "./timestamp ./start-test-stop 5300 bind-both"
503 run "./timestamp ./start-test-stop 5300 bind-dnssec-both"
504 run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-both"
505 # run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-optout-both"
506 run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-narrow"
507 run "./timestamp ./start-test-stop 5300 bind-hybrid-nsec3"
508 #ecdsa - ./timestamp ./start-test-stop 5300 bind-dnssec-pkcs11
509
510 run "./timestamp ./start-test-stop 5300 geoip"
511 run "./timestamp ./start-test-stop 5300 geoip-nsec3-narrow"
512 run "export geoipdatabase=../modules/geoipbackend/regression-tests/GeoLiteCity.mmdb"
513 run "./timestamp ./start-test-stop 5300 geoip"
514
515 run "./timestamp ./start-test-stop 5300 gmysql-nodnssec-both"
516 run "./timestamp ./start-test-stop 5300 gmysql-both"
517 run "./timestamp ./start-test-stop 5300 gmysql-nsec3-both"
518 # run "./timestamp ./start-test-stop 5300 gmysql-nsec3-optout-both"
519 run "./timestamp ./start-test-stop 5300 gmysql-nsec3-narrow"
520
521 run "export GODBC_SQLITE3_DSN=pdns-sqlite3-1"
522 run "./timestamp ./start-test-stop 5300 godbc_sqlite3-nsec3"
523
524 run "./timestamp ./start-test-stop 5300 gpgsql-nodnssec-both"
525 run "./timestamp ./start-test-stop 5300 gpgsql-both"
526 run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-both"
527 #run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-optout-both"
528 #run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-narrow"
529
530 run "./timestamp ./start-test-stop 5300 gsqlite3-nodnssec-both"
531 run "./timestamp ./start-test-stop 5300 gsqlite3-both"
532 run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-both"
533 # run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-optout-both"
534 run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-narrow"
535
536 run "./timestamp ./start-test-stop 5300 opendbx-sqlite3"
537
538 run "./timestamp ./start-test-stop 5300 remotebackend-pipe"
539 run "./timestamp ./start-test-stop 5300 remotebackend-pipe-dnssec"
540 #run "./timestamp ./start-test-stop 5300 remotebackend-unix"
541 run "./timestamp ./start-test-stop 5300 remotebackend-unix-dnssec"
542 #run "./timestamp ./start-test-stop 5300 remotebackend-http"
543 run "./timestamp ./start-test-stop 5300 remotebackend-http-dnssec"
544 #run "./timestamp ./start-test-stop 5300 remotebackend-zeromq"
545 run "./timestamp ./start-test-stop 5300 remotebackend-zeromq-dnssec"
546
547 run "./timestamp ./start-test-stop 5300 tinydns"
548
549 run "./timestamp ./start-test-stop 5300 lmdb-nodnssec-both"
550 run "./timestamp ./start-test-stop 5300 lmdb-both"
551 run "./timestamp ./start-test-stop 5300 lmdb-nsec3-both"
552 # run "./timestamp ./start-test-stop 5300 lmdb-nsec3-optout-both"
553
554 run "rm tests/ent-asterisk/fail.nsec"
555
556 run "cd ../modules/luabackend/test2"
557 run "../../../regression-tests/timestamp ./runtest"
558
559 run "cd ../../.."
560
561 run "cd regression-tests.rootzone"
562 run "./timestamp ./start-test-stop 5300 bind-both"
563 run "./timestamp ./start-test-stop 5300 bind-dnssec-both"
564 run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-both"
565 # run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-optout-both"
566 run "./timestamp ./start-test-stop 5300 bind-dnssec-nsec3-narrow"
567 run "./timestamp ./start-test-stop 5300 bind-hybrid-nsec3"
568
569 run "./timestamp ./start-test-stop 5300 gmysql-nodnssec-both"
570 run "./timestamp ./start-test-stop 5300 gmysql-both"
571 run "./timestamp ./start-test-stop 5300 gmysql-nsec3-both"
572 # run "./timestamp ./start-test-stop 5300 gmysql-nsec3-optout-both"
573 run "./timestamp ./start-test-stop 5300 gmysql-nsec3-narrow"
574
575 run "./timestamp ./start-test-stop 5300 gpgsql-nodnssec-both"
576 run "./timestamp ./start-test-stop 5300 gpgsql-both"
577 run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-both"
578 # run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-optout-both"
579 run "./timestamp ./start-test-stop 5300 gpgsql-nsec3-narrow"
580
581 run "./timestamp ./start-test-stop 5300 gsqlite3-nodnssec-both"
582 run "./timestamp ./start-test-stop 5300 gsqlite3-both"
583 run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-both"
584 # run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-optout-both"
585 run "./timestamp ./start-test-stop 5300 gsqlite3-nsec3-narrow"
586
587 run "./timestamp ./start-test-stop 5300 lua2"
588 run "./timestamp ./start-test-stop 5300 lua2-dnssec"
589
590 run "./timestamp ./start-test-stop 5300 lmdb-both"
591 run "./timestamp ./start-test-stop 5300 lmdb-nodnssec-both"
592 run "./timestamp ./start-test-stop 5300 lmdb-nsec3-both"
593 # run "./timestamp ./start-test-stop 5300 lmdb-nsec3-optout-both"
594
595 run "cd .."
596
597 ### api ###
598 run "cd regression-tests.api"
599 run "./runtests authoritative"
600 run "cd .."
601
602 ### no backend tests ###
603 run "cd regression-tests.nobackend/"
604 run "./runtests"
605 run "test ! -s ./failed_tests"
606 run "cd .."
607
608 ### Lua rec tests ###
609 run "cd regression-tests.auth-py"
610 run "./runtests -v || (cat ./configs/auth/pdns.log; false)"
611 run "cd .."
612
613 run "rm -f regression-tests/zones/*-slave.*" #FIXME
614 }
615
616 test_ixfrdist(){
617 run "cd regression-tests.ixfrdist"
618 run "IXFRDISTBIN=${TRAVIS_BUILD_DIR}/pdns/ixfrdist ./runtests -v || (cat ixfrdist.log; false)"
619 run "cd .."
620 }
621
622 test_recursor() {
623 export PDNSRECURSOR="${PDNS_RECURSOR_DIR}/sbin/pdns_recursor"
624 export DNSBULKTEST="/usr/bin/dnsbulktest"
625 export RECCONTROL="${PDNS_RECURSOR_DIR}/bin/rec_control"
626 run "cd pdns/recursordist/pdns-recursor-*"
627 run "make -j 3 check || (cat test-suite.log; false)"
628 run "cd ${TRAVIS_BUILD_DIR}"
629 run "./build-scripts/test-recursor"
630 export RECURSOR="${PDNSRECURSOR}"
631 run "cd regression-tests"
632 run "THRESHOLD=50 TRACE=no ./timestamp ./recursor-test 5300 50000"
633 run "cd .."
634
635 run "cd regression-tests.api"
636 run "./runtests recursor"
637 run "cd .."
638 }
639
640 test_dnsdist(){
641 run "cd regression-tests.dnsdist"
642 run "DNSDISTBIN=$HOME/dnsdist/bin/dnsdist ./runtests -v --ignore-files='(?:^\.|^_,|^setup\.py$|^test_DOH\.py$|^test_OCSP\.py$|^test_Prometheus\.py$|^test_TLSSessionResumption\.py$)'"
643 run "rm -f ./DNSCryptResolver.cert ./DNSCryptResolver.key"
644 run "cd .."
645 }
646
647 test_repo(){
648 run "git status"
649 run "git status | grep -q clean"
650 }
651
652 # global build requirements
653 run "sudo apt-get -qq --no-install-recommends install \
654 libboost-all-dev \
655 libluajit-5.1-dev \
656 libedit-dev \
657 libprotobuf-dev \
658 protobuf-compiler"
659
660 run "cd .."
661 run "wget http://ppa.launchpad.net/kalon33/gamesgiroll/ubuntu/pool/main/libs/libsodium/libsodium-dev_1.0.3-1~ppa14.04+1_amd64.deb"
662 run "wget http://ppa.launchpad.net/kalon33/gamesgiroll/ubuntu/pool/main/libs/libsodium/libsodium13_1.0.3-1~ppa14.04+1_amd64.deb"
663 run "sudo dpkg -i libsodium-dev_1.0.3-1~ppa14.04+1_amd64.deb libsodium13_1.0.3-1~ppa14.04+1_amd64.deb"
664 run "cd ${TRAVIS_BUILD_DIR}"
665
666 compilerflags="-O1 -Werror=vla"
667 sanitizerflags=""
668 if [ "$CC" = "clang" ]
669 then
670 compilerflags="$compilerflags -Werror=string-plus-int"
671 if [ "${PDNS_BUILD_PRODUCT}" = "recursor" ]; then
672 sanitizerflags="${sanitizerflags} --enable-asan"
673 elif [ "${PDNS_BUILD_PRODUCT}" = "dnsdist" ]; then
674 sanitizerflags="${sanitizerflags} --enable-asan --enable-ubsan"
675 elif [ "${PDNS_BUILD_PRODUCT}" = "ixfrdist" ]; then
676 sanitizerflags="${sanitizerflags} --enable-asan --enable-ubsan"
677 fi
678 fi
679 export CFLAGS=$compilerflags
680 export CXXFLAGS=$compilerflags
681 export sanitizerflags
682 # We need a suppression for UndefinedBehaviorSanitizer with ixfrdist,
683 # because of a vptr bug fixed in Boost 1.57.0:
684 # https://github.com/boostorg/any/commit/c92ab03ab35775b6aab30f6cdc3d95b7dd8fc5c6
685 export UBSAN_OPTIONS="print_stacktrace=1:halt_on_error=1:suppressions=${TRAVIS_BUILD_DIR}/build-scripts/UBSan.supp"
686
687 install_$PDNS_BUILD_PRODUCT
688
689 build_$PDNS_BUILD_PRODUCT
690
691 test_$PDNS_BUILD_PRODUCT
692
693 if [ $PDNS_BUILD_PRODUCT == "auth" ]; then
694 test_repo
695 fi