| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package dns_test
- import (
- "testing"
- "github.com/google/go-cmp/cmp"
- . "v2ray.com/core/app/dns"
- "v2ray.com/core/common"
- "v2ray.com/core/common/net"
- )
- func TestStaticHosts(t *testing.T) {
- pb := []*Config_HostMapping{
- {
- Type: DomainMatchingType_Full,
- Domain: "v2ray.com",
- Ip: [][]byte{
- {1, 1, 1, 1},
- },
- },
- {
- Type: DomainMatchingType_Subdomain,
- Domain: "v2ray.cn",
- Ip: [][]byte{
- {2, 2, 2, 2},
- },
- },
- {
- Type: DomainMatchingType_Subdomain,
- Domain: "baidu.com",
- Ip: [][]byte{
- {127, 0, 0, 1},
- },
- },
- }
- hosts, err := NewStaticHosts(pb, nil)
- common.Must(err)
- {
- ips := hosts.Lookup("v2ray.com", IPOption{
- IPv4Enable: true,
- IPv6Enable: true,
- })
- if len(ips) != 1 {
- t.Error("expect 1 IP, but got ", len(ips))
- }
- if diff := cmp.Diff([]byte(ips[0].IP()), []byte{1, 1, 1, 1}); diff != "" {
- t.Error(diff)
- }
- }
- {
- ips := hosts.Lookup("www.v2ray.cn", IPOption{
- IPv4Enable: true,
- IPv6Enable: true,
- })
- if len(ips) != 1 {
- t.Error("expect 1 IP, but got ", len(ips))
- }
- if diff := cmp.Diff([]byte(ips[0].IP()), []byte{2, 2, 2, 2}); diff != "" {
- t.Error(diff)
- }
- }
- {
- ips := hosts.Lookup("baidu.com", IPOption{
- IPv4Enable: false,
- IPv6Enable: true,
- })
- if len(ips) != 1 {
- t.Error("expect 1 IP, but got ", len(ips))
- }
- if diff := cmp.Diff([]byte(ips[0].IP()), []byte(net.LocalHostIPv6.IP())); diff != "" {
- t.Error(diff)
- }
- }
- }
|