mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
install tests
This commit is contained in:
parent
e400a15f84
commit
d690ae9664
109
pkg/api/install/install_test.go
Normal file
109
pkg/api/install/install_test.go
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
/*
|
||||||
|
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 install
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
internal "k8s.io/kubernetes/pkg/api"
|
||||||
|
"k8s.io/kubernetes/pkg/api/latest"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestResourceVersioner(t *testing.T) {
|
||||||
|
pod := internal.Pod{ObjectMeta: internal.ObjectMeta{ResourceVersion: "10"}}
|
||||||
|
version, err := accessor.ResourceVersion(&pod)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if version != "10" {
|
||||||
|
t.Errorf("unexpected version %v", version)
|
||||||
|
}
|
||||||
|
|
||||||
|
podList := internal.PodList{ListMeta: internal.ListMeta{ResourceVersion: "10"}}
|
||||||
|
version, err = accessor.ResourceVersion(&podList)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if version != "10" {
|
||||||
|
t.Errorf("unexpected version %v", version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCodec(t *testing.T) {
|
||||||
|
pod := internal.Pod{}
|
||||||
|
data, err := latest.GroupOrDie("").Codec.Encode(&pod)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
other := internal.Pod{}
|
||||||
|
if err := json.Unmarshal(data, &other); err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if other.APIVersion != latest.GroupOrDie("").Version || other.Kind != "Pod" {
|
||||||
|
t.Errorf("unexpected unmarshalled object %#v", other)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestInterfacesFor(t *testing.T) {
|
||||||
|
if _, err := latest.GroupOrDie("").InterfacesFor(""); err == nil {
|
||||||
|
t.Fatalf("unexpected non-error: %v", err)
|
||||||
|
}
|
||||||
|
for i, version := range append([]string{latest.GroupOrDie("").Version}, latest.GroupOrDie("").Versions...) {
|
||||||
|
if vi, err := latest.GroupOrDie("").InterfacesFor(version); err != nil || vi == nil {
|
||||||
|
t.Fatalf("%d: unexpected result: %v", i, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRESTMapper(t *testing.T) {
|
||||||
|
if v, k, err := latest.GroupOrDie("").RESTMapper.VersionAndKindForResource("replicationcontrollers"); err != nil || v != "v1" || k != "ReplicationController" {
|
||||||
|
t.Errorf("unexpected version mapping: %s %s %v", v, k, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if m, err := latest.GroupOrDie("").RESTMapper.RESTMapping("PodTemplate", ""); err != nil || m.APIVersion != "v1" || m.Resource != "podtemplates" {
|
||||||
|
t.Errorf("unexpected version mapping: %#v %v", m, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, version := range latest.GroupOrDie("").Versions {
|
||||||
|
mapping, err := latest.GroupOrDie("").RESTMapper.RESTMapping("ReplicationController", version)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if mapping.Resource != "replicationControllers" && mapping.Resource != "replicationcontrollers" {
|
||||||
|
t.Errorf("incorrect resource name: %#v", mapping)
|
||||||
|
}
|
||||||
|
if mapping.APIVersion != version {
|
||||||
|
t.Errorf("incorrect version: %v", mapping)
|
||||||
|
}
|
||||||
|
|
||||||
|
interfaces, _ := latest.GroupOrDie("").InterfacesFor(version)
|
||||||
|
if mapping.Codec != interfaces.Codec {
|
||||||
|
t.Errorf("unexpected codec: %#v, expected: %#v", mapping, interfaces)
|
||||||
|
}
|
||||||
|
|
||||||
|
rc := &internal.ReplicationController{ObjectMeta: internal.ObjectMeta{Name: "foo"}}
|
||||||
|
name, err := mapping.MetadataAccessor.Name(rc)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if name != "foo" {
|
||||||
|
t.Errorf("unable to retrieve object meta with: %v", mapping.MetadataAccessor)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
110
pkg/expapi/install/install_test.go
Normal file
110
pkg/expapi/install/install_test.go
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
/*
|
||||||
|
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 install
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"k8s.io/kubernetes/pkg/api"
|
||||||
|
"k8s.io/kubernetes/pkg/api/latest"
|
||||||
|
"k8s.io/kubernetes/pkg/expapi"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestResourceVersioner(t *testing.T) {
|
||||||
|
daemonSet := expapi.DaemonSet{ObjectMeta: api.ObjectMeta{ResourceVersion: "10"}}
|
||||||
|
version, err := accessor.ResourceVersion(&daemonSet)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if version != "10" {
|
||||||
|
t.Errorf("unexpected version %v", version)
|
||||||
|
}
|
||||||
|
|
||||||
|
daemonSetList := expapi.DaemonSetList{ListMeta: api.ListMeta{ResourceVersion: "10"}}
|
||||||
|
version, err = accessor.ResourceVersion(&daemonSetList)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if version != "10" {
|
||||||
|
t.Errorf("unexpected version %v", version)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCodec(t *testing.T) {
|
||||||
|
daemonSet := expapi.DaemonSet{}
|
||||||
|
data, err := latest.GroupOrDie("experimental").Codec.Encode(&daemonSet)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
other := expapi.DaemonSet{}
|
||||||
|
if err := json.Unmarshal(data, &other); err != nil {
|
||||||
|
t.Fatalf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if other.APIVersion != latest.GroupOrDie("experimental").Version || other.Kind != "DaemonSet" {
|
||||||
|
t.Errorf("unexpected unmarshalled object %#v", other)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestInterfacesFor(t *testing.T) {
|
||||||
|
if _, err := latest.GroupOrDie("experimental").InterfacesFor(""); err == nil {
|
||||||
|
t.Fatalf("unexpected non-error: %v", err)
|
||||||
|
}
|
||||||
|
for i, version := range append([]string{latest.GroupOrDie("experimental").Version}, latest.GroupOrDie("experimental").Versions...) {
|
||||||
|
if vi, err := latest.GroupOrDie("experimental").InterfacesFor(version); err != nil || vi == nil {
|
||||||
|
t.Fatalf("%d: unexpected result: %v", i, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRESTMapper(t *testing.T) {
|
||||||
|
if v, k, err := latest.GroupOrDie("experimental").RESTMapper.VersionAndKindForResource("horizontalpodautoscalers"); err != nil || v != "v1" || k != "HorizontalPodAutoscaler" {
|
||||||
|
t.Errorf("unexpected version mapping: %s %s %v", v, k, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if m, err := latest.GroupOrDie("experimental").RESTMapper.RESTMapping("DaemonSet", ""); err != nil || m.APIVersion != "v1" || m.Resource != "daemonsets" {
|
||||||
|
t.Errorf("unexpected version mapping: %#v %v", m, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, version := range latest.GroupOrDie("experimental").Versions {
|
||||||
|
mapping, err := latest.GroupOrDie("experimental").RESTMapper.RESTMapping("HorizontalPodAutoscaler", version)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if mapping.Resource != "horizontalpodautoscalers" {
|
||||||
|
t.Errorf("incorrect resource name: %#v", mapping)
|
||||||
|
}
|
||||||
|
if mapping.APIVersion != version {
|
||||||
|
t.Errorf("incorrect version: %v", mapping)
|
||||||
|
}
|
||||||
|
|
||||||
|
interfaces, _ := latest.GroupOrDie("experimental").InterfacesFor(version)
|
||||||
|
if mapping.Codec != interfaces.Codec {
|
||||||
|
t.Errorf("unexpected codec: %#v, expected: %#v", mapping, interfaces)
|
||||||
|
}
|
||||||
|
|
||||||
|
rc := &expapi.HorizontalPodAutoscaler{ObjectMeta: api.ObjectMeta{Name: "foo"}}
|
||||||
|
name, err := mapping.MetadataAccessor.Name(rc)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if name != "foo" {
|
||||||
|
t.Errorf("unable to retrieve object meta with: %v", mapping.MetadataAccessor)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user