-
Notifications
You must be signed in to change notification settings - Fork 62
/
route_test.go
93 lines (88 loc) · 1.74 KB
/
route_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
package rdns
import (
"testing"
"github.com/miekg/dns"
"github.com/stretchr/testify/require"
)
func TestRoute(t *testing.T) {
tests := []struct {
rName string
rType []string
rClass string
rInvert bool
qName string
qType uint16
qClass uint16
match bool
}{
{
rName: "\\.google\\.com$",
qType: dns.TypeA,
qName: "bla.google.com",
match: true,
},
{
rName: "\\.google\\.com$",
qType: dns.TypeA,
qName: "google.com",
match: false,
},
{
rType: []string{"MX"},
rName: "google\\.com$",
qType: dns.TypeA,
qName: "google.com",
match: false,
},
{
rType: []string{"MX", "A"},
rName: "google\\.com$",
qType: dns.TypeA,
qName: "google.com",
match: true,
},
{
rType: []string{"MX"},
rName: "google\\.com$",
qType: dns.TypeMX,
qName: "google.com",
match: true,
},
{
rType: []string{"MX"},
rName: "google\\.com$",
rInvert: true,
qType: dns.TypeMX,
qName: "google.com",
match: false,
},
{
rClass: "INET",
rType: []string{"A"},
rName: "google\\.com$",
qClass: dns.ClassANY,
qType: dns.TypeA,
qName: "google.com",
match: false,
},
{
rClass: "INET",
rType: []string{"A"},
rName: "google\\.com$",
qClass: dns.ClassINET,
qType: dns.TypeA,
qName: "google.com",
match: true,
},
}
for _, test := range tests {
r, err := NewRoute(test.rName, test.rClass, test.rType, nil, "", "", "", "", "", "", &TestResolver{})
require.NoError(t, err)
r.Invert(test.rInvert)
q := new(dns.Msg)
q.Question = make([]dns.Question, 1)
q.Question[0] = dns.Question{Name: test.qName, Qtype: test.qType, Qclass: test.qClass}
match := r.match(q, ClientInfo{})
require.Equal(t, test.match, match)
}
}