kubernetes typename_test 源码

  • 2022-09-18
  • 浏览 (164)

kubernetes typename_test 代码

文件路径:/staging/src/k8s.io/kubectl/pkg/explain/typename_test.go

/*
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 explain

import (
	"testing"

	"k8s.io/apimachinery/pkg/runtime/schema"
	tst "k8s.io/kubectl/pkg/util/openapi/testing"
)

var resources = tst.NewFakeResources("test-swagger.json")

func TestReferenceTypename(t *testing.T) {
	schema := resources.LookupResource(schema.GroupVersionKind{
		Group:   "",
		Version: "v1",
		Kind:    "OneKind",
	})
	if schema == nil {
		t.Fatal("Couldn't find schema v1.OneKind")
	}

	tests := []struct {
		name     string
		path     []string
		expected string
	}{
		{
			// Kind is "Object"
			name:     "test1",
			path:     []string{},
			expected: "Object",
		},
		{
			// Reference is equal to pointed type "Object"
			name:     "test2",
			path:     []string{"field1"},
			expected: "Object",
		},
		{
			// Reference is equal to pointed type "string"
			name:     "test3",
			path:     []string{"field1", "primitive"},
			expected: "string",
		},
		{
			// Array of object of reference to string
			name:     "test4",
			path:     []string{"field2"},
			expected: "[]map[string]string",
		},
		{
			// Array of integer
			name:     "test5",
			path:     []string{"field1", "array"},
			expected: "[]integer",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			s, err := LookupSchemaForField(schema, tt.path)
			if err != nil {
				t.Fatalf("Invalid tt.path %v: %v", tt.path, err)
			}
			got := GetTypeName(s)
			if got != tt.expected {
				t.Errorf("Got %q, expected %q", got, tt.expected)
			}
		})
	}

}

相关信息

kubernetes 源码目录

相关文章

kubernetes explain 源码

kubernetes explain_test 源码

kubernetes field_lookup 源码

kubernetes field_lookup_test 源码

kubernetes fields_printer 源码

kubernetes fields_printer_builder 源码

kubernetes fields_printer_test 源码

kubernetes formatter 源码

kubernetes formatter_test 源码

kubernetes model_printer 源码

0  赞