mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			210 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			210 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2014 The Kubernetes Authors All rights reserved.
 | |
| 
 | |
| 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 testapi provides a helper for retrieving the KUBE_TEST_API environment variable.
 | |
| package testapi
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 
 | |
| 	"k8s.io/kubernetes/pkg/api"
 | |
| 	_ "k8s.io/kubernetes/pkg/api/install"
 | |
| 	_ "k8s.io/kubernetes/pkg/apis/extensions/install"
 | |
| 	_ "k8s.io/kubernetes/pkg/apis/metrics/install"
 | |
| 
 | |
| 	"k8s.io/kubernetes/pkg/api/latest"
 | |
| 	"k8s.io/kubernetes/pkg/api/meta"
 | |
| 	"k8s.io/kubernetes/pkg/api/unversioned"
 | |
| 	"k8s.io/kubernetes/pkg/apis/extensions"
 | |
| 	"k8s.io/kubernetes/pkg/runtime"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	Groups     = make(map[string]TestGroup)
 | |
| 	Default    TestGroup
 | |
| 	Extensions TestGroup
 | |
| )
 | |
| 
 | |
| type TestGroup struct {
 | |
| 	externalGroupVersion unversioned.GroupVersion
 | |
| 	internalGroupVersion unversioned.GroupVersion
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	kubeTestAPI := os.Getenv("KUBE_TEST_API")
 | |
| 	if kubeTestAPI != "" {
 | |
| 		testGroupVersions := strings.Split(kubeTestAPI, ",")
 | |
| 		for _, gvString := range testGroupVersions {
 | |
| 			groupVersion, err := unversioned.ParseGroupVersion(gvString)
 | |
| 			if err != nil {
 | |
| 				panic(fmt.Sprintf("Error parsing groupversion %v: %v", gvString, err))
 | |
| 			}
 | |
| 
 | |
| 			Groups[groupVersion.Group] = TestGroup{
 | |
| 				externalGroupVersion: groupVersion,
 | |
| 				internalGroupVersion: unversioned.GroupVersion{Group: groupVersion.Group},
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if _, ok := Groups[api.GroupName]; !ok {
 | |
| 		Groups[api.GroupName] = TestGroup{
 | |
| 			externalGroupVersion: unversioned.GroupVersion{Group: api.GroupName, Version: latest.GroupOrDie(api.GroupName).GroupVersion.Version},
 | |
| 			internalGroupVersion: api.SchemeGroupVersion,
 | |
| 		}
 | |
| 	}
 | |
| 	if _, ok := Groups[extensions.GroupName]; !ok {
 | |
| 		Groups[extensions.GroupName] = TestGroup{
 | |
| 			externalGroupVersion: unversioned.GroupVersion{Group: extensions.GroupName, Version: latest.GroupOrDie(extensions.GroupName).GroupVersion.Version},
 | |
| 			internalGroupVersion: extensions.SchemeGroupVersion,
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	Default = Groups[api.GroupName]
 | |
| 	Extensions = Groups[extensions.GroupName]
 | |
| }
 | |
| 
 | |
| func (g TestGroup) GroupVersion() *unversioned.GroupVersion {
 | |
| 	copyOfGroupVersion := g.externalGroupVersion
 | |
| 	return ©OfGroupVersion
 | |
| }
 | |
| 
 | |
| // InternalGroupVersion returns the group,version used to identify the internal
 | |
| // types for this API
 | |
| func (g TestGroup) InternalGroupVersion() unversioned.GroupVersion {
 | |
| 	return g.internalGroupVersion
 | |
| }
 | |
| 
 | |
| // Codec returns the codec for the API version to test against, as set by the
 | |
| // KUBE_TEST_API env var.
 | |
| func (g TestGroup) Codec() runtime.Codec {
 | |
| 	// TODO: caesarxuchao: Restructure the body once we have a central `latest`.
 | |
| 	interfaces, err := latest.GroupOrDie(g.externalGroupVersion.Group).InterfacesFor(g.externalGroupVersion)
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return interfaces.Codec
 | |
| }
 | |
| 
 | |
| // Converter returns the api.Scheme for the API version to test against, as set by the
 | |
| // KUBE_TEST_API env var.
 | |
| func (g TestGroup) Converter() runtime.ObjectConvertor {
 | |
| 	interfaces, err := latest.GroupOrDie(g.externalGroupVersion.Group).InterfacesFor(g.externalGroupVersion)
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return interfaces.ObjectConvertor
 | |
| }
 | |
| 
 | |
| // MetadataAccessor returns the MetadataAccessor for the API version to test against,
 | |
| // as set by the KUBE_TEST_API env var.
 | |
| func (g TestGroup) MetadataAccessor() meta.MetadataAccessor {
 | |
| 	interfaces, err := latest.GroupOrDie(g.externalGroupVersion.Group).InterfacesFor(g.externalGroupVersion)
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return interfaces.MetadataAccessor
 | |
| }
 | |
| 
 | |
| // SelfLink returns a self link that will appear to be for the version Version().
 | |
| // 'resource' should be the resource path, e.g. "pods" for the Pod type. 'name' should be
 | |
| // empty for lists.
 | |
| func (g TestGroup) SelfLink(resource, name string) string {
 | |
| 	if g.externalGroupVersion.Group == api.GroupName {
 | |
| 		if name == "" {
 | |
| 			return fmt.Sprintf("/api/%s/%s", g.externalGroupVersion.Version, resource)
 | |
| 		}
 | |
| 		return fmt.Sprintf("/api/%s/%s/%s", g.externalGroupVersion.Version, resource, name)
 | |
| 	} else {
 | |
| 		// TODO: will need a /apis prefix once we have proper multi-group
 | |
| 		// support
 | |
| 		if name == "" {
 | |
| 			return fmt.Sprintf("/apis/%s/%s/%s", g.externalGroupVersion.Group, g.externalGroupVersion.Version, resource)
 | |
| 		}
 | |
| 		return fmt.Sprintf("/apis/%s/%s/%s/%s", g.externalGroupVersion.Group, g.externalGroupVersion.Version, resource, name)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Returns the appropriate path for the given prefix (watch, proxy, redirect, etc), resource, namespace and name.
 | |
| // For ex, this is of the form:
 | |
| // /api/v1/watch/namespaces/foo/pods/pod0 for v1.
 | |
| func (g TestGroup) ResourcePathWithPrefix(prefix, resource, namespace, name string) string {
 | |
| 	var path string
 | |
| 	if g.externalGroupVersion.Group == api.GroupName {
 | |
| 		path = "/api/" + g.externalGroupVersion.Version
 | |
| 	} else {
 | |
| 		// TODO: switch back once we have proper multiple group support
 | |
| 		// path = "/apis/" + g.Group + "/" + Version(group...)
 | |
| 		path = "/apis/" + g.externalGroupVersion.Group + "/" + g.externalGroupVersion.Version
 | |
| 	}
 | |
| 
 | |
| 	if prefix != "" {
 | |
| 		path = path + "/" + prefix
 | |
| 	}
 | |
| 	if namespace != "" {
 | |
| 		path = path + "/namespaces/" + namespace
 | |
| 	}
 | |
| 	// Resource names are lower case.
 | |
| 	resource = strings.ToLower(resource)
 | |
| 	if resource != "" {
 | |
| 		path = path + "/" + resource
 | |
| 	}
 | |
| 	if name != "" {
 | |
| 		path = path + "/" + name
 | |
| 	}
 | |
| 	return path
 | |
| }
 | |
| 
 | |
| // Returns the appropriate path for the given resource, namespace and name.
 | |
| // For example, this is of the form:
 | |
| // /api/v1/namespaces/foo/pods/pod0 for v1.
 | |
| func (g TestGroup) ResourcePath(resource, namespace, name string) string {
 | |
| 	return g.ResourcePathWithPrefix("", resource, namespace, name)
 | |
| }
 | |
| 
 | |
| func (g TestGroup) RESTMapper() meta.RESTMapper {
 | |
| 	return latest.GroupOrDie(g.externalGroupVersion.Group).RESTMapper
 | |
| }
 | |
| 
 | |
| // Get codec based on runtime.Object
 | |
| func GetCodecForObject(obj runtime.Object) (runtime.Codec, error) {
 | |
| 	kind, err := api.Scheme.ObjectKind(obj)
 | |
| 	if err != nil {
 | |
| 		return nil, fmt.Errorf("unexpected encoding error: %v", err)
 | |
| 	}
 | |
| 
 | |
| 	for _, group := range Groups {
 | |
| 		if group.GroupVersion().Group != kind.Group {
 | |
| 			continue
 | |
| 		}
 | |
| 
 | |
| 		if api.Scheme.Recognizes(kind) {
 | |
| 			return group.Codec(), nil
 | |
| 		}
 | |
| 	}
 | |
| 	// Codec used for unversioned types
 | |
| 	if api.Scheme.Recognizes(kind) {
 | |
| 		return api.Codec, nil
 | |
| 	}
 | |
| 	return nil, fmt.Errorf("unexpected kind: %v", kind)
 | |
| }
 | |
| 
 | |
| func NewTestGroup(external, internal unversioned.GroupVersion) TestGroup {
 | |
| 	return TestGroup{external, internal}
 | |
| }
 |