Skip to content
Snippets Groups Projects
Verified Commit 8d932aaa authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

cache.clear() tests: add cache.clear('.', true)

parent f9da393f
No related branches found
No related tags found
1 merge request!633lua: resurrect cache.clear('name')
Pipeline #39368 failed
......@@ -173,6 +173,14 @@ local function test_apex()
end
local function test_root()
check_answer('root apex is still in cache',
'.', kres.type.NS, kres.rcode.NOERROR)
res = cache.clear('.', true)
check_answer('root apex is in no longer cache',
'.', kres.type.NS, kres.rcode.SERVFAIL)
check_answer('some other item is still in cache',
'16r.subtree2.', kres.type.A, kres.rcode.NOERROR)
local prev_count = cache.count()
res = cache.clear('.')
is(res.count, prev_count, 'full clear reports correct number of entries')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment