mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #934] Create a test mod for trust-dns-proto #570
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#570
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 @chunyingw on GitHub (Dec 1, 2019).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/934
What is the question?
Hey Ben,
Do you have any concern if I create a test mod for trust-dns-proto and move udp and tcp tests into this mod? I would like to abstract some common setup function and make them public. Ex
pub fn udp_stream_test<S: UdpSocket + Send + 'static, E: crate::Executor>(server_addr: IpAddr, mut exec: E). The benefit is that I could run the same tests using different executor on different platforms like Fuchsia w/o copying/pasting the codes.Technically the test mod is not required, but I thought it is cleaner to put them into a separate mod. The PR will be based on the current
update to tokio 0.2 release #932. What's your opinion?A headsup, I will create a PR which makes trust-dns-resolver generic for tcp and udp flow soon, so that this crate will be compatible with Fuchsia. Thanks!
@bluejekyll commented on GitHub (Dec 1, 2019):
This sounds good.
Btw, I’m currently working on a bug cleanup to remove all implicit spawns from the library. #913 was the initial pass, but after some feedback, I’m working on a different iteration with ’background’ exposed to library consumers. You might be interested in that. (Should make porting to different executors easier).