k8s.io/kube-openapi@v0.0.0-20240228011516-70dd3763d340/pkg/validation/spec/paths_test.go (about) 1 // Copyright 2015 go-swagger maintainers 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package spec 16 17 import ( 18 "encoding/json" 19 "testing" 20 21 "github.com/stretchr/testify/assert" 22 "github.com/stretchr/testify/require" 23 jsontesting "k8s.io/kube-openapi/pkg/util/jsontesting" 24 ) 25 26 var paths = Paths{ 27 VendorExtensible: VendorExtensible{Extensions: map[string]interface{}{"x-framework": "go-swagger"}}, 28 Paths: map[string]PathItem{ 29 "/": { 30 Refable: Refable{Ref: MustCreateRef("cats")}, 31 }, 32 }, 33 } 34 35 const pathsJSON = `{"x-framework":"go-swagger","/":{"$ref":"cats"}}` 36 const pathsJSONInvalidKey = `{"x-framework":"go-swagger","not-path-nor-extension":"invalid","/":{"$ref":"cats"}}` 37 38 func TestIntegrationPaths(t *testing.T) { 39 var actual Paths 40 if assert.NoError(t, json.Unmarshal([]byte(pathsJSON), &actual)) { 41 assert.EqualValues(t, actual, paths) 42 } 43 if assert.NoError(t, json.Unmarshal([]byte(pathsJSONInvalidKey), &actual)) { 44 assert.EqualValues(t, actual, paths) 45 } 46 47 assertParsesJSON(t, pathsJSON, paths) 48 assertParsesJSON(t, pathsJSONInvalidKey, paths) 49 } 50 51 func TestPathsRoundtrip(t *testing.T) { 52 cases := []jsontesting.RoundTripTestCase{ 53 { 54 // Show at least one field from each embededd struct sitll allows 55 // roundtrips successfully 56 Name: "UnmarshalEmbedded", 57 JSON: `{ 58 "x-framework": "swagger-go", 59 "/this-is-a-path": { 60 "$ref": "/components/a/path/item" 61 } 62 }`, 63 Object: &Paths{ 64 VendorExtensible{Extensions{ 65 "x-framework": "swagger-go", 66 }}, 67 map[string]PathItem{ 68 "/this-is-a-path": {Refable: Refable{MustCreateRef("/components/a/path/item")}}, 69 }, 70 }, 71 }, { 72 Name: "BasicCase", 73 JSON: pathsJSON, 74 Object: &paths, 75 }, 76 } 77 78 for _, tcase := range cases { 79 t.Run(tcase.Name, func(t *testing.T) { 80 require.NoError(t, tcase.RoundTripTest(&Paths{})) 81 }) 82 } 83 }