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)
|
2018-11-19 14:42:02 -05:00
|
|
|
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
|
|
|
}
|