2018-06-26 09:16:45 -04:00
|
|
|
package dns_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
. "github.com/v2fly/v2ray-core/v4/app/dns"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
2021-02-22 21:17:20 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/features/dns"
|
2018-06-26 09:16:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocalNameServer(t *testing.T) {
|
|
|
|
s := NewLocalNameServer()
|
2021-03-20 07:27:09 -04:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
2021-02-22 21:17:20 -05:00
|
|
|
ips, err := s.QueryIP(ctx, "google.com", net.IP{}, dns.IPOption{
|
2018-11-19 14:42:02 -05:00
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: true,
|
2021-02-24 03:03:50 -05:00
|
|
|
}, false)
|
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
|
|
|
}
|