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
| package dns_test
|
| import (
| "context"
| "testing"
| "time"
|
| . "github.com/v2fly/v2ray-core/v5/app/dns"
| "github.com/v2fly/v2ray-core/v5/common"
| "github.com/v2fly/v2ray-core/v5/common/net"
| "github.com/v2fly/v2ray-core/v5/features/dns"
| )
|
| func TestLocalNameServer(t *testing.T) {
| s := NewLocalNameServer()
| ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
| ips, err := s.QueryIP(ctx, "google.com", net.IP{}, dns.IPOption{
| IPv4Enable: true,
| IPv6Enable: true,
| }, false)
| cancel()
| common.Must(err)
| if len(ips) == 0 {
| t.Error("expect some ips, but got 0")
| }
| }
|
|