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)
|
2018-11-19 19:42:02 +00:00
|
|
|
ips, err := s.QueryIP(ctx, "google.com", IPOption{
|
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: true,
|
|
|
|
})
|
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
|
|
|
}
|