1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/app/dns/nameserver_test.go

22 lines
390 B
Go
Raw Normal View History

2018-06-26 13:16:45 +00:00
package dns_test
import (
"context"
"testing"
"time"
. "v2ray.com/core/app/dns"
2018-11-15 10:17:20 +00:00
"v2ray.com/core/common"
2018-06-26 13:16:45 +00:00
)
func TestLocalNameServer(t *testing.T) {
s := NewLocalNameServer()
ctx, cancel := context.WithTimeout(context.Background(), time.Second*2)
ips, err := s.QueryIP(ctx, "google.com")
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
}