kubernetesk8s.io/kubernetes/pkg/api/testapi Index | Files

package testapi

import "k8s.io/kubernetes/pkg/api/testapi"

Package testapi provides a helper for retrieving the KUBE_TEST_API environment variable.

Index

Functions

func GetCodecForObject

func GetCodecForObject(obj runtime.Object) (runtime.Codec, error)

Get codec based on runtime.Object

Types

type TestGroup

type TestGroup struct {
	// Name of the group
	Group string
	// Version of the group Group under test
	VersionUnderTest string
	// Group and Version. In most cases equals to Group + "/" + VersionUnverTest
	GroupVersionUnderTest string
}
var (
	Groups     = make(map[string]TestGroup)
	Default    TestGroup
	Extensions TestGroup
)

func (TestGroup) Codec

func (g TestGroup) Codec() runtime.Codec

Codec returns the codec for the API version to test against, as set by the KUBE_TEST_API env var.

func (TestGroup) Converter

func (g TestGroup) Converter() runtime.ObjectConvertor

Converter returns the api.Scheme for the API version to test against, as set by the KUBE_TEST_API env var.

func (TestGroup) GroupAndVersion

func (g TestGroup) GroupAndVersion() string

GroupAndVersion returns the API version to test against for a group, as set by the KUBE_TEST_API env var. Return value is in the form of "group/version".

func (TestGroup) MetadataAccessor

func (g TestGroup) MetadataAccessor() meta.MetadataAccessor

MetadataAccessor returns the MetadataAccessor for the API version to test against, as set by the KUBE_TEST_API env var.

func (TestGroup) RESTMapper

func (g TestGroup) RESTMapper() meta.RESTMapper

func (TestGroup) ResourcePath

func (g TestGroup) ResourcePath(resource, namespace, name string) string

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 (TestGroup) ResourcePathWithPrefix

func (g TestGroup) ResourcePathWithPrefix(prefix, resource, namespace, name string) string

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) SelfLink(resource, name string) string

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 (TestGroup) Version

func (g TestGroup) Version() string

Version returns the API version to test against, as set by the KUBE_TEST_API env var.

Source Files

testapi.go

Version
v1.1.3
Published
Dec 7, 2015
Platform
js/wasm
Imports
10 packages
Last checked
2 minutes ago

Tools for package owners.