1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
| package dns
|
| import (
| "math/rand"
| "testing"
| "time"
|
| "github.com/google/go-cmp/cmp"
| "github.com/miekg/dns"
| "golang.org/x/net/dns/dnsmessage"
|
| "github.com/v2fly/v2ray-core/v5/common"
| "github.com/v2fly/v2ray-core/v5/common/net"
| dns_feature "github.com/v2fly/v2ray-core/v5/features/dns"
| )
|
| func Test_parseResponse(t *testing.T) {
| var p [][]byte
|
| ans := new(dns.Msg)
| ans.Id = 0
| p = append(p, common.Must2(ans.Pack()).([]byte))
|
| p = append(p, []byte{})
|
| ans = new(dns.Msg)
| ans.Id = 1
| ans.Answer = append(ans.Answer,
| common.Must2(dns.NewRR("google.com. IN CNAME m.test.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN CNAME fake.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN A 8.8.8.8")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN A 8.8.4.4")).(dns.RR),
| )
| p = append(p, common.Must2(ans.Pack()).([]byte))
|
| ans = new(dns.Msg)
| ans.Id = 2
| ans.Answer = append(ans.Answer,
| common.Must2(dns.NewRR("google.com. IN CNAME m.test.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN CNAME fake.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN CNAME m.test.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN CNAME test.google.com")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN AAAA 2001::123:8888")).(dns.RR),
| common.Must2(dns.NewRR("google.com. IN AAAA 2001::123:8844")).(dns.RR),
| )
| p = append(p, common.Must2(ans.Pack()).([]byte))
|
| tests := []struct {
| name string
| want *IPRecord
| wantErr bool
| }{
| {
| "empty",
| &IPRecord{0, []net.Address(nil), time.Time{}, dnsmessage.RCodeSuccess},
| false,
| },
| {
| "error",
| nil,
| true,
| },
| {
| "a record",
| &IPRecord{
| 1,
| []net.Address{net.ParseAddress("8.8.8.8"), net.ParseAddress("8.8.4.4")},
| time.Time{},
| dnsmessage.RCodeSuccess,
| },
| false,
| },
| {
| "aaaa record",
| &IPRecord{2, []net.Address{net.ParseAddress("2001::123:8888"), net.ParseAddress("2001::123:8844")}, time.Time{}, dnsmessage.RCodeSuccess},
| false,
| },
| }
| for i, tt := range tests {
| t.Run(tt.name, func(t *testing.T) {
| got, err := parseResponse(p[i])
| if (err != nil) != tt.wantErr {
| t.Errorf("handleResponse() error = %v, wantErr %v", err, tt.wantErr)
| return
| }
|
| if got != nil {
| // reset the time
| got.Expire = time.Time{}
| }
| if cmp.Diff(got, tt.want) != "" {
| t.Errorf(cmp.Diff(got, tt.want))
| // t.Errorf("handleResponse() = %#v, want %#v", got, tt.want)
| }
| })
| }
| }
|
| func Test_buildReqMsgs(t *testing.T) {
| stubID := func() uint16 {
| return uint16(rand.Uint32())
| }
| type args struct {
| domain string
| option dns_feature.IPOption
| reqOpts *dnsmessage.Resource
| }
| tests := []struct {
| name string
| args args
| want int
| }{
| {"dual stack", args{"test.com", dns_feature.IPOption{
| IPv4Enable: true,
| IPv6Enable: true,
| FakeEnable: false,
| }, nil}, 2},
| {"ipv4 only", args{"test.com", dns_feature.IPOption{
| IPv4Enable: true,
| IPv6Enable: false,
| FakeEnable: false,
| }, nil}, 1},
| {"ipv6 only", args{"test.com", dns_feature.IPOption{
| IPv4Enable: false,
| IPv6Enable: true,
| FakeEnable: false,
| }, nil}, 1},
| {"none/error", args{"test.com", dns_feature.IPOption{
| IPv4Enable: false,
| IPv6Enable: false,
| FakeEnable: false,
| }, nil}, 0},
| }
| for _, tt := range tests {
| t.Run(tt.name, func(t *testing.T) {
| if got := buildReqMsgs(tt.args.domain, tt.args.option, stubID, tt.args.reqOpts); !(len(got) == tt.want) {
| t.Errorf("buildReqMsgs() = %v, want %v", got, tt.want)
| }
| })
| }
| }
|
| func Test_genEDNS0Options(t *testing.T) {
| type args struct {
| clientIP net.IP
| }
| tests := []struct {
| name string
| args args
| want *dnsmessage.Resource
| }{
| // TODO: Add test cases.
| {"ipv4", args{net.ParseIP("4.3.2.1")}, nil},
| {"ipv6", args{net.ParseIP("2001::4321")}, nil},
| }
| for _, tt := range tests {
| t.Run(tt.name, func(t *testing.T) {
| if got := genEDNS0Options(tt.args.clientIP); got == nil {
| t.Errorf("genEDNS0Options() = %v, want %v", got, tt.want)
| }
| })
| }
| }
|
| func TestFqdn(t *testing.T) {
| type args struct {
| domain string
| }
| tests := []struct {
| name string
| args args
| want string
| }{
| {"with fqdn", args{"www.v2fly.org."}, "www.v2fly.org."},
| {"without fqdn", args{"www.v2fly.org"}, "www.v2fly.org."},
| }
| for _, tt := range tests {
| t.Run(tt.name, func(t *testing.T) {
| if got := Fqdn(tt.args.domain); got != tt.want {
| t.Errorf("Fqdn() = %v, want %v", got, tt.want)
| }
| })
| }
| }
|
|