You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fixesgo-openapi#94
* now expanded $ref's are always contained in the resulting document.
All circular $ref that used to resolve to a remote $ref now resolve
as a json pointer inside the expanded document. Pointer resolution
prefers pointers to definitions.
* added additional test case for remote cyclical $ref, from azure API
* schema IDs are removed from the expanded spec: schemas expanded from some schema ID reference
now refer to the new expanded root document.
* circular IDs are resolved against the corresponding root document.
> NOTE(1): uncovered pre-existing issue with nested schema ID involving cyclical references.
> This case remains unsupported and is illustrated by test case: circular_test.go#L198 ("withID")
> NOTE(2): pre-existing issue with non-deterministic expansion remains unsolved,
> although the election of the replacing pointer inside the root document
> somewhat reduces the scope of this problem.
>
> This case remains illustrated by a minimal test case: circular_test.go#L46 ("minimal"),
> which expands correctly, but with changing results.
> NOTE(3): notice that expansion is still not an idempotent transform, in the presence
> of cyclical $ref's: another run on an expanded spec with remaining cyclical $ref
> will expand further down and detect again the cycle.
>
> The result remains functionally correct, as illustrated by test case: circular_test.go#L168 ("CircularID").
> Notice that this test case reproduces a validation fixture from jsonschema test (passed by go-openapi/validate).
Signed-off-by: Frederic BIDON <[email protected]>
// cannot guarantee that the circular will always hook on the same $ref
192
-
// but we can assert that there is only one
193
-
m:=rex.FindAllStringSubmatch(jazon, -1)
194
-
require.NotEmpty(t, m)
222
+
require.Len(t, refs, 1)
223
+
})
224
+
}
195
225
196
-
refs:=make(map[string]struct{}, 5)
197
-
for_, matched:=rangem {
198
-
subMatch:=matched[1]
199
-
refs[subMatch] =struct{}{}
226
+
funcTestSortRefTracker(t*testing.T) {
227
+
tracked:=refTrackers{
228
+
refTracker{Pointer: "/c/d/e"},
229
+
refTracker{Pointer: "/definitions/x"},
230
+
refTracker{Pointer: "/a/b/c/d"},
231
+
refTracker{Pointer: "/b"},
232
+
refTracker{Pointer: "/z"},
233
+
refTracker{Pointer: "/definitions/a"},
200
234
}
235
+
sort.Sort(tracked)
236
+
require.EqualValues(t, refTrackers{
237
+
refTracker{Pointer: "/definitions/a"},
238
+
refTracker{Pointer: "/definitions/x"},
239
+
refTracker{Pointer: "/b"},
240
+
refTracker{Pointer: "/z"},
241
+
refTracker{Pointer: "/c/d/e"},
242
+
refTracker{Pointer: "/a/b/c/d"},
243
+
}, tracked)
244
+
}
245
+
246
+
funcTestRemoteExpandAzure(t*testing.T) {
247
+
// local copy of : https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/network/resource-manager/Microsoft.Network/stable/2020-04-01/publicIpAddress.json
0 commit comments