2020-11-25 13:01:53 +02:00
|
|
|
package dns_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
. "github.com/xtls/xray-core/app/dns"
|
|
|
|
"github.com/xtls/xray-core/common"
|
2021-03-07 06:39:50 +02:00
|
|
|
dns_feature "github.com/xtls/xray-core/features/dns"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocalNameServer(t *testing.T) {
|
|
|
|
s := NewLocalNameServer()
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*2)
|
2021-03-07 06:39:50 +02:00
|
|
|
ips, err := s.QueryIP(ctx, "google.com", dns_feature.IPOption{
|
2020-11-25 13:01:53 +02:00
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: true,
|
2021-03-07 06:39:50 +02:00
|
|
|
FakeEnable: false,
|
2020-11-25 13:01:53 +02:00
|
|
|
})
|
|
|
|
cancel()
|
|
|
|
common.Must(err)
|
|
|
|
if len(ips) == 0 {
|
|
|
|
t.Error("expect some ips, but got 0")
|
|
|
|
}
|
|
|
|
}
|