-
Notifications
You must be signed in to change notification settings - Fork 19
/
validator_examples_test.go
269 lines (212 loc) · 7.64 KB
/
validator_examples_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
// Copyright 2023 Princess B33f Heavy Industries / Dave Shanley
// SPDX-License-Identifier: MIT
package validator
import (
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"os"
"github.com/pb33f/libopenapi"
"github.com/pb33f/libopenapi-validator/helpers"
)
func ExampleNewValidator_validateDocument() {
// 1. Load the OpenAPI 3+ spec into a byte array
petstore, err := os.ReadFile("test_specs/invalid_31.yaml")
if err != nil {
panic(err)
}
// 2. Create a new OpenAPI document using libopenapi
document, docErrs := libopenapi.NewDocument(petstore)
if docErrs != nil {
panic(docErrs)
}
// 3. Create a new validator
docValidator, validatorErrs := NewValidator(document)
if validatorErrs != nil {
panic(validatorErrs)
}
// 4. Validate!
valid, validationErrs := docValidator.ValidateDocument()
if !valid {
for i, e := range validationErrs {
// 5. Handle the error
fmt.Printf("%d: Type: %s, Failure: %s\n", i, e.ValidationType, e.Message)
fmt.Printf("Fix: %s\n\n", e.HowToFix)
}
}
// Output: 0: Type: schema, Failure: Document does not pass validation
//Fix: Ensure that the object being submitted, matches the schema correctly
}
func ExampleNewValidator_validateHttpRequest() {
// 1. Load the OpenAPI 3+ spec into a byte array
petstore, err := os.ReadFile("test_specs/petstorev3.json")
if err != nil {
panic(err)
}
// 2. Create a new OpenAPI document using libopenapi
document, docErrs := libopenapi.NewDocument(petstore)
if docErrs != nil {
panic(docErrs)
}
// 3. Create a new validator
docValidator, validatorErrs := NewValidator(document)
if validatorErrs != nil {
panic(validatorErrs)
}
// 4. Create a new *http.Request (normally, this would be where the host application will pass in the request)
request, _ := http.NewRequest(http.MethodGet, "/pet/NotAValidPetId", nil)
// 5. Validate!
valid, validationErrs := docValidator.ValidateHttpRequest(request)
if !valid {
for _, e := range validationErrs {
// 5. Handle the error
fmt.Printf("Type: %s, Failure: %s\n", e.ValidationType, e.Message)
}
}
// Output: Type: security, Failure: API Key api_key not found in header
// Type: parameter, Failure: Path parameter 'petId' is not a valid number
}
func ExampleNewValidator_validateHttpRequestSync() {
// 1. Load the OpenAPI 3+ spec into a byte array
petstore, err := os.ReadFile("test_specs/petstorev3.json")
if err != nil {
panic(err)
}
// 2. Create a new OpenAPI document using libopenapi
document, docErrs := libopenapi.NewDocument(petstore)
if docErrs != nil {
panic(docErrs)
}
// 3. Create a new validator
docValidator, validatorErrs := NewValidator(document)
if validatorErrs != nil {
panic(validatorErrs)
}
// 4. Create a new *http.Request (normally, this would be where the host application will pass in the request)
request, _ := http.NewRequest(http.MethodGet, "/pet/NotAValidPetId", nil)
// 5. Validate!
valid, validationErrs := docValidator.ValidateHttpRequestSync(request)
if !valid {
for _, e := range validationErrs {
// 5. Handle the error
fmt.Printf("Type: %s, Failure: %s\n", e.ValidationType, e.Message)
}
}
// Type: parameter, Failure: Path parameter 'petId' is not a valid number
// Output: Type: security, Failure: API Key api_key not found in header
}
func ExampleNewValidator_validateHttpRequestResponse() {
// 1. Load the OpenAPI 3+ spec into a byte array
petstore, err := os.ReadFile("test_specs/petstorev3.json")
if err != nil {
panic(err)
}
// 2. Create a new OpenAPI document using libopenapi
document, docErrs := libopenapi.NewDocument(petstore)
if docErrs != nil {
panic(docErrs)
}
// 3. Create a new validator
docValidator, validatorErrs := NewValidator(document)
if validatorErrs != nil {
panic(validatorErrs)
}
// 6. Create a new *http.Request (normally, this would be where the host application will pass in the request)
request, _ := http.NewRequest(http.MethodGet, "/pet/findByStatus?status=sold", nil)
// 7. Simulate a request/response, in this case the contract returns a 200 with an array of pets.
// Normally, this would be where the host application would pass in the response.
recorder := httptest.NewRecorder()
handler := func(w http.ResponseWriter, r *http.Request) {
// set return content type.
w.Header().Set(helpers.ContentTypeHeader, helpers.JSONContentType)
w.WriteHeader(http.StatusOK)
// create a Pet
body := map[string]interface{}{
"id": 123,
"name": "cotton",
"category": map[string]interface{}{
"id": "NotAValidPetId", // this will fail, it should be an integer.
"name": "dogs",
},
"photoUrls": []string{"https://pb33f.io"},
}
// marshal the request body into bytes.
responseBodyBytes, _ := json.Marshal([]interface{}{body}) // operation returns an array of pets
// return the response.
_, _ = w.Write(responseBodyBytes)
}
// simulate request/response
handler(recorder, request)
// 7. Validate!
valid, validationErrs := docValidator.ValidateHttpRequestResponse(request, recorder.Result())
if !valid {
for _, e := range validationErrs {
// 5. Handle the error
fmt.Printf("Type: %s, Failure: %s\n", e.ValidationType, e.Message)
fmt.Printf("Schema Error: %s, Line: %d, Col: %d\n",
e.SchemaValidationErrors[0].Reason,
e.SchemaValidationErrors[0].Line,
e.SchemaValidationErrors[0].Column)
}
}
// Output: Type: response, Failure: 200 response body for '/pet/findByStatus' failed to validate schema
//Schema Error: got string, want integer, Line: 19, Col: 27
}
func ExampleNewValidator_validateHttpResponse() {
// 1. Load the OpenAPI 3+ spec into a byte array
petstore, err := os.ReadFile("test_specs/petstorev3.json")
if err != nil {
panic(err)
}
// 2. Create a new OpenAPI document using libopenapi
document, docErrs := libopenapi.NewDocument(petstore)
if docErrs != nil {
panic(docErrs)
}
// 3. Create a new validator
docValidator, validatorErrs := NewValidator(document)
if validatorErrs != nil {
panic(validatorErrs)
}
// 6. Create a new *http.Request (normally, this would be where the host application will pass in the request)
request, _ := http.NewRequest(http.MethodGet, "/pet/findByStatus?status=sold", nil)
// 7. Simulate a request/response, in this case the contract returns a 200 with an array of pets.
// Normally, this would be where the host application would pass in the response.
recorder := httptest.NewRecorder()
handler := func(w http.ResponseWriter, r *http.Request) {
// set return content type.
w.Header().Set(helpers.ContentTypeHeader, helpers.JSONContentType)
w.WriteHeader(http.StatusOK)
// create a Pet
body := map[string]interface{}{
"id": 123,
"name": "cotton",
"category": map[string]interface{}{
"id": "NotAValidPetId", // this will fail, it should be an integer.
"name": "dogs",
},
"photoUrls": []string{"https://pb33f.io"},
}
// marshal the request body into bytes.
responseBodyBytes, _ := json.Marshal([]interface{}{body}) // operation returns an array of pets
// return the response.
_, _ = w.Write(responseBodyBytes)
}
// simulate request/response
handler(recorder, request)
// 7. Validate the response only
valid, validationErrs := docValidator.ValidateHttpResponse(request, recorder.Result())
if !valid {
for _, e := range validationErrs {
// 5. Handle the error
fmt.Printf("Type: %s, Failure: %s\n", e.ValidationType, e.Message)
fmt.Printf("Schema Error: %s, Line: %d, Col: %d\n",
e.SchemaValidationErrors[0].Reason,
e.SchemaValidationErrors[0].Line,
e.SchemaValidationErrors[0].Column)
}
}
// Output: Type: response, Failure: 200 response body for '/pet/findByStatus' failed to validate schema
//Schema Error: got string, want integer, Line: 19, Col: 27
}