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

✨ Add tests for hcloud remediation and hetzner baremetal remediation controller #1000

Merged
merged 1 commit into from
Oct 15, 2023
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
11 changes: 11 additions & 0 deletions controllers/controllers_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,17 @@ var _ = BeforeSuite(func() {
HCloudClientFactory: testEnv.HCloudClientFactory,
}).SetupWithManager(ctx, testEnv.Manager, controller.Options{})).To(Succeed())

Expect((&HCloudRemediationReconciler{
Client: testEnv.Manager.GetClient(),
APIReader: testEnv.Manager.GetAPIReader(),
RateLimitWaitTime: 5 * time.Minute,
HCloudClientFactory: testEnv.HCloudClientFactory,
}).SetupWithManager(ctx, testEnv.Manager, controller.Options{})).To(Succeed())

Expect((&HetznerBareMetalRemediationReconciler{
Client: testEnv.Manager.GetClient(),
}).SetupWithManager(ctx, testEnv.Manager, controller.Options{})).To(Succeed())

go func() {
defer GinkgoRecover()
Expect(testEnv.StartManager(ctx)).To(Succeed())
Expand Down
4 changes: 2 additions & 2 deletions controllers/hcloudremediation_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (r *HCloudRemediationReconciler) Reconcile(ctx context.Context, req reconci
secretManager := secretutil.NewSecretManager(log, r.Client, r.APIReader)
hcloudToken, _, err := getAndValidateHCloudToken(ctx, req.Namespace, hetznerCluster, secretManager)
if err != nil {
return hcloudTokenErrorResult(ctx, err, hcloudMachine, infrav1.HCloudTokenAvailableCondition, r.Client)
return hcloudTokenErrorResult(ctx, err, hcloudRemediation, infrav1.HCloudTokenAvailableCondition, r.Client)
}

hcc := r.HCloudClientFactory.NewClient(hcloudToken)
Expand All @@ -150,7 +150,7 @@ func (r *HCloudRemediationReconciler) Reconcile(ctx context.Context, req reconci
return reconcile.Result{}, fmt.Errorf("failed to create scope: %w", err)
}

conditions.MarkTrue(hcloudMachine, infrav1.HCloudTokenAvailableCondition)
conditions.MarkTrue(hcloudRemediation, infrav1.HCloudTokenAvailableCondition)

// Always close the scope when exiting this function so we can persist any HCloudRemediation changes.
defer func() {
Expand Down
286 changes: 286 additions & 0 deletions controllers/hcloudremediation_controller_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,286 @@
/*
Copyright 2023 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 controllers

import (
"time"

"github.com/hetznercloud/hcloud-go/v2/hcloud"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/ptr"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
"sigs.k8s.io/cluster-api/util/patch"
"sigs.k8s.io/controller-runtime/pkg/client"

infrav1 "github.com/syself/cluster-api-provider-hetzner/api/v1beta1"
hcloudutil "github.com/syself/cluster-api-provider-hetzner/pkg/services/hcloud/util"
"github.com/syself/cluster-api-provider-hetzner/pkg/utils"
)

var _ = Describe("HCloudRemediationReconciler", func() {
var (
hcloudRemediation *infrav1.HCloudRemediation
hcloudMachine *infrav1.HCloudMachine
hetznerCluster *infrav1.HetznerCluster

capiMachine *clusterv1.Machine
capiCluster *clusterv1.Cluster

hetznerSecret *corev1.Secret
bootstrapSecret *corev1.Secret

testNs *corev1.Namespace

hcloudRemediationkey client.ObjectKey
capiMachineKey client.ObjectKey
hcloudMachineKey client.ObjectKey
)

BeforeEach(func() {
var err error
testNs, err = testEnv.CreateNamespace(ctx, "hcloudmachinetemplate-reconciler")
Expect(err).NotTo(HaveOccurred())

hetznerSecret = getDefaultHetznerSecret(testNs.Name)
Expect(testEnv.Create(ctx, hetznerSecret)).To(Succeed())

bootstrapSecret = getDefaultBootstrapSecret(testNs.Name)
Expect(testEnv.Create(ctx, bootstrapSecret)).To(Succeed())

capiCluster = &clusterv1.Cluster{
ObjectMeta: metav1.ObjectMeta{
GenerateName: "test1-",
Namespace: testNs.Name,
Finalizers: []string{clusterv1.ClusterFinalizer},
},
Spec: clusterv1.ClusterSpec{
InfrastructureRef: &corev1.ObjectReference{
APIVersion: "infrastructure.cluster.x-k8s.io/v1beta1",
Kind: "HetznerCluster",
Name: "hetzner-test1",
Namespace: testNs.Name,
},
},
}
Expect(testEnv.Create(ctx, capiCluster)).To(Succeed())

hcloudMachineName := utils.GenerateName(nil, "hcloud-machine-")
capiMachineName := utils.GenerateName(nil, "capi-machine-")

capiMachine = &clusterv1.Machine{
ObjectMeta: metav1.ObjectMeta{
Name: capiMachineName,
Namespace: testNs.Name,
Finalizers: []string{clusterv1.MachineFinalizer},
Labels: map[string]string{
clusterv1.ClusterNameLabel: capiCluster.Name,
},
},
Spec: clusterv1.MachineSpec{
ClusterName: capiCluster.Name,
InfrastructureRef: corev1.ObjectReference{
APIVersion: "infrastructure.cluster.x-k8s.io/v1beta1",
Kind: "HCloudMachine",
Name: hcloudMachineName,
Namespace: testNs.Name,
},
FailureDomain: &defaultFailureDomain,
Bootstrap: clusterv1.Bootstrap{
DataSecretName: ptr.To("bootstrap-secret"),
},
},
}
Expect(testEnv.Create(ctx, capiMachine)).To(Succeed())

capiMachineKey = client.ObjectKey{Name: capiMachineName, Namespace: testNs.Name}

hetznerCluster = &infrav1.HetznerCluster{
ObjectMeta: metav1.ObjectMeta{
Name: "hetzner-test1",
Namespace: testNs.Name,
OwnerReferences: []metav1.OwnerReference{
{
APIVersion: clusterv1.GroupVersion.String(),
Kind: "Cluster",
Name: capiCluster.Name,
UID: capiCluster.UID,
},
},
},
Spec: getDefaultHetznerClusterSpec(),
}
Expect(testEnv.Create(ctx, hetznerCluster)).To(Succeed())

hcloudMachine = &infrav1.HCloudMachine{
ObjectMeta: metav1.ObjectMeta{
Name: hcloudMachineName,
Namespace: testNs.Name,
Labels: map[string]string{
clusterv1.ClusterNameLabel: capiCluster.Name,
clusterv1.MachineControlPlaneNameLabel: "",
},
OwnerReferences: []metav1.OwnerReference{
{
APIVersion: clusterv1.GroupVersion.String(),
Kind: "Machine",
Name: capiMachine.Name,
UID: capiMachine.UID,
},
},
},
Spec: infrav1.HCloudMachineSpec{
ImageName: "fedora-control-plane",
Type: "cpx31",
PlacementGroupName: &defaultPlacementGroupName,
},
}
Expect(testEnv.Create(ctx, hcloudMachine)).To(Succeed())

hcloudMachineKey = client.ObjectKey{Name: hcloudMachineName, Namespace: testNs.Name}

hcloudRemediation = &infrav1.HCloudRemediation{
ObjectMeta: metav1.ObjectMeta{
Name: "hcloud-remediation",
Namespace: testNs.Name,
OwnerReferences: []metav1.OwnerReference{
{
Kind: "Machine",
APIVersion: clusterv1.GroupVersion.String(),
Name: capiMachine.Name,
UID: capiMachine.UID,
},
},
},
Spec: infrav1.HCloudRemediationSpec{
Strategy: &infrav1.RemediationStrategy{
Type: "Reboot",
RetryLimit: 1,
Timeout: &metav1.Duration{Duration: 1 * time.Second},
},
},
}

hcloudRemediationkey = client.ObjectKey{Namespace: testNs.Name, Name: "hcloud-remediation"}
})

AfterEach(func() {
Expect(testEnv.Cleanup(ctx, testNs, hcloudRemediation, hcloudMachine,
hetznerSecret, bootstrapSecret, hetznerCluster, capiMachine, capiCluster)).To(Succeed())
})

Context("Basic test", func() {
It("creates the hcloudRemediation successfully", func() {
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

Eventually(func() error {
return testEnv.Get(ctx, hcloudRemediationkey, hcloudRemediation)
}, timeout).Should(BeNil())
})

It("checks if hcloudRemediation objects has the HCloudTokenAvailableCondition condition", func() {
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

Eventually(func() bool {
janiskemper marked this conversation as resolved.
Show resolved Hide resolved
return isPresentAndTrue(hcloudMachineKey, hcloudRemediation, infrav1.HCloudTokenAvailableCondition)
})
})

It("checks that no remediation is tried if HCloud server does not exist anymore", func() {
By("ensuring if hcloudMachine is provisioned")
Eventually(func() bool {
aniruddha2000 marked this conversation as resolved.
Show resolved Hide resolved
if err := testEnv.Get(ctx, hcloudMachineKey, hcloudMachine); err != nil {
return false
}

testEnv.GetLogger().Info("Status of the hcloudmachine", "status", hcloudMachine.Status)
return hcloudMachine.Status.Ready
}, timeout).Should(BeTrue())

By("deleting the server associated with the hcloudMachine")
providerID, err := hcloudutil.ServerIDFromProviderID(hcloudMachine.Spec.ProviderID)
Expect(err).NotTo(HaveOccurred())

Expect(hcloudClient.DeleteServer(ctx, &hcloud.Server{ID: providerID})).NotTo(HaveOccurred())

By("creating the hcloudRemediation")
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

By("checking if hcloudRemediation is in deleting phase and capiMachine has the MachineOwnerRemediatedCondition")
Eventually(func() bool {
if err := testEnv.Get(ctx, hcloudRemediationkey, hcloudRemediation); err != nil {
return false
}

return hcloudRemediation.Status.Phase == infrav1.PhaseDeleting &&
isPresentAndFalseWithReason(capiMachineKey, capiMachine, clusterv1.MachineOwnerRemediatedCondition, clusterv1.WaitingForRemediationReason)
}, timeout).Should(BeTrue())
})

It("checks that, under normal conditions, a reboot is carried out and retryCount and lastRemediated are set", func() {
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

Eventually(func() bool {
if err := testEnv.Get(ctx, hcloudRemediationkey, hcloudRemediation); err != nil {
return false
}

return hcloudRemediation.Status.LastRemediated != nil && hcloudRemediation.Status.RetryCount == 1
}, timeout).Should(BeTrue())
})

It("checks if PhaseWaiting is set when retryLimit is reached", func() {
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

Eventually(func() bool {
if err := testEnv.Get(ctx, hcloudRemediationkey, hcloudRemediation); err != nil {
janiskemper marked this conversation as resolved.
Show resolved Hide resolved
return false
}

testEnv.GetLogger().Info("status of hcloudRemediation", "status", hcloudRemediation.Status.Phase)
return hcloudRemediation.Status.Phase == infrav1.PhaseWaiting
}, timeout).Should(BeTrue())
})

It("should delete machine if retry limit reached and reboot timed out", func() {
By("creating hcloudRemediation")
Expect(testEnv.Create(ctx, hcloudRemediation)).To(Succeed())

By("updating the status to waiting and setting the last remediation to past")
hcloudRemediationPatchHelper, err := patch.NewHelper(hcloudRemediation, testEnv.GetClient())
Expect(err).NotTo(HaveOccurred())

hcloudRemediation.Status.Phase = infrav1.PhaseWaiting
hcloudRemediation.Status.LastRemediated = &metav1.Time{Time: time.Now().Add(-2 * time.Second)}

Expect(hcloudRemediationPatchHelper.Patch(ctx, hcloudRemediation)).NotTo(HaveOccurred())

By("checking if hcloudRemediation is in deleting phase and capiMachine has MachineOwnerRemediatedCondition")
Eventually(func() bool {
if err := testEnv.Get(ctx, hcloudRemediationkey, hcloudRemediation); err != nil {
return false
}

testEnv.GetLogger().Info("status of hcloudRemediation", "status", hcloudRemediation.Status.Phase)
return hcloudRemediation.Status.Phase == infrav1.PhaseDeleting &&
isPresentAndFalseWithReason(capiMachineKey, capiMachine, clusterv1.MachineOwnerRemediatedCondition, clusterv1.WaitingForRemediationReason)
}, timeout).Should(BeTrue())
})
})
})
1 change: 0 additions & 1 deletion controllers/hetznerbaremetalremediation_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ func (r *HetznerBareMetalRemediationReconciler) Reconcile(ctx context.Context, r
// Nothing to do
return reconcile.Result{}, nil
}

return r.reconcileNormal(ctx, remediationScope)
}

Expand Down
Loading