mirror of https://github.com/k3s-io/k3s
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
/*
|
|
Copyright 2015 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 testclient
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/errors"
|
|
"k8s.io/kubernetes/pkg/api/latest"
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
"k8s.io/kubernetes/pkg/runtime"
|
|
)
|
|
|
|
func TestNewClient(t *testing.T) {
|
|
o := NewObjects(api.Scheme, api.Scheme)
|
|
if err := AddObjectsFromPath("../../../examples/guestbook/frontend-service.yaml", o, api.Scheme); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
client := &Fake{ReactFn: ObjectReaction(o, latest.RESTMapper)}
|
|
list, err := client.Services("test").List(labels.Everything())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(list.Items) != 1 {
|
|
t.Fatalf("unexpected list %#v", list)
|
|
}
|
|
|
|
// When list is invoked a second time, the same results are returned.
|
|
list, err = client.Services("test").List(labels.Everything())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(list.Items) != 1 {
|
|
t.Fatalf("unexpected list %#v", list)
|
|
}
|
|
t.Logf("list: %#v", list)
|
|
}
|
|
|
|
func TestErrors(t *testing.T) {
|
|
o := NewObjects(api.Scheme, api.Scheme)
|
|
o.Add(&api.List{
|
|
Items: []runtime.Object{
|
|
// This first call to List will return this error
|
|
&(errors.NewNotFound("ServiceList", "").(*errors.StatusError).ErrStatus),
|
|
// The second call to List will return this error
|
|
&(errors.NewForbidden("ServiceList", "", nil).(*errors.StatusError).ErrStatus),
|
|
},
|
|
})
|
|
client := &Fake{ReactFn: ObjectReaction(o, latest.RESTMapper)}
|
|
_, err := client.Services("test").List(labels.Everything())
|
|
if !errors.IsNotFound(err) {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
t.Logf("error: %#v", err.(*errors.StatusError).Status())
|
|
_, err = client.Services("test").List(labels.Everything())
|
|
if !errors.IsForbidden(err) {
|
|
t.Fatalf("unexpected error: %v", err)
|
|
}
|
|
}
|