-
Notifications
You must be signed in to change notification settings - Fork 2
/
path_test.go
107 lines (101 loc) · 2.36 KB
/
path_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
package openapi_test
// func TestPath(t *testing.T) {
// assert := require.New(t)
// j := []string{
// `{
// "/users/{id}": {
// "parameters": [
// {
// "name": "id",
// "in": "path",
// "required": true,
// "description": "the user identifier, as userId",
// "schema": {
// "type": "string"
// }
// }
// ],
// "get": {
// "responses": {
// "200": {
// "description": "the user being returned",
// "content": {
// "application/json": {
// "schema": {
// "type": "object",
// "properties": {
// "uuid": {
// "type": "string",
// "format": "uuid"
// }
// }
// }
// }
// },
// "links": {
// "address": {
// "operationId": "getUserAddress",
// "parameters": {
// "userId": "$request.path.id"
// }
// }
// }
// }
// }
// }
// },
// "/users/{userid}/address": {
// "parameters": [
// {
// "name": "userid",
// "in": "path",
// "required": true,
// "description": "the user identifier, as userId",
// "schema": {
// "type": "string"
// }
// }
// ],
// "get": {
// "operationId": "getUserAddress",
// "responses": {
// "200": {
// "description": "the user's address"
// }
// }
// }
// }
// }`}
// for _, d := range j {
// data := []byte(d)
// var paths openapi.Paths
// err := json.Unmarshal(data, &paths)
// var te *json.UnmarshalTypeError
// if errors.As(err, &te) {
// fmt.Println(te.Field)
// fmt.Println(te.Value)
// fmt.Println(te.Struct)
// }
// assert.NoError(err)
// b, err := json.MarshalIndent(paths, "", " ")
// assert.NoError(err)
// // patch, err := jsonpatch.CreateMergePatch(j, d)
// assert.NoError(err)
// if !jsonpatch.Equal(data, b) {
// fmt.Println(string(b))
// }
// assert.True(jsonpatch.Equal(data, b), cmpjson.Diff(data, b))
// // testing yaml
// y, err := yaml.JSONToYAML(data)
// assert.NoError(err)
// var yo openapi.Paths
// err = yaml.Unmarshal(y, &yo)
// assert.NoError(err)
// yb, err := json.MarshalIndent(yo, "", " ")
// assert.NoError(err)
// if !jsonpatch.Equal(data, yb) {
// fmt.Println(string(data), "\n------------------------\n", string(yb))
// }
// assert.True(jsonpatch.Equal(data, yb), cmpjson.Diff(data, yb))
// }
// }