-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpaths_test.go
More file actions
220 lines (189 loc) · 5.87 KB
/
Copy pathpaths_test.go
File metadata and controls
220 lines (189 loc) · 5.87 KB
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
package swagger_test
import (
"strings"
"testing"
"github.com/speakeasy-api/openapi/pointer"
"github.com/speakeasy-api/openapi/swagger"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPaths_GetExtensions_Success(t *testing.T) {
t.Parallel()
ctx := t.Context()
yml := `swagger: "2.0"
info:
title: Test API
version: 1.0.0
paths:
/users:
x-path-ext: path-value
get:
responses:
"200":
description: Success
x-custom: value
`
doc, validationErrs, err := swagger.Unmarshal(ctx, strings.NewReader(yml))
require.NoError(t, err, "unmarshal should succeed")
require.Empty(t, validationErrs, "should have no validation errors")
assert.NotNil(t, doc.Paths.GetExtensions(), "GetExtensions should return non-nil")
}
func TestPaths_GetExtensions_Nil(t *testing.T) {
t.Parallel()
var paths *swagger.Paths
ext := paths.GetExtensions()
assert.NotNil(t, ext, "GetExtensions should return empty extensions for nil paths")
}
func TestPathItem_NewPathItem(t *testing.T) {
t.Parallel()
pi := swagger.NewPathItem()
assert.NotNil(t, pi, "NewPathItem should return non-nil")
}
func TestPathItem_GetRef_Success(t *testing.T) {
t.Parallel()
pi := &swagger.PathItem{
Ref: pointer.From("#/paths/~1other"),
}
assert.Equal(t, "#/paths/~1other", pi.GetRef(), "GetRef should return correct value")
}
func TestPathItem_GetRef_Nil(t *testing.T) {
t.Parallel()
var pi *swagger.PathItem
assert.Empty(t, pi.GetRef(), "GetRef should return empty string for nil")
pi2 := &swagger.PathItem{}
assert.Empty(t, pi2.GetRef(), "GetRef should return empty string when Ref is nil")
}
func TestPathItem_GetParameters_Success(t *testing.T) {
t.Parallel()
ctx := t.Context()
yml := `swagger: "2.0"
info:
title: Test API
version: 1.0.0
paths:
/users/{id}:
parameters:
- name: id
in: path
required: true
type: string
get:
responses:
"200":
description: Success
`
doc, _, err := swagger.Unmarshal(ctx, strings.NewReader(yml))
require.NoError(t, err, "unmarshal should succeed")
pathItem, ok := doc.Paths.Get("/users/{id}")
require.True(t, ok, "path should exist")
assert.NotNil(t, pathItem.GetParameters(), "GetParameters should return non-nil")
assert.Len(t, pathItem.GetParameters(), 1, "should have one parameter")
}
func TestPathItem_GetParameters_Nil(t *testing.T) {
t.Parallel()
var pi *swagger.PathItem
assert.Nil(t, pi.GetParameters(), "GetParameters should return nil for nil pathitem")
}
func TestPathItem_GetExtensions_Success(t *testing.T) {
t.Parallel()
ctx := t.Context()
yml := `swagger: "2.0"
info:
title: Test API
version: 1.0.0
paths:
/users:
x-custom: value
get:
responses:
"200":
description: Success
`
doc, _, err := swagger.Unmarshal(ctx, strings.NewReader(yml))
require.NoError(t, err, "unmarshal should succeed")
pathItem, ok := doc.Paths.Get("/users")
require.True(t, ok, "path should exist")
assert.NotNil(t, pathItem.GetExtensions(), "GetExtensions should return non-nil")
}
func TestPathItem_GetExtensions_Nil(t *testing.T) {
t.Parallel()
var pi *swagger.PathItem
ext := pi.GetExtensions()
assert.NotNil(t, ext, "GetExtensions should return empty extensions for nil pathitem")
}
func TestPathItem_Operations_Success(t *testing.T) {
t.Parallel()
ctx := t.Context()
yml := `swagger: "2.0"
info:
title: Test API
version: 1.0.0
paths:
/users:
get:
operationId: getUsers
responses:
"200":
description: Success
put:
operationId: updateUsers
responses:
"200":
description: Success
post:
operationId: createUsers
responses:
"200":
description: Success
delete:
operationId: deleteUsers
responses:
"200":
description: Success
options:
operationId: optionsUsers
responses:
"200":
description: Success
head:
operationId: headUsers
responses:
"200":
description: Success
patch:
operationId: patchUsers
responses:
"200":
description: Success
`
doc, validationErrs, err := swagger.Unmarshal(ctx, strings.NewReader(yml))
require.NoError(t, err, "unmarshal should succeed")
require.Empty(t, validationErrs, "should have no validation errors")
pathItem, ok := doc.Paths.Get("/users")
require.True(t, ok, "path should exist")
assert.NotNil(t, pathItem.Get(), "Get should return non-nil")
assert.Equal(t, "getUsers", pathItem.Get().GetOperationID())
assert.NotNil(t, pathItem.Put(), "Put should return non-nil")
assert.Equal(t, "updateUsers", pathItem.Put().GetOperationID())
assert.NotNil(t, pathItem.Post(), "Post should return non-nil")
assert.Equal(t, "createUsers", pathItem.Post().GetOperationID())
assert.NotNil(t, pathItem.Delete(), "Delete should return non-nil")
assert.Equal(t, "deleteUsers", pathItem.Delete().GetOperationID())
assert.NotNil(t, pathItem.Options(), "Options should return non-nil")
assert.Equal(t, "optionsUsers", pathItem.Options().GetOperationID())
assert.NotNil(t, pathItem.Head(), "Head should return non-nil")
assert.Equal(t, "headUsers", pathItem.Head().GetOperationID())
assert.NotNil(t, pathItem.Patch(), "Patch should return non-nil")
assert.Equal(t, "patchUsers", pathItem.Patch().GetOperationID())
}
func TestPathItem_Operations_Nil(t *testing.T) {
t.Parallel()
var pi *swagger.PathItem
assert.Nil(t, pi.Get(), "Get should return nil for nil pathitem")
assert.Nil(t, pi.Put(), "Put should return nil for nil pathitem")
assert.Nil(t, pi.Post(), "Post should return nil for nil pathitem")
assert.Nil(t, pi.Delete(), "Delete should return nil for nil pathitem")
assert.Nil(t, pi.Options(), "Options should return nil for nil pathitem")
assert.Nil(t, pi.Head(), "Head should return nil for nil pathitem")
assert.Nil(t, pi.Patch(), "Patch should return nil for nil pathitem")
}