Skip to content
Snippets Groups Projects
Verified Commit d28b3d17 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

modules/daf: test rewrite module applies to hints

Credit goes to https://github.com/hasnat/knot-resolver-issue-66
parent 3ab9db7b
Branches
Tags
1 merge request!901policy and daf modules: fix reroute rules
programs:
- name: kresd
binary: kresd
additional:
- -f
- "1"
templates:
- modules/daf/test.integr/kresd_config.j2
- tests/integration/hints_zone.j2
configs:
- config
- hints
{% raw %}
-- make sure DNSSEC is turned off for tests
trust_anchors.remove('.')
-- Disable RFC5011 TA update
if ta_update then
modules.unload('ta_update')
end
-- Disable RFC8145 signaling, scenario doesn't provide expected answers
if ta_signal_query then
modules.unload('ta_signal_query')
end
-- Disable RFC8109 priming, scenario doesn't provide expected answers
if priming then
modules.unload('priming')
end
-- Disable this module because it make one priming query
if detect_time_skew then
modules.unload('detect_time_skew')
end
modules.load('hints > iterate')
modules.load('daf')
hints['hints.net.'] = '192.0.2.1'
daf.add('src = 127.0.0.0/8 reroute 192.0.2.1-192.0.2.101')
policy.add(policy.suffix(policy.PASS, {todname('test.')}))
_hint_root_file('hints')
cache.size = 2*MB
verbose(true)
{% endraw %}
net = { '{{SELF_ADDR}}' }
{% if QMIN == "false" %}
option('NO_MINIMIZE', true)
{% else %}
option('NO_MINIMIZE', false)
{% endif %}
-- Self-checks on globals
assert(help() ~= nil)
assert(worker.id ~= nil)
-- Self-checks on facilities
assert(cache.count() == 0)
assert(cache.stats() ~= nil)
assert(cache.backends() ~= nil)
assert(worker.stats() ~= nil)
assert(net.interfaces() ~= nil)
-- Self-checks on loaded stuff
assert(net.list()[1].transport.ip == '{{SELF_ADDR}}')
assert(#modules.list() > 0)
-- Self-check timers
ev = event.recurrent(1 * sec, function (ev) return 1 end)
event.cancel(ev)
ev = event.after(0, function (ev) return 1 end)
; config options
; target-fetch-policy: "0 0 0 0 0"
; module-config: "iterator"
; name: "."
stub-addr: 193.0.14.129 # K.ROOT-SERVERS.NET.
CONFIG_END
SCENARIO_BEGIN Test DNS Application Firewall
STEP 11 QUERY
ENTRY_BEGIN
REPLY RD
SECTION QUESTION
hints.net. IN A
ENTRY_END
; test rewrite rule applies to hints
STEP 12 CHECK_ANSWER
ENTRY_BEGIN
MATCH all
REPLY QR RD RA NOERROR
SECTION QUESTION
hints.net. IN A
SECTION ANSWER
hints.net. IN A 192.0.2.101
ENTRY_END
SCENARIO_END
......@@ -30,6 +30,7 @@ config_tests += [
integr_tests += [
['bogus_log', join_paths(meson.current_source_dir(), 'bogus_log', 'test.integr')],
['daf', join_paths(meson.current_source_dir(), 'daf', 'test.integr')],
['rebinding', join_paths(meson.current_source_dir(), 'rebinding', 'test.integr')],
['serve_stale', join_paths(meson.current_source_dir(), 'serve_stale', 'test.integr')],
# NOTE: ta_update may pass in cases when it should fail due to race conditions
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment