Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend Server Tests to Cover ListEvents #370

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions internal/server/event_list_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
// SPDX-FileCopyrightText: 2023 SAP SE or an SAP affiliate company and IronCore contributors
// SPDX-License-Identifier: Apache-2.0

package server_test

import (
"time"

"github.com/digitalocean/go-libvirt"
irievent "github.com/ironcore-dev/ironcore/iri/apis/event/v1alpha1"
iri "github.com/ironcore-dev/ironcore/iri/apis/machine/v1alpha1"
irimeta "github.com/ironcore-dev/ironcore/iri/apis/meta/v1alpha1"
machinepoolletv1alpha1 "github.com/ironcore-dev/ironcore/poollet/machinepoollet/api/v1alpha1"
libvirtutils "github.com/ironcore-dev/libvirt-provider/internal/libvirt/utils"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
)

var _ = Describe("ListEvents", func() {
It("should correctly list events", func(ctx SpecContext) {
By("creating a machine")
createResp, err := machineClient.CreateMachine(ctx, &iri.CreateMachineRequest{
Machine: &iri.Machine{
Metadata: &irimeta.ObjectMetadata{
Labels: map[string]string{
"foo": "bar",
},
},
Spec: &iri.MachineSpec{
Power: iri.Power_POWER_ON,
Class: machineClassx3xlarge,
},
},
})
Expect(err).NotTo(HaveOccurred())
Expect(createResp).NotTo(BeNil())

DeferCleanup(func(ctx SpecContext) {
Eventually(func(g Gomega) bool {
_, err := machineClient.DeleteMachine(ctx, &iri.DeleteMachineRequest{MachineId: createResp.Machine.Metadata.Id})
g.Expect(err).To(SatisfyAny(
BeNil(),
MatchError(ContainSubstring("NotFound")),
))
_, err = libvirtConn.DomainLookupByUUID(libvirtutils.UUIDStringToBytes(createResp.Machine.Metadata.Id))
return libvirt.IsNotFound(err)
}).Should(BeTrue())
})
lukasfrank marked this conversation as resolved.
Show resolved Hide resolved

By("ensuring domain and domain XML is created for machine")
var domain libvirt.Domain
Eventually(func() error {
domain, err = libvirtConn.DomainLookupByUUID(libvirtutils.UUIDStringToBytes(createResp.Machine.Metadata.Id))
return err
}).Should(Succeed())
domainXMLData, err := libvirtConn.DomainGetXMLDesc(domain, 0)
Expect(err).NotTo(HaveOccurred())
Expect(domainXMLData).NotTo(BeEmpty())

By("listing the machine events with no filters")
resp, err := machineClient.ListEvents(ctx, &iri.ListEventsRequest{})
Expect(err).NotTo(HaveOccurred())

Expect(resp.Events).To(ContainElement(
HaveField("Spec", SatisfyAll(
HaveField("InvolvedObjectMeta.Id", Equal(createResp.Machine.Metadata.Id)),
HaveField("Reason", Equal("NoIgnitionData")),
HaveField("Message", Equal("Machine does not have ignition data")),
HaveField("Type", Equal(corev1.EventTypeWarning)),
)),
))

By("listing the machine events with matching label and time filters")
resp, err = machineClient.ListEvents(ctx, &iri.ListEventsRequest{Filter: &iri.EventFilter{
LabelSelector: map[string]string{"foo": "bar"},
EventsFromTime: time.Now().Add(-5 * time.Second).Unix(),
EventsToTime: time.Now().Unix(),
}})

Expect(err).NotTo(HaveOccurred())

Expect(resp.Events).To(ContainElement(
HaveField("Spec", SatisfyAll(
HaveField("InvolvedObjectMeta.Id", Equal(createResp.Machine.Metadata.Id)),
HaveField("Reason", Equal("NoIgnitionData")),
HaveField("Message", Equal("Machine does not have ignition data")),
HaveField("Type", Equal(corev1.EventTypeWarning)),
)),
))

By("listing the machine events with non matching label filter")
resp, err = machineClient.ListEvents(ctx, &iri.ListEventsRequest{Filter: &iri.EventFilter{
LabelSelector: map[string]string{"incorrect": "label"},
EventsFromTime: time.Now().Add(-5 * time.Second).Unix(),
EventsToTime: time.Now().Unix(),
}})
Expect(err).NotTo(HaveOccurred())

Expect(resp.Events).To(BeEmpty())

By("listing the machine events with matching label filter and non matching time filter")
resp, err = machineClient.ListEvents(ctx, &iri.ListEventsRequest{Filter: &iri.EventFilter{
LabelSelector: map[string]string{machinepoolletv1alpha1.MachineUIDLabel: "foobar"},
EventsFromTime: time.Now().Add(-10 * time.Minute).Unix(),
EventsToTime: time.Now().Add(-5 * time.Minute).Unix(),
}})
Expect(err).NotTo(HaveOccurred())

Expect(resp.Events).To(BeEmpty())

By("listing the machine events with expired TTL")
Eventually(func(g Gomega) []*irievent.Event {
resp, err := machineClient.ListEvents(ctx, &iri.ListEventsRequest{})
g.Expect(err).NotTo(HaveOccurred())
return resp.Events
}).Should(BeEmpty())
})
})
9 changes: 9 additions & 0 deletions internal/server/server_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/ironcore-dev/ironcore/iri/remote/machine"
"github.com/ironcore-dev/libvirt-provider/api"
"github.com/ironcore-dev/libvirt-provider/cmd/libvirt-provider/app"
"github.com/ironcore-dev/libvirt-provider/internal/event/machineevent"
"github.com/ironcore-dev/libvirt-provider/internal/networkinterfaceplugin"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand All @@ -43,6 +44,9 @@ const (
streamingAddress = "127.0.0.1:20251"
healthCheckAddress = "127.0.0.1:20252"
metricsAddress = "" // disable metrics server for integration tests
machineEventMaxEvents = 10
machineEventTTL = 10 * time.Second
machineEventResyncInterval = 2 * time.Second
)

var (
Expand Down Expand Up @@ -127,6 +131,11 @@ var _ = BeforeSuite(func() {
ResyncIntervalGarbageCollector: resyncGarbageCollectorInterval,
ResyncIntervalVolumeSize: resyncVolumeSizeInterval,
GuestAgent: app.GuestAgentOption(api.GuestAgentNone),
MachineEventStore: machineevent.EventStoreOptions{
MachineEventMaxEvents: machineEventMaxEvents,
MachineEventTTL: machineEventTTL,
MachineEventResyncInterval: machineEventResyncInterval,
},
}

srvCtx, cancel := context.WithCancel(context.Background())
Expand Down
Loading