|
| 1 | +package capi |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + |
| 6 | + . "github.com/onsi/ginkgo/v2" |
| 7 | + . "github.com/onsi/gomega" |
| 8 | + |
| 9 | + configv1 "github.com/openshift/api/config/v1" |
| 10 | + "github.com/openshift/cluster-api-actuator-pkg/pkg/framework" |
| 11 | + "sigs.k8s.io/controller-runtime/pkg/client" |
| 12 | +) |
| 13 | + |
| 14 | +var ( |
| 15 | + ctx context.Context |
| 16 | +) |
| 17 | + |
| 18 | +var _ = Describe("Cluster API status values", framework.LabelCAPI, Ordered, func() { |
| 19 | + BeforeAll(func() { |
| 20 | + var err error |
| 21 | + cl, err = framework.LoadClient() |
| 22 | + Expect(err).ToNot(HaveOccurred(), "Failed to get Kubernetes client") |
| 23 | + ctx = context.TODO() |
| 24 | + oc, _ := framework.NewCLI() |
| 25 | + framework.SkipIfNotTechPreviewNoUpgrade(oc, cl) |
| 26 | + }) |
| 27 | + |
| 28 | + It("should have CoreClusterControllerAvailable condition", func() { |
| 29 | + // Fetch the ClusterOperator resource |
| 30 | + co := &configv1.ClusterOperator{} |
| 31 | + err := cl.Get(ctx, client.ObjectKey{Name: "cluster-api"}, co) |
| 32 | + Expect(err).ToNot(HaveOccurred(), "Failed to fetch cluster-api ClusterOperator") |
| 33 | + |
| 34 | + // Check if the status contains CoreClusterControllerAvailable |
| 35 | + found := false |
| 36 | + for _, cond := range co.Status.Conditions { |
| 37 | + if cond.Type == "CoreClusterControllerAvailable" && cond.Status == configv1.ConditionTrue { |
| 38 | + found = true |
| 39 | + break |
| 40 | + } |
| 41 | + } |
| 42 | + Expect(found).To(BeTrue(), "Expected CoreClusterControllerAvailable condition to be present and true") |
| 43 | + }) |
| 44 | +}) |
0 commit comments