]> git.ipfire.org Git - thirdparty/pdns.git/blame - build-scripts/test-recursor-bulk
Add support for dnsdist-15 to repo script.
[thirdparty/pdns.git] / build-scripts / test-recursor-bulk
CommitLineData
ae7072eb
PL
1#!/bin/sh
2
3export PDNSRECURSOR=${PDNSRECURSOR:-/usr/sbin/pdns_recursor}
079baebc 4export PDNSRECCONTROL=${PDNSRECCONTROL:-/usr/bin/rec_control}
ae7072eb
PL
5export DNSBULKTEST=${DNSBULKTEST:-/usr/bin/dnsbulktest}
6
7if [ "$0" != "./build-scripts/test-recursor-bulk" ]; then
8 echo "Please run me from the root checkout dir"
9 exit 1
10fi
11
ae7072eb
PL
12set -x
13
14cd regression-tests
15
8a27076c 16wget -c -N http://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip
ae7072eb 17
f947fe60 18unzip top-1m.csv.zip
ae7072eb
PL
19
20numdomains="1000 5000 10000 50000 100000 500000 100000"
21if [ ! -z "$1" ]; then
22 numdomains="$1"
23fi
24
f230992c 25set +x
ae7072eb
PL
26for prefix in 'www' 'wildcard'; do
27 for num in $(seq 0 1000000); do
c3bad7e8 28 echo "${num},${prefix}.powerdnssec.org" >> ${prefix}.csv
ae7072eb
PL
29 done
30done
f230992c 31set -x
ae7072eb 32
f947fe60
PL
33EXIT=0
34
ae7072eb
PL
35version=$($PDNSRECURSOR --version 2>&1 | awk '/PowerDNS Recursor/ { print $6 }')
36for IPv6 in 0 1; do
f947fe60 37 for CSV in $(ls *.csv); do
ae7072eb 38 for domains in $numdomains; do
65f690ae 39 export context="${version}_v6:${IPv6}_csv:${CSV%%.*}"
ae7072eb
PL
40 export IPv6
41 export CSV
079baebc 42 RECURSOR=$PDNSRECURSOR RECCONTROL=$PDNSRECCONTROL THRESHOLD=0 TRACE=no time ./recursor-test 5401 $domains || EXIT=1
f947fe60 43 mv -f recursor.log recursor-${context}.log
ae7072eb
PL
44 sleep 10
45 done
46 done
47done
48./bulktest-to-json.py | tee bulktest-results.json
49
50# cleanup
51rm -rf csv/
f947fe60
PL
52rm -f *.log
53rm -f bulktest-results.json
54
55exit $EXIT