-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathservicenow_service_client_option_test.go
204 lines (177 loc) · 4.47 KB
/
servicenow_service_client_option_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
package servicenowsdkgo
import (
"errors"
"testing"
"github.com/michaeldcanady/servicenow-sdk-go/internal/mocking"
"github.com/microsoft/kiota-abstractions-go/store"
nethttplibrary "github.com/microsoft/kiota-http-go"
"github.com/stretchr/testify/assert"
)
func TestWithURL(t *testing.T) {
tests := []struct {
name string
test func(t *testing.T)
}{
{
name: "successful",
test: func(t *testing.T) {
input := "https://exampleurl.com"
option := withURL(input)
config := &serviceNowServiceClientConfig{}
err := option(config)
assert.Nil(t, err)
assert.Equal(t, input, config.rawURI)
},
},
{
name: "empty uri",
test: func(t *testing.T) {
input := " "
option := withURL(input)
config := &serviceNowServiceClientConfig{}
err := option(config)
assert.Equal(t, errors.New("url is empty"), err)
assert.Equal(t, "", config.rawURI)
},
},
{
name: "invalid uri",
test: func(t *testing.T) {
input := "https://example url.com"
option := withURL(input)
config := &serviceNowServiceClientConfig{}
err := option(config)
assert.Equal(t, errors.New("parse \"https://example url.com\": invalid character \" \" in host name"), err)
assert.Equal(t, "", config.rawURI)
},
},
{
name: "nil config",
test: func(t *testing.T) {
input := "https://exampleurl.com"
option := withURL(input)
config := (*serviceNowServiceClientConfig)(nil)
err := option(config)
assert.Equal(t, errors.New("config is nil"), err)
},
},
}
for _, test := range tests {
t.Run(test.name, test.test)
}
}
func TestWithMiddleware(t *testing.T) {
tests := []struct {
name string
test func(t *testing.T)
}{
{
name: "successful",
test: func(t *testing.T) {
config := &serviceNowServiceClientConfig{}
middleware := mocking.NewMockMiddleware()
option := withMiddleware(middleware)
err := option(config)
assert.Nil(t, err)
assert.Equal(t, middleware, config.middleware[0])
},
},
{
name: "nil config",
test: func(t *testing.T) {
middleware := mocking.NewMockMiddleware()
config := (*serviceNowServiceClientConfig)(nil)
option := withMiddleware(middleware)
err := option(config)
assert.Equal(t, errors.New("config is nil"), err)
},
},
{
name: "no middleware",
test: func(t *testing.T) {
config := &serviceNowServiceClientConfig{}
option := withMiddleware()
err := option(config)
assert.Equal(t, errors.New("middleware is empty"), err)
assert.Equal(t, ([]nethttplibrary.Middleware)(nil), config.middleware)
},
},
}
for _, test := range tests {
t.Run(test.name, test.test)
}
}
func TestWithInstance(t *testing.T) {
tests := []struct {
name string
test func(t *testing.T)
}{
{
name: "successful",
test: func(t *testing.T) {
instance := "test"
config := &serviceNowServiceClientConfig{}
option := withInstance(instance)
err := option(config)
assert.Nil(t, err)
assert.Equal(t, instance, config.instance)
},
},
{
name: "nil config",
test: func(t *testing.T) {
instance := "https://exampleurl.com"
config := (*serviceNowServiceClientConfig)(nil)
option := withURL(instance)
err := option(config)
assert.Equal(t, errors.New("config is nil"), err)
},
},
{
name: "empty instance",
test: func(t *testing.T) {
instance := " "
config := &serviceNowServiceClientConfig{}
option := withInstance(instance)
err := option(config)
assert.Equal(t, errors.New("instance is empty"), err)
assert.Equal(t, "", config.instance)
},
},
}
for _, test := range tests {
t.Run(test.name, test.test)
}
}
func TestWithBackingStore(t *testing.T) {
tests := []struct {
name string
test func(t *testing.T)
}{
{
name: "successful",
test: func(t *testing.T) {
backingStore := store.BackingStoreFactoryInstance
config := &serviceNowServiceClientConfig{}
option := withBackingStoreFactory(backingStore)
err := option(config)
assert.Nil(t, err)
// can't verify they're the same because they're functions
assert.NotNil(t, config.backingStoreFactory)
},
},
{
name: "nil factory",
test: func(t *testing.T) {
config := &serviceNowServiceClientConfig{}
option := withBackingStoreFactory(nil)
err := option(config)
assert.Equal(t, errors.New("backingStoreFactory is nil"), err)
assert.Nil(t, config.backingStoreFactory)
},
},
}
for _, test := range tests {
t.Run(test.name, test.test)
}
}