mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 12:09:19 +02:00
f50eff5ebb
Co-authored-by: Xiaokang Wang <xiaokangwang@outlook.com> Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com> Co-authored-by: kslr <kslrwang@gmail.com>
27 lines
553 B
Go
27 lines
553 B
Go
package dns_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
. "github.com/xtls/xray-core/app/dns"
|
|
"github.com/xtls/xray-core/common"
|
|
dns_feature "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", dns_feature.IPOption{
|
|
IPv4Enable: true,
|
|
IPv6Enable: true,
|
|
FakeEnable: false,
|
|
})
|
|
cancel()
|
|
common.Must(err)
|
|
if len(ips) == 0 {
|
|
t.Error("expect some ips, but got 0")
|
|
}
|
|
}
|