-
Notifications
You must be signed in to change notification settings - Fork 77
/
tls_test.go
435 lines (411 loc) · 11.4 KB
/
tls_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
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//
// Copyright (C) 2019-2021 vdaas.org vald team <[email protected]>
//
// 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
//
// https://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 tls provides implementation of Go API for tls certificate provider
package tls
import (
"crypto/tls"
"crypto/x509"
stderrs "errors"
"fmt"
"reflect"
"testing"
"github.com/vdaas/vald/internal/errors"
"github.com/vdaas/vald/internal/io/ioutil"
testdata "github.com/vdaas/vald/internal/test"
"go.uber.org/goleak"
)
var goleakIgnoreOptions = []goleak.Option{
goleak.IgnoreTopFunction("github.com/kpango/fastime.(*Fastime).StartTimerD.func1"),
}
func TestNew(t *testing.T) {
type args struct {
opts []Option
}
type want struct {
want *Config
err error
}
type test struct {
name string
args args
want want
checkFunc func(want, *Config, error) error
beforeFunc func(args)
afterFunc func(args)
}
defaultCheckFunc := func(w want, got *Config, err error) error {
if !errors.Is(err, w.err) {
return errors.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if !reflect.DeepEqual(got, w.want) {
return errors.Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want)
}
return nil
}
tests := []test{
{
name: "returns cfg and nil when option is not empty",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/dummyServer.crt")),
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
WithCa(testdata.GetTestdataPath("tls/dummyCa.pem")),
},
},
want: want{
want: func() *Config {
cfg := new(tls.Config)
cfg.Certificates = make([]tls.Certificate, 1)
cfg.Certificates[0], _ = tls.LoadX509KeyPair(testdata.GetTestdataPath("tls/dummyServer.crt"),
testdata.GetTestdataPath("tls/dummyServer.key"))
pool, _ := NewX509CertPool(testdata.GetTestdataPath("tls/dummyCa.pem"))
cfg.ClientCAs = pool
cfg.ClientAuth = tls.RequireAndVerifyClientCert
return cfg
}(),
},
checkFunc: func(w want, c *tls.Config, err error) error {
if !errors.Is(err, w.err) {
return fmt.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if len(c.Certificates) != 1 && len(c.Certificates) != len(w.want.Certificates) {
return errors.New("Certificates length is wrong")
}
want := string(w.want.Certificates[0].Certificate[0])
got := string(c.Certificates[0].Certificate[0])
if want != got {
return errors.Errorf("Certificates[0] want: %v, but got: %v", want, got)
}
sl := len(c.ClientCAs.Subjects())
if sl == 0 {
return errors.New("subjects are empty")
}
if got, want := c.ClientCAs.Subjects()[sl-1], w.want.ClientCAs.Subjects()[sl-1]; !reflect.DeepEqual(got, want) {
return errors.Errorf("ClientCAs.Subjects want: %v, got: %v", want, got)
}
if got, want := c.ClientCAs.Subjects()[sl-1], w.want.ClientCAs.Subjects()[sl-1]; !reflect.DeepEqual(got, want) {
return errors.Errorf("ClientCAs.Subjects want: %v, got: %v", want, got)
}
if got, want := c.ClientAuth, w.want.ClientAuth; want != got {
return errors.Errorf("ClientAuth want: %v, but got: %v", want, got)
}
return nil
},
},
{
name: "returns nil and error when option is empty",
args: args{},
want: want{
err: errors.ErrTLSCertOrKeyNotFound,
},
},
{
name: "returns nil and error when cert path is empty",
args: args{
opts: []Option{
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
},
},
want: want{
err: errors.ErrTLSCertOrKeyNotFound,
},
},
{
name: "returns nil and error when key path is empty",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/dummyServer.crt")),
},
},
want: want{
err: errors.ErrTLSCertOrKeyNotFound,
},
},
{
name: "returns nil and error when contents of cert file is invalid",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/invalid.crt")),
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
},
},
want: want{
err: stderrs.New("tls: failed to find any PEM data in certificate input"),
},
},
{
name: "returns nil and error when contents of ca file is invalid",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/dummyServer.crt")),
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
WithCa(testdata.GetTestdataPath("tls/invalid.pem")),
},
},
want: want{
err: errors.ErrCertificationFailed,
},
},
}
for _, test := range tests {
t.Run(test.name, func(tt *testing.T) {
defer goleak.VerifyNone(tt, goleakIgnoreOptions...)
if test.beforeFunc != nil {
test.beforeFunc(test.args)
}
if test.afterFunc != nil {
defer test.afterFunc(test.args)
}
if test.checkFunc == nil {
test.checkFunc = defaultCheckFunc
}
got, err := New(test.args.opts...)
if err := test.checkFunc(test.want, got, err); err != nil {
tt.Errorf("error = %v", err)
}
})
}
}
func TestNewClientConfig(t *testing.T) {
type args struct {
opts []Option
}
type want struct {
want *Config
err error
}
type test struct {
name string
args args
want want
checkFunc func(want, *Config, error) error
beforeFunc func(args)
afterFunc func(args)
}
defaultCheckFunc := func(w want, got *Config, err error) error {
if !errors.Is(err, w.err) {
return errors.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if !reflect.DeepEqual(got, w.want) {
return errors.Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want)
}
return nil
}
tests := []test{
{
name: "returns cfg and nil when option is empty",
checkFunc: func(w want, c *Config, err error) error {
if !errors.Is(err, w.err) {
return fmt.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if c == nil {
return errors.New("config is nil")
}
return nil
},
},
{
name: "returns cfg and nil when cert and key option is not empty",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/dummyServer.crt")),
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
},
},
checkFunc: func(w want, c *Config, err error) error {
if !errors.Is(err, w.err) {
return fmt.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if c == nil {
return errors.New("config is nil")
}
if len(c.Certificates) != 1 {
return errors.Errorf("invalid certificate was set. %v", c.Certificates)
}
return nil
},
},
{
name: "returns nil and error when contents of ca file is invalid",
args: args{
opts: []Option{
WithCa(testdata.GetTestdataPath("tls/invalid.pem")),
},
},
want: want{
err: errors.ErrCertificationFailed,
},
},
{
name: "returns nil and error when contents of cert file is invalid",
args: args{
opts: []Option{
WithCert(testdata.GetTestdataPath("tls/invalid.crt")),
WithKey(testdata.GetTestdataPath("tls/dummyServer.key")),
},
},
checkFunc: func(w want, c *Config, err error) error {
wantErr := "tls: failed to find any PEM data in certificate input"
if err.Error() != wantErr {
return fmt.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if c != nil {
return errors.Errorf("config is not nil: %v", c)
}
return nil
},
},
}
for _, test := range tests {
t.Run(test.name, func(tt *testing.T) {
defer goleak.VerifyNone(tt, goleakIgnoreOptions...)
if test.beforeFunc != nil {
test.beforeFunc(test.args)
}
if test.afterFunc != nil {
defer test.afterFunc(test.args)
}
if test.checkFunc == nil {
test.checkFunc = defaultCheckFunc
}
got, err := NewClientConfig(test.args.opts...)
if err := test.checkFunc(test.want, got, err); err != nil {
tt.Errorf("error = %v", err)
}
})
}
}
func TestNewX509CertPool(t *testing.T) {
type args struct {
path string
}
type want struct {
want *x509.CertPool
err error
}
type test struct {
name string
args args
want want
checkFunc func(want, *x509.CertPool, error) error
beforeFunc func(args)
afterFunc func(args)
}
defaultCheckFunc := func(w want, got *x509.CertPool, err error) error {
if !errors.Is(err, w.err) {
return errors.Errorf("got_error: \"%#v\",\n\t\t\t\twant: \"%#v\"", err, w.err)
}
if !reflect.DeepEqual(got, w.want) {
return errors.Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want)
}
return nil
}
tests := []test{
{
name: "returns pool and nil when the pool exists and adds the cert into pool",
args: args{
path: testdata.GetTestdataPath("tls/dummyServer.crt"),
},
want: want{
want: func() *x509.CertPool {
pool := x509.NewCertPool()
b, _ := ioutil.ReadFile(testdata.GetTestdataPath("tls/dummyServer.crt"))
pool.AppendCertsFromPEM(b)
return pool
}(),
},
checkFunc: func(w want, cp *x509.CertPool, err error) error {
if err != nil {
return errors.Errorf("err is not nil. err: %v", err)
}
if cp == nil {
return errors.New("got is nil")
}
if len(cp.Subjects()) == 0 {
return errors.New("cert files are empty")
}
l := len(cp.Subjects()) - 1
if got, want := cp.Subjects()[l], w.want.Subjects()[0]; !reflect.DeepEqual(got, want) {
return errors.Errorf("not equals. want: %v, got: %v", want, got)
}
return nil
},
},
{
name: "returns nil and error when contents of path is invalid",
args: args{
path: testdata.GetTestdataPath("tls/invalid.pem"),
},
want: want{
err: errors.ErrCertificationFailed,
},
checkFunc: func(w want, cp *x509.CertPool, err error) error {
if !errors.Is(err, w.err) {
return errors.Errorf("err not equals. want: %v, but got: %v", w.err, err)
}
if cp == nil {
return errors.Errorf("got is nil: %v", cp)
}
return nil
},
},
{
name: "returns nil and error when path dose not exist",
args: args{
path: "not_exist",
},
checkFunc: func(w want, cp *x509.CertPool, err error) error {
if err == nil {
return errors.New("err is nil")
}
if cp != nil {
return errors.Errorf("got is not nil: %v", cp)
}
return nil
},
},
{
name: "returns nil and error when path is empty",
checkFunc: func(w want, cp *x509.CertPool, err error) error {
if err == nil {
return errors.New("err is nil")
}
if cp != nil {
return errors.Errorf("got is not nil: %v", cp)
}
return nil
},
},
}
for _, test := range tests {
t.Run(test.name, func(tt *testing.T) {
defer goleak.VerifyNone(tt, goleakIgnoreOptions...)
if test.beforeFunc != nil {
test.beforeFunc(test.args)
}
if test.afterFunc != nil {
defer test.afterFunc(test.args)
}
if test.checkFunc == nil {
test.checkFunc = defaultCheckFunc
}
got, err := NewX509CertPool(test.args.path)
if err := test.checkFunc(test.want, got, err); err != nil {
tt.Errorf("error = %v", err)
}
})
}
}