Skip to content

Commit

Permalink
Merge pull request #2147 from shiftstack/dumpnode1only
Browse files Browse the repository at this point in the history
🐛 e2e: Only dump resources on node 1
  • Loading branch information
k8s-ci-robot committed Jul 18, 2024
2 parents 5aaceac + 60ce72d commit 82d7acf
Showing 1 changed file with 27 additions and 38 deletions.
65 changes: 27 additions & 38 deletions test/e2e/suites/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ limitations under the License.
package e2e

import (
"errors"
"os"
"testing"

Expand All @@ -31,20 +32,14 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"k8s.io/klog/v2"
"k8s.io/utils/ptr"
ctrl "sigs.k8s.io/controller-runtime"

"sigs.k8s.io/cluster-api-provider-openstack/test/e2e/shared"
)

var (
e2eCtx *shared.E2EContext
initialServers []servers.Server
initialNetworks []networks.Network
initialSecurityGroups []groups.SecGroup
initialLoadBalancers []loadbalancers.LoadBalancer
initialVolumes []volumes.Volume
err error
e2eCtx *shared.E2EContext
err error
)

func init() {
Expand All @@ -66,38 +61,50 @@ func TestE2E(t *testing.T) {

var _ = SynchronizedBeforeSuite(func() []byte {
data := shared.Node1BeforeSuite(e2eCtx)
return data
}, func(data []byte) {
shared.AllNodesBeforeSuite(e2eCtx, data)
initialServers, err = shared.DumpOpenStackServers(e2eCtx, servers.ListOpts{})

initialServers, err := shared.DumpOpenStackServers(e2eCtx, servers.ListOpts{})
Expect(err).NotTo(HaveOccurred())
initialNetworks, err = shared.DumpOpenStackNetworks(e2eCtx, networks.ListOpts{})
initialNetworks, err := shared.DumpOpenStackNetworks(e2eCtx, networks.ListOpts{})
Expect(err).NotTo(HaveOccurred())
initialSecurityGroups, err = shared.DumpOpenStackSecurityGroups(e2eCtx, groups.ListOpts{})
initialSecurityGroups, err := shared.DumpOpenStackSecurityGroups(e2eCtx, groups.ListOpts{})
Expect(err).NotTo(HaveOccurred())
initialLoadBalancers, err = shared.DumpOpenStackLoadBalancers(e2eCtx, loadbalancers.ListOpts{})
initialLoadBalancers, err := shared.DumpOpenStackLoadBalancers(e2eCtx, loadbalancers.ListOpts{})
Expect(err).NotTo(HaveOccurred())
initialVolumes, err = shared.DumpOpenStackVolumes(e2eCtx, volumes.ListOpts{})
initialVolumes, err := shared.DumpOpenStackVolumes(e2eCtx, volumes.ListOpts{})
Expect(err).NotTo(HaveOccurred())

DeferCleanup(func() error {
return errors.Join(
CheckResourceCleanup(shared.DumpOpenStackServers, servers.ListOpts{}, initialServers),
CheckResourceCleanup(shared.DumpOpenStackNetworks, networks.ListOpts{}, initialNetworks),
CheckResourceCleanup(shared.DumpOpenStackSecurityGroups, groups.ListOpts{}, initialSecurityGroups),
CheckResourceCleanup(shared.DumpOpenStackLoadBalancers, loadbalancers.ListOpts{}, initialLoadBalancers),
CheckResourceCleanup(shared.DumpOpenStackVolumes, volumes.ListOpts{}, initialVolumes),
)
})

return data
}, func(data []byte) {
shared.AllNodesBeforeSuite(e2eCtx, data)
})

// CheckResourceCleanup checks if all resources created during the test are cleaned up by comparing the resources
// before and after the test.
// The function f is used to list the resources of type T, whose list opts is of type L.
// The list of resources is then compared to the initialResources, using the ConsistOfIDs custom matcher.
func CheckResourceCleanup[T any, L any](f func(*shared.E2EContext, L) ([]T, error), l L, initialResources []T) *string {
func CheckResourceCleanup[T any, L any](f func(*shared.E2EContext, L) ([]T, error), l L, initialResources []T) error {
endResources, err := f(e2eCtx, l)
if err != nil {
return ptr.To(err.Error())
return err
}

matcher := ConsistOfIDs(initialResources)
success, err := matcher.Match(endResources)
if err != nil {
return ptr.To(err.Error())
return err
}
if !success {
return ptr.To(matcher.FailureMessage(endResources))
return errors.New(matcher.FailureMessage(endResources))
}

return nil
Expand All @@ -106,23 +113,5 @@ func CheckResourceCleanup[T any, L any](f func(*shared.E2EContext, L) ([]T, erro
var _ = SynchronizedAfterSuite(func() {
shared.AllNodesAfterSuite(e2eCtx)
}, func() {
failed := false
for _, error := range []*string{
CheckResourceCleanup(shared.DumpOpenStackServers, servers.ListOpts{}, initialServers),
CheckResourceCleanup(shared.DumpOpenStackNetworks, networks.ListOpts{}, initialNetworks),
CheckResourceCleanup(shared.DumpOpenStackSecurityGroups, groups.ListOpts{}, initialSecurityGroups),
CheckResourceCleanup(shared.DumpOpenStackLoadBalancers, loadbalancers.ListOpts{}, initialLoadBalancers),
CheckResourceCleanup(shared.DumpOpenStackVolumes, volumes.ListOpts{}, initialVolumes),
} {
if error != nil {
GinkgoWriter.Println(*error)
failed = true
}
}

shared.Node1AfterSuite(e2eCtx)

if failed {
Fail("Not all resources were cleaned up")
}
})

0 comments on commit 82d7acf

Please sign in to comment.