1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/app/dns/nameserver_test.go

25 lines
444 B
Go
Raw Normal View History

2018-06-26 09:16:45 -04:00
package dns_test
import (
"context"
"testing"
"time"
. "v2ray.com/core/app/dns"
2018-11-15 05:17:20 -05:00
"v2ray.com/core/common"
2018-06-26 09:16:45 -04:00
)
func TestLocalNameServer(t *testing.T) {
s := NewLocalNameServer()
ctx, cancel := context.WithTimeout(context.Background(), time.Second*2)
ips, err := s.QueryIP(ctx, "google.com", IPOption{
IPv4Enable: true,
IPv6Enable: true,
})
2018-06-26 09:16:45 -04:00
cancel()
2018-11-15 05:17:20 -05:00
common.Must(err)
if len(ips) == 0 {
t.Error("expect some ips, but got 0")
}
2018-06-26 09:16:45 -04:00
}