mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
590 B
27 lines
590 B
package dns_test |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
"time" |
|
|
|
. "github.com/xtls/xray-core/app/dns" |
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/features/dns" |
|
) |
|
|
|
func TestLocalNameServer(t *testing.T) { |
|
s := NewLocalNameServer() |
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*2) |
|
ips, err := s.QueryIP(ctx, "google.com", net.IP{}, dns.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
FakeEnable: false, |
|
}, false) |
|
cancel() |
|
common.Must(err) |
|
if len(ips) == 0 { |
|
t.Error("expect some ips, but got 0") |
|
} |
|
}
|
|
|