-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathgrpc_srv_resolver_test.go
160 lines (139 loc) · 4.46 KB
/
grpc_srv_resolver_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
package discovery_test
import (
"io"
"log"
"net"
"net/url"
"sync"
"testing"
"time"
"github.com/foxcpp/go-mockdns"
"github.com/mailgun/holster/v4/discovery"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"google.golang.org/grpc/resolver"
)
type testClientConn struct {
resolver.ClientConn // For unimplemented functions
target string
m1 sync.Mutex
state resolver.State
updateStateCalls int
errChan chan error
updateChan chan struct{}
updateStateErr error
}
func (t *testClientConn) UpdateState(s resolver.State) error {
t.m1.Lock()
defer t.m1.Unlock()
t.state = s
t.updateStateCalls++
t.updateChan <- struct{}{}
return t.updateStateErr
}
func (t *testClientConn) ReportError(err error) {
t.errChan <- err
}
func TestSrvResolverBuilderSuccess(t *testing.T) {
t.Skip("TODO: fix https://github.com/mailgun/holster/issues/150")
z := map[string]mockdns.Zone{
"srv.example.com.": {
SRV: []net.SRV{
{
Target: "one.example.com.",
Port: 12345,
},
},
A: []string{"192.168.1.1"},
},
"one.example.com.": {
A: []string{"192.168.1.1", "10.2.1.100"},
},
}
dns, err := mockdns.NewServerWithLogger(z, log.New(io.Discard, "", log.LstdFlags), false)
require.NoError(t, err)
dns.PatchNet(net.DefaultResolver)
defer func() {
mockdns.UnpatchNet(net.DefaultResolver)
dns.Close()
}()
b := discovery.NewGRPCSRVBuilder()
cc := &testClientConn{target: "srv.example.com", updateChan: make(chan struct{}, 1), errChan: make(chan error, 10)}
target := resolver.Target{URL: url.URL{Path: "srv.example.com:4567"}}
r, err := b.Build(target, cc, resolver.BuildOptions{})
require.NoError(t, err)
defer r.Close()
// This request should be ignored by resolver, since we attempt to
// resolve SRV records as soon as Build() is called.
r.ResolveNow(resolver.ResolveNowOptions{})
// UpdateState should have been called once
select {
case <-cc.updateChan:
case <-time.After(time.Second * 3):
require.FailNow(t, "timeout waiting for UpdateState() call")
}
assert.Equal(t, "192.168.1.1:12345", cc.state.Addresses[0].Addr)
assert.Equal(t, "10.2.1.100:12345", cc.state.Addresses[1].Addr)
}
func TestSrvResolverBuilderNoARecord(t *testing.T) {
z := map[string]mockdns.Zone{
"srv.example.com.": {
SRV: []net.SRV{
{
Target: "one.example.com.",
Port: 12345,
},
},
},
}
dns, err := mockdns.NewServerWithLogger(z, log.New(io.Discard, "", log.LstdFlags), false)
require.NoError(t, err)
dns.PatchNet(net.DefaultResolver)
defer func() {
mockdns.UnpatchNet(net.DefaultResolver)
dns.Close()
}()
b := discovery.NewGRPCSRVBuilder()
cc := &testClientConn{target: "srv.example.com", updateChan: make(chan struct{}, 1), errChan: make(chan error, 10)}
target := resolver.Target{URL: url.URL{Path: "srv.example.com"}}
r, err := b.Build(target, cc, resolver.BuildOptions{})
require.NoError(t, err)
defer r.Close()
// This request should be ignored, since we attempt to
// resolve SRV records as soon as Build() is called.
r.ResolveNow(resolver.ResolveNowOptions{})
err = <-cc.errChan
assert.Error(t, err)
assert.Contains(t, err.Error(), "SRV record for 'srv.example.com' contained no valid domain names")
// Should retry with back off
err = <-cc.errChan
assert.Error(t, err)
assert.Contains(t, err.Error(), "SRV record for 'srv.example.com' contained no valid domain names")
}
func TestSrvResolverBuilderNoSRVRecord(t *testing.T) {
z := map[string]mockdns.Zone{
"srv.example.com.": {
A: []string{"10.5.4.3"},
},
}
dns, err := mockdns.NewServerWithLogger(z, log.New(io.Discard, "", log.LstdFlags), false)
require.NoError(t, err)
dns.PatchNet(net.DefaultResolver)
defer func() {
mockdns.UnpatchNet(net.DefaultResolver)
dns.Close()
}()
b := discovery.NewGRPCSRVBuilder()
cc := &testClientConn{target: "srv.example.com", updateChan: make(chan struct{}, 1), errChan: make(chan error, 10)}
// SRV lookup will ignore the port number here, only if SRV lookup fails will this port number matter
target := resolver.Target{URL: url.URL{Path: "srv.example.com:12345"}}
r, err := b.Build(target, cc, resolver.BuildOptions{})
require.NoError(t, err)
defer r.Close()
// This request should be ignored, since we attempt to
// resolve SRV records as soon as Build() is called.
r.ResolveNow(resolver.ResolveNowOptions{})
err = <-cc.errChan
assert.Error(t, err)
assert.Contains(t, err.Error(), "SRV record lookup err: lookup srv.example.com on")
}