Bumping k8s dependencies to 1.13
This commit is contained in:
68
vendor/k8s.io/kube-openapi/pkg/schemaconv/smd_test.go
generated
vendored
Normal file
68
vendor/k8s.io/kube-openapi/pkg/schemaconv/smd_test.go
generated
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
Copyright 2017 The Kubernetes Authors.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package schemaconv
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
yaml "gopkg.in/yaml.v2"
|
||||
|
||||
"k8s.io/kube-openapi/pkg/util/proto"
|
||||
prototesting "k8s.io/kube-openapi/pkg/util/proto/testing"
|
||||
)
|
||||
|
||||
var (
|
||||
openAPIPath = filepath.Join("testdata", "swagger.json")
|
||||
fakeSchema = prototesting.Fake{Path: openAPIPath}
|
||||
expectedNewSchemaPath = filepath.Join("testdata", "new-schema.yaml")
|
||||
)
|
||||
|
||||
func TestToSchema(t *testing.T) {
|
||||
s, err := fakeSchema.OpenAPISchema()
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
models, err := proto.NewOpenAPIData(s)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
ns, err := ToSchema(models)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
got, err := yaml.Marshal(ns)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
expect, err := ioutil.ReadFile(expectedNewSchemaPath)
|
||||
if err != nil {
|
||||
t.Fatalf("Unable to read golden data file %q: %v", expectedNewSchemaPath, err)
|
||||
}
|
||||
|
||||
if string(expect) != string(got) {
|
||||
t.Errorf("Computed schema did not match %q.", expectedNewSchemaPath)
|
||||
t.Logf("To recompute this file, run:\n\tgo run ./cmd/openapi2smd/openapi2smd.go < %q > %q",
|
||||
filepath.Join("pkg", "schemaconv", openAPIPath),
|
||||
filepath.Join("pkg", "schemaconv", expectedNewSchemaPath),
|
||||
)
|
||||
t.Log("You can then use `git diff` to see the changes.")
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user