diff options
Diffstat (limited to 'testdata/pymod_thread.tdir')
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.conf | 19 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.dsc | 16 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.post | 21 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.pre | 56 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.py | 165 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.test | 67 | ||||
-rw-r--r-- | testdata/pymod_thread.tdir/pymod_thread.testns | 24 |
7 files changed, 368 insertions, 0 deletions
diff --git a/testdata/pymod_thread.tdir/pymod_thread.conf b/testdata/pymod_thread.tdir/pymod_thread.conf new file mode 100644 index 000000000000..3bf8df475d36 --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.conf @@ -0,0 +1,19 @@ +server: + verbosity: 2 + num-threads: 3 + port: @PORT@ + use-syslog: no + directory: "" + pidfile: "unbound.pid" + chroot: "" + username: "" + do-not-query-localhost: no + module-config: "validator python iterator" + +python: + python-script: "pymod_thread.py" + +forward-zone: + name: "." + forward-addr: "127.0.0.1@@TOPORT@" + diff --git a/testdata/pymod_thread.tdir/pymod_thread.dsc b/testdata/pymod_thread.tdir/pymod_thread.dsc new file mode 100644 index 000000000000..d2cc7f5c5fb9 --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.dsc @@ -0,0 +1,16 @@ +BaseName: pymod_thread +Version: 1.0 +Description: Test python module threaded +CreationDate: Fri Mar 12 11:41:03 CET 2010 +Maintainer: dr. W.C.A. Wijngaards +Category: +Component: +CmdDepends: +Depends: +Help: +Pre: pymod_thread.pre +Post: pymod_thread.post +Test: pymod_thread.test +AuxFiles: +Passed: +Failure: diff --git a/testdata/pymod_thread.tdir/pymod_thread.post b/testdata/pymod_thread.tdir/pymod_thread.post new file mode 100644 index 000000000000..e9b307548ba7 --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.post @@ -0,0 +1,21 @@ +# #-- pymod_thread.post --# +# source the master var file when it's there +[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master +# source the test var file when it's there +[ -f .tpkg.var.test ] && source .tpkg.var.test +# +# do your teardown here + +PRE="../.." +. ../common.sh +# if no python; exit +if grep "define WITH_PYTHONMODULE 1" $PRE/config.h; then + echo "have python module" +else + echo "no python module" + exit 0 +fi + +kill_pid $FWD_PID +kill_pid $UNBOUND_PID +exit 0 diff --git a/testdata/pymod_thread.tdir/pymod_thread.pre b/testdata/pymod_thread.tdir/pymod_thread.pre new file mode 100644 index 000000000000..c16362a0b3fb --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.pre @@ -0,0 +1,56 @@ +# #-- pymod_thread.pre--# +# source the master var file when it's there +[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master +# use .tpkg.var.test for in test variable passing +[ -f .tpkg.var.test ] && source .tpkg.var.test + +PRE="../.." +. ../common.sh +# if no python; exit +if grep "define WITH_PYTHONMODULE 1" $PRE/config.h; then + echo "have python module" +else + echo "no python module" + exit 0 +fi +# get module python local +cp $PRE/pythonmod/unboundmodule.py . + +if test "`uname 2>&1`" = "Darwin"; then + ldnsdir=`grep ldnsdir= ../../Makefile | sed -e 's/ldnsdir=//'` + echo export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$ldnsdir/lib:../../.libs" + export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$ldnsdir/lib:../../.libs" +fi + +get_random_port 2 +UNBOUND_PORT=$RND_PORT +FWD_PORT=$(($RND_PORT + 1)) +echo "UNBOUND_PORT=$UNBOUND_PORT" >> .tpkg.var.test +echo "FWD_PORT=$FWD_PORT" >> .tpkg.var.test + +# make config file +sed -e 's/@PORT\@/'$UNBOUND_PORT'/' -e 's/@TOPORT\@/'$FWD_PORT'/' < pymod_thread.conf > ub.conf + +# see if config file verifies +if $PRE/unbound-checkconf ub.conf 2>&1; then + echo "checkconf OK" +else + echo "checkconf failed" + exit 1 +fi + +# start forwarder +get_ldns_testns +$LDNS_TESTNS -p $FWD_PORT pymod_thread.testns >fwd.log 2>&1 & +FWD_PID=$! +echo "FWD_PID=$FWD_PID" >> .tpkg.var.test + +# start unbound in the background +$PRE/unbound -d -c ub.conf >unbound.log 2>&1 & +UNBOUND_PID=$! +echo "UNBOUND_PID=$UNBOUND_PID" >> .tpkg.var.test + +cat .tpkg.var.test +wait_ldns_testns_up fwd.log +wait_unbound_up unbound.log + diff --git a/testdata/pymod_thread.tdir/pymod_thread.py b/testdata/pymod_thread.tdir/pymod_thread.py new file mode 100644 index 000000000000..31e1d43f64ae --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.py @@ -0,0 +1,165 @@ +# -*- coding: utf-8 -*- +''' + ubmodule-msg.py: simple response packet logger + + Authors: Zdenek Vasicek (vasicek AT fit.vutbr.cz) + Marek Vavrusa (xvavru00 AT stud.fit.vutbr.cz) + + Copyright (c) 2008. All rights reserved. + + This software is open source. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 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 COPYRIGHT HOLDERS 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 REGENTS 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. + + Modified for unit test by Wouter Wijngaards, NLnet Labs, 2009. +''' +import os + +def init(id, cfg): + log_info("pythonmod: init called, module id is %d port: %d script: %s" % (id, cfg.port, cfg.python_script)) + return True + +def deinit(id): + log_info("pythonmod: deinit called, module id is %d" % id) + return True + +def inform_super(id, qstate, superqstate, qdata): + return True + +def setTTL(qstate, ttl): + """Sets return_msg TTL and all the RRs TTL""" + if qstate.return_msg: + qstate.return_msg.rep.ttl = ttl + if (qstate.return_msg.rep): + for i in range(0,qstate.return_msg.rep.rrset_count): + d = qstate.return_msg.rep.rrsets[i].entry.data + for j in range(0,d.count+d.rrsig_count): + d.rr_ttl[j] = ttl + +def dataHex(data, prefix=""): + res = "" + for i in range(0, (len(data)+15)/16): + res += "%s0x%02X | " % (prefix, i*16) + d = map(lambda x:ord(x), data[i*16:i*16+17]) + for ch in d: + res += "%02X " % ch + for i in range(0,17-len(d)): + res += " " + res += "| " + for ch in d: + if (ch < 32) or (ch > 127): + res += ". " + else: + res += "%c " % ch + res += "\n" + return res + +def printReturnMsg(qstate): + print "Return MSG rep :: flags: %04X, QDcount: %d, Security:%d, TTL=%d" % (qstate.return_msg.rep.flags, qstate.return_msg.rep.qdcount,qstate.return_msg.rep.security, qstate.return_msg.rep.ttl) + print " qinfo :: qname:",qstate.return_msg.qinfo.qname_list, qstate.return_msg.qinfo.qname_str, "type:",qstate.return_msg.qinfo.qtype_str, "class:",qstate.return_msg.qinfo.qclass_str + if (qstate.return_msg.rep): + print "RRSets:",qstate.return_msg.rep.rrset_count + prevkey = None + for i in range(0,qstate.return_msg.rep.rrset_count): + r = qstate.return_msg.rep.rrsets[i] + rk = r.rk + print i,":",rk.dname_list, rk.dname_str, "flags: %04X" % rk.flags, + print "type:",rk.type_str,"(%d)" % ntohs(rk.type), "class:",rk.rrset_class_str,"(%d)" % ntohs(rk.rrset_class) + + d = r.entry.data + print " RRDatas:",d.count+d.rrsig_count + for j in range(0,d.count+d.rrsig_count): + print " ",j,":","TTL=",d.rr_ttl[j],"RR data:" + print dataHex(d.rr_data[j]," ") + + +def operate(id, event, qstate, qdata): + log_info("pythonmod: operate called, id: %d, event:%s" % (id, strmodulevent(event))) + #print "pythonmod: per query data", qdata + + print "Query:", ''.join(map(lambda x:chr(max(32,ord(x))),qstate.qinfo.qname)), qstate.qinfo.qname_list, qstate.qinfo.qname_str, + print "Type:",qstate.qinfo.qtype_str,"(%d)" % qstate.qinfo.qtype, + print "Class:",qstate.qinfo.qclass_str,"(%d)" % qstate.qinfo.qclass + print + + if (event == MODULE_EVENT_NEW or event == MODULE_EVENT_PASS) and (qstate.qinfo.qname_str.endswith("example.com.")): + print qstate.qinfo.qname_str + + qstate.ext_state[id] = MODULE_FINISHED + + # eat time + y = 20 + for z in range(2, 10000): + y = y*2 - z/2 + y = y/2 + z + + msg = DNSMessage(qstate.qinfo.qname_str, RR_TYPE_A, RR_CLASS_IN, PKT_QR | PKT_RA | PKT_AA) #, 300) + #msg.authority.append("xxx.seznam.cz. 10 IN A 192.168.1.1") + #msg.additional.append("yyy.seznam.cz. 10 IN A 1.1.1.2.") + + # answer can be returned to the client without further checking. + + if qstate.qinfo.qtype == RR_TYPE_A: + msg.answer.append("%s 10 IN A 192.168.1.1" % qstate.qinfo.qname_str) + if (qstate.qinfo.qtype == RR_TYPE_SRV) or (qstate.qinfo.qtype == RR_TYPE_ANY): + msg.answer.append("%s 10 IN SRV 0 0 80 neinfo.example.com." % qstate.qinfo.qname_str) + if (qstate.qinfo.qtype == RR_TYPE_TXT) or (qstate.qinfo.qtype == RR_TYPE_ANY): + msg.answer.append("%s 10 IN TXT path=/" % qstate.qinfo.qname_str) + + if not msg.set_return_msg(qstate): + qstate.ext_state[id] = MODULE_ERROR + return True + + #qstate.return_msg.rep.security = 2 #pokud nebude nasledovat validator, je zapotrebi nastavit security, aby nebyl paket zahozen v mesh_send_reply + printReturnMsg(qstate) + + #Authoritative result can't be stored in cache + #if (not storeQueryInCache(qstate, qstate.return_msg.qinfo, qstate.return_msg.rep, 0)): + # print "Can't store in cache" + # qstate.ext_state[id] = MODULE_ERROR + # return False + #print "Store OK" + + qstate.return_rcode = RCODE_NOERROR + return True + + if event == MODULE_EVENT_NEW: + qstate.ext_state[id] = MODULE_WAIT_MODULE + return True + + if event == MODULE_EVENT_MODDONE: + log_info("pythonmod: previous module done") + qstate.ext_state[id] = MODULE_FINISHED + return True + + if event == MODULE_EVENT_PASS: + log_info("pythonmod: event_pass") + qstate.ext_state[id] = MODULE_WAIT_MODULE + return True + + log_err("pythonmod: BAD event") + qstate.ext_state[id] = MODULE_ERROR + return True + +log_info("pythonmod: script loaded.") diff --git a/testdata/pymod_thread.tdir/pymod_thread.test b/testdata/pymod_thread.tdir/pymod_thread.test new file mode 100644 index 000000000000..c6baa01be842 --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.test @@ -0,0 +1,67 @@ +# #-- pymod_thread.test --# +# source the master var file when it's there +[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master +# use .tpkg.var.test for in test variable passing +[ -f .tpkg.var.test ] && source .tpkg.var.test + +PRE="../.." +if grep "define WITH_PYTHONMODULE 1" $PRE/config.h; then + echo "have python module" +else + echo "no python module" + exit 0 +fi + +if test "`uname 2>&1`" = "Darwin"; then + ldnsdir=`grep ldnsdir= ../../Makefile | sed -e 's/ldnsdir=//'` + echo export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$ldnsdir/lib:../../.libs" + export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$ldnsdir/lib:../../.libs" +fi + +# see if config file verifies +if $PRE/unbound-checkconf ub.conf; then + echo "checkconf OK" +else + echo "checkconf failed" + exit 1 +fi + +# do the test +# generate some load. +echo "> dig www[1-10].example.com." +dig @localhost -p $UNBOUND_PORT www.example.com. | tee outfile1 & +dig @localhost -p $UNBOUND_PORT www2.example.com. | tee outfile3 & +dig @localhost -p $UNBOUND_PORT www3.example.com. | tee outfile2 & +dig @localhost -p $UNBOUND_PORT www4.example.com. | tee outfile4 & +dig @localhost -p $UNBOUND_PORT www5.example.com. | tee outfile5 & +dig @localhost -p $UNBOUND_PORT www6.example.com. | tee outfile6 & +dig @localhost -p $UNBOUND_PORT www7.example.com. | tee outfile7 & +dig @localhost -p $UNBOUND_PORT www8.example.com. | tee outfile8 & +dig @localhost -p $UNBOUND_PORT www9.example.com. | tee outfile9 & +dig @localhost -p $UNBOUND_PORT www10.example.com. | tee outfile10 & + +wait # wait for all jobs to complete. + +echo "> cat logfiles" +cat fwd.log +cat unbound.log +echo "> check answer" +for x in outfile1 outfile2 outfile3 outfile4 outfile5; do +if grep "192.168.1.1" $x; then + echo "$x OK" +else + echo "$x Not OK" + exit 1 +fi +done + +for x in outfile6 outfile7 outfile8 outfile9 outfile10; do +if grep "192.168.1.1" $x; then + echo "$x OK" +else + echo "$x Not OK" + exit 1 +fi +done + +exit 0 diff --git a/testdata/pymod_thread.tdir/pymod_thread.testns b/testdata/pymod_thread.tdir/pymod_thread.testns new file mode 100644 index 000000000000..55926bb50c9f --- /dev/null +++ b/testdata/pymod_thread.tdir/pymod_thread.testns @@ -0,0 +1,24 @@ +; nameserver test file +$ORIGIN example.com. +$TTL 3600 + +ENTRY_BEGIN +MATCH opcode qtype qname +REPLY QR AA NOERROR +ADJUST copy_id +SECTION QUESTION +www IN A +SECTION ANSWER +www IN A 10.20.30.40 +ENTRY_END + +ENTRY_BEGIN +MATCH opcode qtype qname +REPLY QR AA NOERROR +ADJUST copy_id +SECTION QUESTION +www2 IN A +SECTION ANSWER +www2 IN A 10.20.30.40 +ENTRY_END + |