forked from GoogleCloudPlatform/cloud-sql-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_test.go
More file actions
296 lines (262 loc) · 7.26 KB
/
client_test.go
File metadata and controls
296 lines (262 loc) · 7.26 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package proxy
import (
"context"
"crypto/tls"
"crypto/x509"
"errors"
"fmt"
"net"
"sync"
"sync/atomic"
"testing"
"time"
"unsafe"
)
const instance = "instance-name"
var (
errFakeDial = errors.New("this error is returned by the dialer")
forever = time.Date(9999, 0, 0, 0, 0, 0, 0, time.UTC)
)
type fakeCerts struct {
sync.Mutex
called int
}
type blockingCertSource struct {
values map[string]*fakeCerts
validUntil time.Time
}
func (cs *blockingCertSource) Local(instance string) (tls.Certificate, error) {
v, ok := cs.values[instance]
if !ok {
return tls.Certificate{}, fmt.Errorf("test setup failure: unknown instance %q", instance)
}
v.Lock()
v.called++
v.Unlock()
// Returns a cert which is valid forever.
return tls.Certificate{
Leaf: &x509.Certificate{
NotAfter: cs.validUntil,
},
}, nil
}
func (cs *blockingCertSource) Remote(instance string) (cert *x509.Certificate, addr, name, version string, err error) {
return &x509.Certificate{}, "fake address", "fake name", "fake version", nil
}
func TestContextDialer(t *testing.T) {
b := &fakeCerts{}
c := &Client{
Certs: &blockingCertSource{
map[string]*fakeCerts{
instance: b,
},
forever,
},
ContextDialer: func(context.Context, string, string) (net.Conn, error) {
return nil, errFakeDial
},
Dialer: func(string, string) (net.Conn, error) {
return nil, fmt.Errorf("this dialer should't be used when ContextDialer is set")
},
}
if _, err := c.DialContext(context.Background(), instance); err != errFakeDial {
t.Errorf("unexpected error: %v", err)
}
}
func TestClientCache(t *testing.T) {
b := &fakeCerts{}
c := &Client{
Certs: &blockingCertSource{
map[string]*fakeCerts{
instance: b,
},
forever,
},
Dialer: func(string, string) (net.Conn, error) {
return nil, errFakeDial
},
}
for i := 0; i < 5; i++ {
if _, err := c.Dial(instance); err != errFakeDial {
t.Errorf("unexpected error: %v", err)
}
}
b.Lock()
if b.called != 1 {
t.Errorf("called %d times, want called 1 time", b.called)
}
b.Unlock()
}
func TestConcurrentRefresh(t *testing.T) {
b := &fakeCerts{}
c := &Client{
Certs: &blockingCertSource{
map[string]*fakeCerts{
instance: b,
},
forever,
},
Dialer: func(string, string) (net.Conn, error) {
return nil, errFakeDial
},
}
ch := make(chan error)
b.Lock()
const numDials = 20
for i := 0; i < numDials; i++ {
go func() {
_, err := c.Dial(instance)
ch <- err
}()
}
b.Unlock()
for i := 0; i < numDials; i++ {
if err := <-ch; err != errFakeDial {
t.Errorf("unexpected error: %v", err)
}
}
b.Lock()
if b.called != 1 {
t.Errorf("called %d times, want called 1 time", b.called)
}
b.Unlock()
}
func TestMaximumConnectionsCount(t *testing.T) {
const maxConnections = 10
const numConnections = maxConnections + 1
var dials uint64 = 0
b := &fakeCerts{}
certSource := blockingCertSource{
map[string]*fakeCerts{},
forever,
}
firstDialExited := make(chan struct{})
c := &Client{
Certs: &certSource,
Dialer: func(string, string) (net.Conn, error) {
atomic.AddUint64(&dials, 1)
// Wait until the first dial fails to ensure the max connections count is reached by a concurrent dialer
<-firstDialExited
return nil, errFakeDial
},
MaxConnections: maxConnections,
}
// Build certSource.values before creating goroutines to avoid concurrent map read and map write
instanceNames := make([]string, numConnections)
for i := 0; i < numConnections; i++ {
// Vary instance name to bypass config cache and avoid second call to Client.tryConnect() in Client.Dial()
instanceName := fmt.Sprintf("%s-%d", instance, i)
certSource.values[instanceName] = b
instanceNames[i] = instanceName
}
var wg sync.WaitGroup
var firstDialOnce sync.Once
for _, instanceName := range instanceNames {
wg.Add(1)
go func(instanceName string) {
defer wg.Done()
conn := Conn{
Instance: instanceName,
Conn: &dummyConn{},
}
c.handleConn(conn)
firstDialOnce.Do(func() { close(firstDialExited) })
}(instanceName)
}
wg.Wait()
switch {
case dials > maxConnections:
t.Errorf("client should have refused to dial new connection on %dth attempt when the maximum of %d connections was reached (%d dials)", numConnections, maxConnections, dials)
case dials == maxConnections:
t.Logf("client has correctly refused to dial new connection on %dth attempt when the maximum of %d connections was reached (%d dials)\n", numConnections, maxConnections, dials)
case dials < maxConnections:
t.Errorf("client should have dialed exactly the maximum of %d connections (%d connections, %d dials)", maxConnections, numConnections, dials)
}
}
func TestShutdownTerminatesEarly(t *testing.T) {
b := &fakeCerts{}
c := &Client{
Certs: &blockingCertSource{
map[string]*fakeCerts{
instance: b,
},
forever,
},
Dialer: func(string, string) (net.Conn, error) {
return nil, nil
},
}
shutdown := make(chan bool, 1)
go func() {
c.Shutdown(1)
shutdown <- true
}()
shutdownFinished := false
// In case the code is actually broken and the client doesn't shut down quickly, don't cause the test to hang until it times out.
select {
case <-time.After(100 * time.Millisecond):
case shutdownFinished = <-shutdown:
}
if !shutdownFinished {
t.Errorf("shutdown should have completed quickly because there are no active connections")
}
}
func TestRefreshTimer(t *testing.T) {
timeToExpire := 5 * time.Second
b := &fakeCerts{}
certCreated := time.Now()
c := &Client{
Certs: &blockingCertSource{
map[string]*fakeCerts{
instance: b,
},
certCreated.Add(timeToExpire),
},
Dialer: func(string, string) (net.Conn, error) {
return nil, errFakeDial
},
RefreshCfgThrottle: 20 * time.Millisecond,
RefreshCfgBuffer: time.Second,
}
// Call Dial to cache the cert.
if _, err := c.Dial(instance); err != errFakeDial {
t.Fatalf("Dial(%s) failed: %v", instance, err)
}
c.cacheL.Lock()
cfg, ok := c.cfgCache[instance]
c.cacheL.Unlock()
if !ok {
t.Fatalf("expected instance to be cached")
}
time.Sleep(timeToExpire - time.Since(certCreated))
// Check if cert was refreshed in the background, without calling Dial again.
c.cacheL.Lock()
newCfg, ok := c.cfgCache[instance]
c.cacheL.Unlock()
if !ok {
t.Fatalf("expected instance to be cached")
}
if !newCfg.lastRefreshed.After(cfg.lastRefreshed) {
t.Error("expected cert to be refreshed.")
}
}
func TestSyncAtomicAlignment(t *testing.T) {
// The sync/atomic pkg has a bug that requires the developer to guarantee 64-bit alignment when using 64-bit functions on 32-bit systems.
c := &Client{}
if a := unsafe.Offsetof(c.ConnectionsCounter); a%64 != 0 {
t.Errorf("Client.ConnectionsCounter is not aligned: want %v, got %v", 0, a)
}
}