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.
105 lines
2.6 KiB
105 lines
2.6 KiB
package dns_test |
|
|
|
import ( |
|
"context" |
|
"net/url" |
|
"testing" |
|
"time" |
|
|
|
"github.com/google/go-cmp/cmp" |
|
. "github.com/xtls/xray-core/app/dns" |
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/net" |
|
dns_feature "github.com/xtls/xray-core/features/dns" |
|
) |
|
|
|
func TestDOHNameServer(t *testing.T) { |
|
url, err := url.Parse("https+local://1.1.1.1/dns-query") |
|
common.Must(err) |
|
|
|
s := NewDoHLocalNameServer(url, QueryStrategy_USE_IP) |
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) |
|
ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
}, false) |
|
cancel() |
|
common.Must(err) |
|
if len(ips) == 0 { |
|
t.Error("expect some ips, but got 0") |
|
} |
|
} |
|
|
|
func TestDOHNameServerWithCache(t *testing.T) { |
|
url, err := url.Parse("https+local://1.1.1.1/dns-query") |
|
common.Must(err) |
|
|
|
s := NewDoHLocalNameServer(url, QueryStrategy_USE_IP) |
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) |
|
ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
}, false) |
|
cancel() |
|
common.Must(err) |
|
if len(ips) == 0 { |
|
t.Error("expect some ips, but got 0") |
|
} |
|
|
|
ctx2, cancel := context.WithTimeout(context.Background(), time.Second*5) |
|
ips2, err := s.QueryIP(ctx2, "google.com", net.IP(nil), dns_feature.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
}, true) |
|
cancel() |
|
common.Must(err) |
|
if r := cmp.Diff(ips2, ips); r != "" { |
|
t.Fatal(r) |
|
} |
|
} |
|
|
|
func TestDOHNameServerWithIPv4Override(t *testing.T) { |
|
url, err := url.Parse("https+local://1.1.1.1/dns-query") |
|
common.Must(err) |
|
|
|
s := NewDoHLocalNameServer(url, QueryStrategy_USE_IP4) |
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) |
|
ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
}, false) |
|
cancel() |
|
common.Must(err) |
|
if len(ips) == 0 { |
|
t.Error("expect some ips, but got 0") |
|
} |
|
|
|
for _, ip := range ips { |
|
if len(ip) != net.IPv4len { |
|
t.Error("expect only IPv4 response from DNS query") |
|
} |
|
} |
|
} |
|
|
|
func TestDOHNameServerWithIPv6Override(t *testing.T) { |
|
url, err := url.Parse("https+local://1.1.1.1/dns-query") |
|
common.Must(err) |
|
|
|
s := NewDoHLocalNameServer(url, QueryStrategy_USE_IP6) |
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) |
|
ips, err := s.QueryIP(ctx, "google.com", net.IP(nil), dns_feature.IPOption{ |
|
IPv4Enable: true, |
|
IPv6Enable: true, |
|
}, false) |
|
cancel() |
|
common.Must(err) |
|
if len(ips) == 0 { |
|
t.Error("expect some ips, but got 0") |
|
} |
|
|
|
for _, ip := range ips { |
|
if len(ip) != net.IPv6len { |
|
t.Error("expect only IPv6 response from DNS query") |
|
} |
|
} |
|
}
|
|
|