1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/app/dns/nameserver_local_test.go

27 lines
589 B
Go
Raw Normal View History

2018-06-26 13:16:45 +00:00
package dns_test
import (
"context"
"testing"
"time"
2021-02-16 20:31:50 +00:00
. "github.com/v2fly/v2ray-core/v4/app/dns"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/features/dns"
2018-06-26 13:16:45 +00:00
)
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)
2018-06-26 13:16:45 +00:00
cancel()
2018-11-15 10:17:20 +00:00
common.Must(err)
if len(ips) == 0 {
t.Error("expect some ips, but got 0")
}
2018-06-26 13:16:45 +00:00
}