forked from katakonst/go-dns-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdns_proxy_test.go
189 lines (163 loc) · 3.63 KB
/
dns_proxy_test.go
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
185
186
187
188
189
package main
import (
"strings"
"testing"
"github.com/miekg/dns"
"github.com/stretchr/testify/assert"
)
type DnsCalls struct {
calls []struct {
m *dns.Msg
server string
}
}
func (c *DnsCalls) Exchange(m *dns.Msg, server string) (r *dns.Msg, err error) {
c.calls = append(c.calls, struct {
m *dns.Msg
server string
}{m: m, server: server})
return &dns.Msg{Answer: []dns.RR{&dns.A{}}}, nil
}
func query(host string) *dns.Msg {
if !strings.HasSuffix(host, ".") {
host += "."
}
return &dns.Msg{
MsgHdr: dns.MsgHdr{
Opcode: dns.OpcodeQuery,
Rcode: dns.RcodeSuccess,
RecursionDesired: true,
AuthenticatedData: true,
},
Question: []dns.Question{
dns.Question{
Name: host,
Qtype: dns.TypeA,
Qclass: dns.ClassINET,
},
},
}
}
func TestGetResponse_DNSResolve(t *testing.T) {
//arrange
proxy := DnsProxy{defaultServer: "8.8.8.8:53"}
msg := query("google.com")
//act
r, err := proxy.getResponse(msg)
//assert
assert.Nil(t, err)
if assert.Len(t, r.Answer, 1) {
assert.IsType(t, &dns.A{}, r.Answer[0])
}
}
func TestGetResponse_LocalResolve(t *testing.T) {
//arrange
mock := &DnsCalls{}
host := "test.com"
resolution := "1.2.3.4"
proxy := DnsProxy{DnsApi: mock, domains: HostMap{host: resolution}.ShouldCompile()}
msg := query(host)
//act
r, err := proxy.getResponse(msg)
//assert
assert.Nil(t, err)
assert.Empty(t, mock.calls, "calls: %+v", mock.calls)
if assert.Len(t, r.Answer, 1) {
assert.IsType(t, &dns.A{}, r.Answer[0])
assert.Equal(t, resolution, r.Answer[0].(*dns.A).A.String(), "answers: %+v", r.Answer)
}
}
func TestGetResponse_RerouteRequest(t *testing.T) {
//arrange
mock := &DnsCalls{}
host := "test.com"
server := "5.6.7.8"
proxy := DnsProxy{
DnsApi: mock,
servers: HostMap{host: server}.ShouldCompile(),
}
msg := query(host)
//act
proxy.getResponse(msg)
//assert
if assert.Len(t, mock.calls, 1) {
assert.Equal(t, server, mock.calls[0].server)
}
}
func TestGetResponse_GlobCheck(t *testing.T) {
//arrange
mock := &DnsCalls{}
resolution := "1.2.3.4"
proxy := DnsProxy{
DnsApi: mock,
domains: HostMap{
"**.com": resolution,
"**.net": "5.6.7.8",
}.ShouldCompile(),
}
msg := query("yo.test.com")
//act
r, _ := proxy.getResponse(msg)
//assert
if assert.Len(t, r.Answer, 1, "answers: %+v", r.Answer) {
assert.Equal(t, resolution, r.Answer[0].(*dns.A).A.String())
}
}
func TestGetResponse_Redirect(t *testing.T) {
//arrange
mock := &DnsCalls{}
resolution := "1.2.3.4"
proxy := DnsProxy{
DnsApi: mock,
domains: HostMap{
"a.com": "b.net",
"b.net": resolution,
}.ShouldCompile(),
}
msg := query("a.com")
//act
r, err := proxy.getResponse(msg)
//assert
assert.Nil(t, err)
if assert.Len(t, r.Answer, 1, "answers: %+v", r.Answer) {
assert.Equal(t, resolution, r.Answer[0].(*dns.A).A.String())
}
}
func TestGetResponse_RedirectStopRecursion(t *testing.T) {
//arrange
mock := &DnsCalls{}
proxy := DnsProxy{
DnsApi: mock,
domains: HostMap{
"a.com": "b.net",
"b.net": "a.com",
}.ShouldCompile(),
}
msg := query("a.com")
//act
_, err := proxy.getResponse(msg)
//assert
assert.EqualError(t, err, ErrNotFound.Error())
}
func TestGetResponse_Vars(t *testing.T) {
//arrange
resolution := "1.2.3.4"
mock := &DnsCalls{}
proxy := DnsProxy{
DnsApi: mock,
domains: HostMap{
"a.com": "var1",
}.ShouldCompile(),
vars: HostMap{
"var1": resolution,
}.ShouldCompile(),
}
msg := query("a.com")
//act
r, err := proxy.getResponse(msg)
//assert
assert.Nil(t, err)
if assert.Len(t, r.Answer, 1, "answers: %+v", r.Answer) {
assert.Equal(t, resolution, r.Answer[0].(*dns.A).A.String())
}
}