|
| 1 | +# #-- xfr_over_notify.test --# |
| 2 | +# source the master var file when it's there |
| 3 | +[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master |
| 4 | +# use .tpkg.var.test for in test variable passing |
| 5 | +[ -f .tpkg.var.test ] && source .tpkg.var.test |
| 6 | +. ../common.sh |
| 7 | + |
| 8 | +# Wait for NSD to test the upstream and wait on SOA timer. |
| 9 | +# this is a dbeug message, from xfrd |
| 10 | +#wait_logfile nsd.log "zone example.net got update indicating current serial" 10 |
| 11 | +#instead, wait a bit. |
| 12 | +sleep 4 |
| 13 | + |
| 14 | +# At the start the serial is 1. |
| 15 | +dig -4 @127.0.0.1 -p $NSD_PORT example.net SOA | tee output |
| 16 | +if grep "1 3600" output; then |
| 17 | + echo "OK" |
| 18 | +else |
| 19 | + echo "wrong serial at start" |
| 20 | + exit 1 |
| 21 | +fi |
| 22 | + |
| 23 | +# change upstream serial |
| 24 | +echo "> kill ldns-testns" |
| 25 | +kill_from_pidfile testns.pid |
| 26 | +cat testns.log |
| 27 | +echo "> start ldns-testns" |
| 28 | +ldns-testns -p $LDNS_PORT xfr_over_notify.datafile2 >testns.log 2>&1 & |
| 29 | +echo "$!" > testns.pid |
| 30 | +wait_ldns_testns_up testns.log |
| 31 | + |
| 32 | +# notify an older serial than the upstream has already got |
| 33 | +# but that serial is newer than what NSD has. |
| 34 | +ldns-notify -z example.net -p $NSD_PORT -s 2 127.0.0.1 |
| 35 | + |
| 36 | +# The AXFR happens for serial 4. |
| 37 | +# Wait for the verifier during the reload to pause |
| 38 | +wait_logfile nsd.log "verifier: verifier script: delay" 20 |
| 39 | + |
| 40 | +# change upstream serial |
| 41 | +echo "> kill ldns-testns" |
| 42 | +kill_from_pidfile testns.pid |
| 43 | +cat testns.log |
| 44 | +echo "> start ldns-testns 3" |
| 45 | +ldns-testns -p $LDNS_PORT xfr_over_notify.datafile3 >testns.log 2>&1 & |
| 46 | +echo "$!" > testns.pid |
| 47 | +wait_ldns_testns_up testns.log |
| 48 | + |
| 49 | +# Reload is delayed by a couple seconds. Add some more updates in sequence. |
| 50 | +sleep 1 |
| 51 | +ldns-notify -z example.net -p $NSD_PORT -s 5 127.0.0.1 |
| 52 | + |
| 53 | +# change upstream serial |
| 54 | +echo "> kill ldns-testns" |
| 55 | +kill_from_pidfile testns.pid |
| 56 | +cat testns.log |
| 57 | +echo "> start ldns-testns 4" |
| 58 | +ldns-testns -p $LDNS_PORT xfr_over_notify.datafile4 >testns.log 2>&1 & |
| 59 | +echo "$!" > testns.pid |
| 60 | +wait_ldns_testns_up testns.log |
| 61 | + |
| 62 | +sleep 1 |
| 63 | +ldns-notify -z example.net -p $NSD_PORT -s 6 127.0.0.1 |
| 64 | + |
| 65 | +wait_logfile nsd.log "verifier: verifier script: delay done" 20 |
| 66 | + |
| 67 | +# The verify script is done, the reload exits and NSD processes the |
| 68 | +# update from 1 to 4 and the queued zone transfers. |
| 69 | + |
| 70 | +wait_logfile nsd.log "zone example.net serial 1 is updated to 4" 20 |
| 71 | +# during the reload it logs the two updates: |
| 72 | +wait_logfile nsd.log "zone example.net. received update to serial 5" 20 |
| 73 | +wait_logfile nsd.log "zone example.net. received update to serial 6" 20 |
| 74 | +# reload is done |
| 75 | +wait_logfile nsd.log "zone example.net serial 4 is updated to 6" 20 |
| 76 | + |
| 77 | +# If it now has the log message: |
| 78 | +# "error: xfrd: zone example.net: soa serial 5 update failed, restarting transfer (notified zone)" |
| 79 | +# then if has failed because of the two updates bunched up to reload. |
| 80 | + |
| 81 | +sleep 1 |
| 82 | +if grep "update failed, restarting transfer" nsd.log; then |
| 83 | + echo "The reload update has failed and xfrd restarts the transfer" |
| 84 | + exit 1 |
| 85 | +fi |
| 86 | + |
| 87 | +# Check serial. |
| 88 | +dig -4 @127.0.0.1 -p $NSD_PORT example.net SOA | tee output |
| 89 | +if grep "6 3600" output; then |
| 90 | + echo "OK" |
| 91 | +else |
| 92 | + echo "wrong serial" |
| 93 | + exit 1 |
| 94 | +fi |
| 95 | + |
| 96 | +exit 0 |
0 commit comments