mirror of https://github.com/k3s-io/k3s
227 lines
5.9 KiB
Go
227 lines
5.9 KiB
Go
/*
|
|
Copyright 2014 Google Inc. 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 event
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/testapi"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/registry/registrytest"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/watch"
|
|
)
|
|
|
|
type testRegistry struct {
|
|
*registrytest.GenericRegistry
|
|
}
|
|
|
|
func NewTestREST() (testRegistry, *REST) {
|
|
reg := testRegistry{registrytest.NewGeneric(nil)}
|
|
return reg, NewREST(reg)
|
|
}
|
|
|
|
func TestRESTCreate(t *testing.T) {
|
|
_, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo"},
|
|
Reason: "forTesting",
|
|
}
|
|
c, err := rest.Create(api.NewContext(), eventA)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
if e, a := eventA, (<-c).Object; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
}
|
|
|
|
func TestRESTDelete(t *testing.T) {
|
|
_, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo"},
|
|
Reason: "forTesting",
|
|
}
|
|
c, err := rest.Create(api.NewContext(), eventA)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
<-c
|
|
c, err = rest.Delete(api.NewContext(), eventA.Name)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
if stat := (<-c).Object.(*api.Status); stat.Status != api.StatusSuccess {
|
|
t.Errorf("unexpected status: %v", stat)
|
|
}
|
|
}
|
|
|
|
func TestRESTGet(t *testing.T) {
|
|
_, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo"},
|
|
Reason: "forTesting",
|
|
}
|
|
c, err := rest.Create(api.NewContext(), eventA)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
<-c
|
|
got, err := rest.Get(api.NewContext(), eventA.Name)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
if e, a := eventA, got; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
}
|
|
|
|
func TestRESTgetAttrs(t *testing.T) {
|
|
_, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
InvolvedObject: api.ObjectReference{
|
|
Kind: "Pod",
|
|
Name: "foo",
|
|
UID: "long uid string",
|
|
APIVersion: testapi.Version(),
|
|
ResourceVersion: "0",
|
|
FieldPath: "",
|
|
},
|
|
Status: "tested",
|
|
Reason: "forTesting",
|
|
}
|
|
label, field, err := rest.getAttrs(eventA)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
if e, a := label, (labels.Set{}); !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
expect := labels.Set{
|
|
"involvedObject.kind": "Pod",
|
|
"involvedObject.name": "foo",
|
|
"involvedObject.uid": "long uid string",
|
|
"involvedObject.apiVersion": testapi.Version(),
|
|
"involvedObject.resourceVersion": "0",
|
|
"involvedObject.fieldPath": "",
|
|
"status": "tested",
|
|
"reason": "forTesting",
|
|
}
|
|
if e, a := expect, field; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
}
|
|
|
|
func TestRESTUpdate(t *testing.T) {
|
|
_, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
ObjectMeta: api.ObjectMeta{Name: "foo"},
|
|
Reason: "forTesting",
|
|
}
|
|
c, err := rest.Create(api.NewContext(), eventA)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
<-c
|
|
_, err = rest.Update(api.NewContext(), eventA)
|
|
if err == nil {
|
|
t.Errorf("unexpected non-error")
|
|
}
|
|
}
|
|
|
|
func TestRESTList(t *testing.T) {
|
|
reg, rest := NewTestREST()
|
|
eventA := &api.Event{
|
|
InvolvedObject: api.ObjectReference{
|
|
Kind: "Pod",
|
|
Name: "foo",
|
|
UID: "long uid string",
|
|
APIVersion: testapi.Version(),
|
|
ResourceVersion: "0",
|
|
FieldPath: "",
|
|
},
|
|
Status: "tested",
|
|
Reason: "forTesting",
|
|
}
|
|
eventB := &api.Event{
|
|
InvolvedObject: api.ObjectReference{
|
|
Kind: "Pod",
|
|
Name: "bar",
|
|
UID: "other long uid string",
|
|
APIVersion: testapi.Version(),
|
|
ResourceVersion: "0",
|
|
FieldPath: "",
|
|
},
|
|
Status: "tested",
|
|
Reason: "forTesting",
|
|
}
|
|
eventC := &api.Event{
|
|
InvolvedObject: api.ObjectReference{
|
|
Kind: "Pod",
|
|
Name: "baz",
|
|
UID: "yet another long uid string",
|
|
APIVersion: testapi.Version(),
|
|
ResourceVersion: "0",
|
|
FieldPath: "",
|
|
},
|
|
Status: "untested",
|
|
Reason: "forTesting",
|
|
}
|
|
reg.ObjectList = &api.EventList{
|
|
Items: []api.Event{*eventA, *eventB, *eventC},
|
|
}
|
|
got, err := rest.List(api.NewContext(), labels.Everything(), labels.Set{"status": "tested"}.AsSelector())
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
expect := &api.EventList{
|
|
Items: []api.Event{*eventA, *eventB},
|
|
}
|
|
if e, a := expect, got; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
}
|
|
|
|
func TestRESTWatch(t *testing.T) {
|
|
eventA := &api.Event{
|
|
InvolvedObject: api.ObjectReference{
|
|
Kind: "Pod",
|
|
Name: "foo",
|
|
UID: "long uid string",
|
|
APIVersion: testapi.Version(),
|
|
ResourceVersion: "0",
|
|
FieldPath: "",
|
|
},
|
|
Status: "tested",
|
|
Reason: "forTesting",
|
|
}
|
|
reg, rest := NewTestREST()
|
|
wi, err := rest.Watch(api.NewContext(), labels.Everything(), labels.Everything(), 0)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected error %v", err)
|
|
}
|
|
go func() {
|
|
reg.Mux.Action(watch.Added, eventA)
|
|
}()
|
|
got := <-wi.ResultChan()
|
|
if e, a := eventA, got.Object; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("diff: %s", util.ObjectDiff(e, a))
|
|
}
|
|
}
|