-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstub_test.go
232 lines (224 loc) · 3.8 KB
/
stub_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
package gmock
import (
"net/http"
"net/url"
"testing"
"github.com/stretchr/testify/assert"
)
func TestStubRequest_Validate(t *testing.T) {
type fields struct {
Method string
Path string
Query url.Values
Body any
Headers map[string][]string
}
tests := []struct {
name string
fields fields
want []error
}{
{
name: "valid request",
fields: fields{
Method: http.MethodGet,
Path: "/test",
},
want: nil,
},
{
name: "required method",
fields: fields{
Path: "/test",
},
want: []error{&errRequiredMethod{}},
},
{
name: "invalid method",
fields: fields{
Method: "INVALID",
Path: "/test",
},
want: []error{&errInvalidMethod{method: "INVALID"}},
},
{
name: "invalid path",
fields: fields{
Method: http.MethodGet,
Path: "",
},
want: []error{&errRequiredPath{}},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
r := &StubRequest{
Method: tt.fields.Method,
Path: tt.fields.Path,
Query: tt.fields.Query,
Body: tt.fields.Body,
}
assert.Equal(t, tt.want, r.Validate())
})
}
}
func TestStubRequest_Sanitize(t *testing.T) {
r := &StubRequest{
Path: "test",
}
r.Sanitize()
assert.Equal(t, "/test", r.Path)
r = &StubRequest{
Path: "/test",
}
r.Sanitize()
assert.Equal(t, "/test", r.Path)
}
func TestStubResponse_Validate(t *testing.T) {
type fields struct {
StatusCode int
Headers map[string][]string
Body any
}
tests := []struct {
name string
fields fields
want []error
}{
{
name: "valid response",
fields: fields{
StatusCode: 200,
},
want: nil,
},
{
name: "invalid status code",
fields: fields{
StatusCode: -1,
},
want: []error{&errInvalidStatusCode{statusCode: -1}},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
r := &StubResponse{
StatusCode: tt.fields.StatusCode,
Headers: tt.fields.Headers,
Body: tt.fields.Body,
}
assert.Equal(t, tt.want, r.Validate())
})
}
}
func TestStub_validationErrors(t *testing.T) {
// valid
r := &Stub{
Request: StubRequest{
Method: http.MethodGet,
Path: "/test",
},
Response: StubResponse{
StatusCode: http.StatusOK,
},
}
assert.Nil(t, r.validationErrors())
// invalid
r = &Stub{
Request: StubRequest{
Method: "invalid",
},
}
assert.GreaterOrEqual(t, len(r.validationErrors()), 1)
}
func Test_getStubFromBytes(t *testing.T) {
type args struct {
b []byte
}
tests := []struct {
name string
args args
want *Stub
wantErr bool
}{
{
name: "empty stub",
args: args{
b: []byte(""),
},
want: nil,
},
{
name: "empty json stub",
args: args{
b: []byte(`{}`),
},
want: &Stub{},
},
{
name: "valid json stub",
args: args{
b: []byte(`{
"request": {
"method": "GET",
"path": "/test"
},
"response": {
"status_code": 200
}
}`),
},
want: &Stub{
Request: StubRequest{
Method: http.MethodGet,
Path: "/test",
},
Response: StubResponse{
StatusCode: http.StatusOK,
},
},
},
{
name: "valid yaml stub",
args: args{
b: []byte(`
request:
method: GET
path: "/test"
response:
status_code: 200
`),
},
want: &Stub{
Request: StubRequest{
Method: http.MethodGet,
Path: "/test",
},
Response: StubResponse{
StatusCode: http.StatusOK,
},
},
},
{
name: "invalid stub",
args: args{
b: []byte(`invalid`),
},
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
got, err := getStubFromBytes(tt.args.b)
if tt.wantErr {
assert.Error(t, err)
return
}
assert.Equal(t, tt.want, got)
assert.NoError(t, err)
})
}
}