mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 00:00:51 -05:00
Not cached test.
git-svn-id: file:///svn/unbound/trunk@198 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
157defb03f
commit
46aeacc723
2 changed files with 78 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
27 March 2007: Wouter
|
||||||
|
- added test for cache and not cached answers, in testbound replays.
|
||||||
|
|
||||||
26 March 2007: Wouter
|
26 March 2007: Wouter
|
||||||
- config settings for slab hash message cache.
|
- config settings for slab hash message cache.
|
||||||
- test for cached answer.
|
- test for cached answer.
|
||||||
|
|
|
||||||
75
testdata/fwd_notcached.rpl
vendored
Normal file
75
testdata/fwd_notcached.rpl
vendored
Normal file
|
|
@ -0,0 +1,75 @@
|
||||||
|
; This is a comment.
|
||||||
|
|
||||||
|
SCENARIO_BEGIN Query receives answer not from the cache
|
||||||
|
|
||||||
|
STEP 1 QUERY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.com. IN A
|
||||||
|
ENTRY_END
|
||||||
|
; the query is sent to the forwarder - no cache yet.
|
||||||
|
STEP 2 CHECK_OUT_QUERY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH qname qtype opcode
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.com. IN A
|
||||||
|
ENTRY_END
|
||||||
|
STEP 3 REPLY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH opcode qtype qname
|
||||||
|
ADJUST copy_id
|
||||||
|
REPLY QR RD RA NOERROR
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.com. IN A
|
||||||
|
SECTION ANSWER
|
||||||
|
www.example.com. IN A 10.20.30.40
|
||||||
|
SECTION AUTHORITY
|
||||||
|
www.example.com. IN NS ns.example.com.
|
||||||
|
SECTION ADDITIONAL
|
||||||
|
ns.example.com. IN A 10.20.30.50
|
||||||
|
ENTRY_END
|
||||||
|
STEP 4 CHECK_ANSWER
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH opcode qname qtype
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.com. IN A
|
||||||
|
SECTION ANSWER
|
||||||
|
www.example.com. IN A 10.20.30.40
|
||||||
|
ENTRY_END
|
||||||
|
|
||||||
|
; another query, different, so not from cache.
|
||||||
|
STEP 5 QUERY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.net. IN A
|
||||||
|
ENTRY_END
|
||||||
|
STEP 6 CHECK_OUT_QUERY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH qname qtype opcode
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.net. IN A
|
||||||
|
ENTRY_END
|
||||||
|
STEP 7 REPLY
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH opcode qtype qname
|
||||||
|
ADJUST copy_id
|
||||||
|
REPLY QR RD RA NOERROR
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.net. IN A
|
||||||
|
SECTION ANSWER
|
||||||
|
www.example.net. IN A 10.20.30.60
|
||||||
|
SECTION AUTHORITY
|
||||||
|
www.example.net. IN NS ns.example.net.
|
||||||
|
SECTION ADDITIONAL
|
||||||
|
ns.example.net. IN A 10.20.30.50
|
||||||
|
ENTRY_END
|
||||||
|
STEP 8 CHECK_ANSWER
|
||||||
|
ENTRY_BEGIN
|
||||||
|
MATCH opcode qname qtype
|
||||||
|
SECTION QUESTION
|
||||||
|
www.example.net. IN A
|
||||||
|
SECTION ANSWER
|
||||||
|
www.example.net. IN A 10.20.30.60
|
||||||
|
ENTRY_END
|
||||||
|
|
||||||
|
SCENARIO_END
|
||||||
Loading…
Reference in a new issue