-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
81 lines (73 loc) · 1.6 KB
/
config_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
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2023-Present Datadog, Inc.
package cloudcraft_test
import (
"testing"
"time"
"github.com/DataDog/cloudcraft-go"
)
func TestConfig_Validate(t *testing.T) {
t.Parallel()
tests := []struct {
name string
give cloudcraft.Config
wantErr bool
}{
{
name: "Valid configuration",
give: cloudcraft.Config{
Scheme: "https",
Host: "api.example.com",
Port: "443",
Path: "/",
Key: "not-a-real-key-oRbwhd5RTvWsPJ89ZkASHU13qcyd=",
Timeout: time.Second * 80,
},
wantErr: false,
},
{
name: "Missing scheme",
give: cloudcraft.Config{
Host: "api.example.com",
Key: "not-a-real-key-oRbwhd5RTvWsPJ89ZkASHU13qcyd=",
},
wantErr: true,
},
{
name: "Missing host",
give: cloudcraft.Config{
Scheme: "https",
Key: "not-a-real-key-oRbwhd5RTvWsPJ89ZkASHU13qcyd=",
},
wantErr: true,
},
{
name: "Missing key",
give: cloudcraft.Config{
Scheme: "https",
Host: "api.example.com",
},
wantErr: true,
},
{
name: "Invalid key length",
give: cloudcraft.Config{
Scheme: "https",
Host: "api.example.com",
Key: "shortkey",
},
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
err := tt.give.Validate()
if (err != nil) != tt.wantErr {
t.Fatalf("Validate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}