-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparser_test.go
208 lines (184 loc) · 3.5 KB
/
parser_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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package resolvermt
import (
"net"
"testing"
"github.com/miekg/dns"
"github.com/stretchr/testify/assert"
)
func stubRR() map[string]dns.RR {
records := make(map[string]dns.RR)
A := &dns.A{}
A.Hdr.Rrtype = dns.TypeA
A.A = net.ParseIP("127.0.0.1")
records["A"] = A
AAAA := &dns.AAAA{}
AAAA.Hdr.Rrtype = dns.TypeAAAA
AAAA.AAAA = net.ParseIP("::1")
records["AAAA"] = AAAA
CNAME := &dns.CNAME{}
CNAME.Hdr.Rrtype = dns.TypeCNAME
CNAME.Target = "foo.bar."
records["CNAME"] = CNAME
TXT := &dns.TXT{}
TXT.Hdr.Rrtype = dns.TypeCNAME
TXT.Txt = []string{"foo", "bar"}
records["TXT"] = TXT
MX := &dns.MX{}
MX.Hdr.Rrtype = dns.TypeMX
MX.Mx = "mx.foo.bar."
records["MX"] = MX
NS := &dns.NS{}
NS.Hdr.Rrtype = dns.TypeNS
NS.Ns = "ns.foo.bar."
records["NS"] = NS
return records
}
func stubRecords() map[string]Record {
records := make(map[string]Record)
A := Record{}
A.Type = TypeA
A.Answer = "127.0.0.1"
records["A"] = A
AAAA := Record{}
AAAA.Type = TypeAAAA
AAAA.Answer = "::1"
records["AAAA"] = AAAA
CNAME := Record{}
CNAME.Type = TypeCNAME
CNAME.Answer = "foo.bar"
records["CNAME"] = CNAME
TXT1 := Record{}
TXT1.Type = TypeTXT
TXT1.Answer = "foo"
records["TXT1"] = TXT1
TXT2 := Record{}
TXT2.Type = TypeTXT
TXT2.Answer = "bar"
records["TXT2"] = TXT2
MX := Record{}
MX.Type = TypeMX
MX.Answer = "mx.foo.bar"
records["MX"] = MX
NS := Record{}
NS.Type = TypeNS
NS.Answer = "ns.foo.bar"
records["NS"] = NS
return records
}
func TestParse(t *testing.T) {
RR := stubRR()
records := stubRecords()
testTable := []struct {
name string
haveQuery string
haveAnswer *dns.Msg
want []Record
}{
{
name: "Two Records",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{
{Name: "foo.bar."},
},
Answer: []dns.RR{
RR["A"],
RR["CNAME"],
},
},
want: []Record{
records["A"],
records["CNAME"],
},
},
{
name: "AAAA",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{
{Name: "foo.bar."},
},
Answer: []dns.RR{
RR["AAAA"],
},
},
want: []Record{
records["AAAA"],
},
},
{
name: "TXT",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{
{Name: "foo.bar."},
},
Answer: []dns.RR{
RR["TXT"]}},
want: []Record{
records["TXT1"],
records["TXT2"],
},
},
{
name: "MX",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{
{Name: "foo.bar."},
},
Answer: []dns.RR{
RR["MX"],
},
},
want: []Record{
records["MX"],
},
},
{
name: "NS",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{
{Name: "foo.bar."},
},
Answer: []dns.RR{
RR["NS"],
},
},
want: []Record{
records["NS"],
},
},
{
name: "Empty Answer",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{},
Answer: []dns.RR{},
},
want: []Record{},
},
{
name: "Empty Question",
haveQuery: "foo.bar",
haveAnswer: &dns.Msg{
Question: []dns.Question{},
Answer: []dns.RR{
RR["A"],
},
},
want: []Record{},
},
}
for _, test := range testTable {
t.Run(test.name, func(t *testing.T) {
for i := range test.want {
test.want[i].Question = test.haveQuery
}
msgParser := msgParser{}
records := msgParser.Parse(test.haveAnswer)
assert.EqualValues(t, test.want, records, test.name)
})
}
}