Add CRUD tests for new Event API verbs

This commit is contained in:
Chelsey Chen 2020-06-29 10:51:16 -04:00
parent 1cbda2493d
commit e5bba7f512
2 changed files with 190 additions and 1 deletions

View File

@ -7,11 +7,24 @@ load(
go_library(
name = "go_default_library",
srcs = ["imports.go"],
srcs = [
"events.go",
"imports.go",
],
importpath = "k8s.io/kubernetes/test/e2e/instrumentation",
deps = [
"//staging/src/k8s.io/api/core/v1:go_default_library",
"//staging/src/k8s.io/api/events/v1beta1:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/api/equality:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/types:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/diff:go_default_library",
"//staging/src/k8s.io/client-go/kubernetes/typed/events/v1beta1:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/instrumentation/common:go_default_library",
"//test/e2e/instrumentation/logging:go_default_library",
"//test/e2e/instrumentation/monitoring:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
],
)

View File

@ -0,0 +1,176 @@
/*
Copyright 2020 The Kubernetes Authors.
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 instrumentation
import (
"context"
"encoding/json"
"fmt"
"time"
"k8s.io/api/core/v1"
eventsv1beta1 "k8s.io/api/events/v1beta1"
apiequality "k8s.io/apimachinery/pkg/api/equality"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/diff"
typedeventsv1beta1 "k8s.io/client-go/kubernetes/typed/events/v1beta1"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/instrumentation/common"
"github.com/onsi/ginkgo"
"k8s.io/apimachinery/pkg/types"
)
func newTestEvent(namespace, name, label string) *eventsv1beta1.Event {
someTime := metav1.MicroTime{Time: time.Unix(1505828956, 0)}
return &eventsv1beta1.Event{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: map[string]string{
label: "true",
},
},
Regarding: v1.ObjectReference{
Namespace: namespace,
},
EventTime: someTime,
Note: "This is " + name,
Action: "Do",
Reason: "Test",
Type: "Normal",
ReportingController: "test-controller",
ReportingInstance: "test-node",
}
}
func eventExistsInList(client typedeventsv1beta1.EventInterface, namespace, name string) bool {
eventsList, err := client.List(context.TODO(), metav1.ListOptions{
LabelSelector: "testevent-constant=true",
})
framework.ExpectNoError(err, "failed to list events")
for _, val := range eventsList.Items {
if val.ObjectMeta.Name == name && val.ObjectMeta.Namespace == namespace {
return true
}
}
return false
}
var _ = common.SIGDescribe("Events API", func() {
f := framework.NewDefaultFramework("events")
var client typedeventsv1beta1.EventInterface
var clientAllNamespaces typedeventsv1beta1.EventInterface
ginkgo.BeforeEach(func() {
client = f.ClientSet.EventsV1beta1().Events(f.Namespace.Name)
clientAllNamespaces = f.ClientSet.EventsV1beta1().Events(metav1.NamespaceAll)
})
/*
Release : v1.19
Testname: Event resource lifecycle
Description: Create an event, the event MUST exist.
The event is patched with a new note, the check MUST have the update note.
The event is deleted and MUST NOT show up when listing all events.
*/
ginkgo.It("should ensure that an event can be fetched, patched, deleted, and listed", func() {
eventName := "event-test"
ginkgo.By("creating a test event")
_, err := client.Create(context.TODO(), newTestEvent(f.Namespace.Name, eventName, "testevent-constant"), metav1.CreateOptions{})
framework.ExpectNoError(err, "failed to create test event")
ginkgo.By("listing events in all namespaces")
foundCreatedEvent := eventExistsInList(clientAllNamespaces, f.Namespace.Name, eventName)
framework.ExpectEqual(foundCreatedEvent, true, "failed to find test event in list with cluster scope")
ginkgo.By("listing events in test namespace")
foundCreatedEvent = eventExistsInList(client, f.Namespace.Name, eventName)
framework.ExpectEqual(foundCreatedEvent, true, "failed to find test event in list with namespace scope")
ginkgo.By("getting the test event")
testEvent, err := client.Get(context.TODO(), eventName, metav1.GetOptions{})
framework.ExpectNoError(err, "failed to get test event")
ginkgo.By("patching the test event")
eventPatchNote := "This is a test event - patched"
eventPatch, err := json.Marshal(map[string]interface{}{
"note": eventPatchNote,
})
framework.ExpectNoError(err, "failed to marshal the patch JSON payload")
_, err = client.Patch(context.TODO(), eventName, types.StrategicMergePatchType, []byte(eventPatch), metav1.PatchOptions{})
framework.ExpectNoError(err, "failed to patch the test event")
ginkgo.By("getting the test event")
event, err := client.Get(context.TODO(), eventName, metav1.GetOptions{})
framework.ExpectNoError(err, "failed to get test event")
// clear ResourceVersion and ManagedFields which are set by control-plane
event.ObjectMeta.ResourceVersion = ""
testEvent.ObjectMeta.ResourceVersion = ""
event.ObjectMeta.ManagedFields = nil
testEvent.ObjectMeta.ManagedFields = nil
testEvent.Note = eventPatchNote
if !apiequality.Semantic.DeepEqual(testEvent, event) {
framework.Failf("test event wasn't properly patched: %v", diff.ObjectReflectDiff(testEvent, event))
}
ginkgo.By("deleting the test event")
err = client.Delete(context.TODO(), eventName, metav1.DeleteOptions{})
framework.ExpectNoError(err, "failed to delete the test event")
ginkgo.By("listing events in all namespaces")
foundCreatedEvent = eventExistsInList(clientAllNamespaces, f.Namespace.Name, eventName)
framework.ExpectEqual(foundCreatedEvent, false, "should not have found test event after deletion")
ginkgo.By("listing events in test namespace")
foundCreatedEvent = eventExistsInList(client, f.Namespace.Name, eventName)
framework.ExpectEqual(foundCreatedEvent, false, "should not have found test event after deletion")
})
ginkgo.It("should delete a collection of events", func() {
eventNames := []string{"test-event-1", "test-event-2", "test-event-3"}
ginkgo.By("Create set of events")
for _, eventName := range eventNames {
_, err := client.Create(context.TODO(), newTestEvent(f.Namespace.Name, eventName, "testevent-set"), metav1.CreateOptions{})
framework.ExpectNoError(err, "failed to create event")
}
ginkgo.By("get a list of Events with a label in the current namespace")
eventList, err := client.List(context.TODO(), metav1.ListOptions{
LabelSelector: "testevent-set=true",
})
framework.ExpectNoError(err, "failed to get a list of events")
framework.ExpectEqual(len(eventList.Items), len(eventNames), fmt.Sprintf("unexpected event list: %#v", eventList))
ginkgo.By("delete a list of events")
framework.Logf("requesting DeleteCollection of events")
err = client.DeleteCollection(context.TODO(), metav1.DeleteOptions{}, metav1.ListOptions{
LabelSelector: "testevent-set=true",
})
framework.ExpectNoError(err, "failed to delete the test event")
ginkgo.By("check that the list of events matches the requested quantity")
eventList, err = client.List(context.TODO(), metav1.ListOptions{
LabelSelector: "testevent-set=true",
})
framework.ExpectNoError(err, "failed to get a list of events")
framework.ExpectEqual(len(eventList.Items), 0, fmt.Sprintf("unexpected event list: %#v", eventList))
})
})