mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-24 18:55:55 +03:00
[GH-ISSUE #219] Run deckard test suite #100
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#100
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @briansmith on GitHub (Oct 2, 2017).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/219
deckard is basically a set of scripted tests for DNS implementations, designed to be portable across implementations. If TRust-DNS implements an interpreter for the scripts, then it can reuse these tests. See these links for more info:
@bluejekyll commented on GitHub (Oct 2, 2017):
This would be great. The
compatibilitycrate/library in TRust-DNS would be a great place to run that. There are already a couple test harnesses there, I've intended to beef it up over time.@balaziks commented on GitHub (Oct 9, 2020):
Hi,
one of Deckard's developers here, I stumbled over this issue by chance. :)
There is no need to write interpreter for those files (and I wouldn't recommend it because the RPL format is quite gory to parse). You could just write a config file to run Trust-DNS in Deckard (I can assist with that). Unless you want to write a Rust implementation of Deckard for the sake of it being written in Rust, which might be interesting as well…
Note that the test suite is very resolver-centric nowadays and there is not much development in regards to authoritative server scenarios. Also note that it's quite hard to write a resolver-agnostic scenario because different implementations take different routes through the DNS tree.
Anyways, I am open to help you with anything Deckard-related.
@bluejekyll commented on GitHub (Oct 9, 2020):
@balaziks, Thanks for reaching out! We definitely might be interested.
We have a lot of test coverage in the libraries, but not a lot of tests to evaluate the software against standard DNS software. I'm not sure when I or someone else will have time for that, but your suggestion for an approach is very much appreciated.