1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
| package dns_test
|
| import (
| "context"
| "net/url"
| "testing"
| "time"
|
| "github.com/google/go-cmp/cmp"
|
| . "github.com/v2fly/v2ray-core/v5/app/dns"
| "github.com/v2fly/v2ray-core/v5/common"
| "github.com/v2fly/v2ray-core/v5/common/net"
| dns_feature "github.com/v2fly/v2ray-core/v5/features/dns"
| )
|
| func TestQUICNameServer(t *testing.T) {
| url, err := url.Parse("quic://dns.adguard.com")
| common.Must(err)
| s, err := NewQUICNameServer(url)
| common.Must(err)
| ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
| ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{
| IPv4Enable: true,
| IPv6Enable: true,
| }, false)
| cancel()
| common.Must(err)
| if len(ips) == 0 {
| t.Error("expect some ips, but got 0")
| }
| }
|
| func TestQUICNameServerWithCache(t *testing.T) {
| url, err := url.Parse("quic://dns.adguard.com")
| common.Must(err)
| s, err := NewQUICNameServer(url)
| common.Must(err)
| ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
| ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{
| IPv4Enable: true,
| IPv6Enable: true,
| }, false)
| cancel()
| common.Must(err)
| if len(ips) == 0 {
| t.Error("expect some ips, but got 0")
| }
|
| ctx2, cancel := context.WithTimeout(context.Background(), time.Second*5)
| ips2, err := s.QueryIP(ctx2, "google.com", net.IP(nil), dns_feature.IPOption{
| IPv4Enable: true,
| IPv6Enable: true,
| }, true)
| cancel()
| common.Must(err)
| if r := cmp.Diff(ips2, ips); r != "" {
| t.Fatal(r)
| }
| }
|
|