
kubeconform was choking on a typo in the description field, so I fixed the typo while adding friendlier logging to tell me which file was invalid I got curious why tests didn't catch this, and it turns out kubeconform and the behavior tests use different codepaths to load and validate. So I merged them together
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
/*
|
|
Copyright 2020 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"k8s.io/kubernetes/test/conformance/behaviors"
|
|
)
|
|
|
|
func link(o *options) error {
|
|
behaviorsMapping := make(map[string][]string)
|
|
var conformanceDataList []behaviors.ConformanceData
|
|
|
|
behaviorFiles, err := behaviors.BehaviorFileList(o.behaviorsDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Printf("Using behaviors from these %d files:\n", len(behaviorFiles))
|
|
for _, f := range behaviorFiles {
|
|
fmt.Println(" ", f)
|
|
}
|
|
fmt.Println()
|
|
|
|
if o.listAll {
|
|
fmt.Println("All behaviors:")
|
|
} else {
|
|
fmt.Println("Behaviors not covered by any conformance test:")
|
|
}
|
|
|
|
for _, behaviorFile := range behaviorFiles {
|
|
suite, err := behaviors.LoadSuite(behaviorFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = behaviors.ValidateSuite(suite)
|
|
if err != nil {
|
|
return fmt.Errorf("error validating %s: %q", behaviorFile, err.Error())
|
|
}
|
|
for _, behavior := range suite.Behaviors {
|
|
behaviorsMapping[behavior.ID] = nil
|
|
}
|
|
}
|
|
|
|
conformanceYaml, err := ioutil.ReadFile(o.testdata)
|
|
if err != nil {
|
|
return fmt.Errorf("%s: %v", o.testdata, err)
|
|
}
|
|
|
|
err = yaml.Unmarshal(conformanceYaml, &conformanceDataList)
|
|
if err != nil {
|
|
return fmt.Errorf("%s: %v", o.testdata, err)
|
|
}
|
|
|
|
for _, data := range conformanceDataList {
|
|
for _, behaviorID := range data.Behaviors {
|
|
if _, ok := behaviorsMapping[behaviorID]; !ok {
|
|
return fmt.Errorf("cannot find behavior %q", behaviorID)
|
|
}
|
|
behaviorsMapping[behaviorID] = append(behaviorsMapping[behaviorID], data.CodeName)
|
|
}
|
|
}
|
|
printBehaviorsMapping(behaviorsMapping, o)
|
|
return nil
|
|
}
|
|
|
|
func printBehaviorsMapping(behaviorsMapping map[string][]string, o *options) {
|
|
for behaviorID, tests := range behaviorsMapping {
|
|
if o.listAll || tests == nil {
|
|
fmt.Println(" ", behaviorID)
|
|
}
|
|
}
|
|
}
|