|
| 1 | +package io.javaoperatorsdk.operator; |
| 2 | + |
| 3 | +import org.junit.jupiter.api.AfterEach; |
| 4 | +import org.junit.jupiter.api.BeforeEach; |
| 5 | +import org.junit.jupiter.api.Test; |
| 6 | +import org.junit.jupiter.api.TestInfo; |
| 7 | + |
| 8 | +import io.fabric8.kubernetes.api.model.Namespace; |
| 9 | +import io.fabric8.kubernetes.api.model.NamespaceBuilder; |
| 10 | +import io.fabric8.kubernetes.api.model.ObjectMetaBuilder; |
| 11 | +import io.fabric8.kubernetes.client.KubernetesClient; |
| 12 | +import io.fabric8.kubernetes.client.KubernetesClientBuilder; |
| 13 | +import io.fabric8.kubernetes.client.utils.KubernetesResourceUtil; |
| 14 | +import io.javaoperatorsdk.operator.junit.LocallyRunOperatorExtension; |
| 15 | +import io.javaoperatorsdk.operator.sample.statuspatchnonlocking.StatusPatchLockingCustomResource; |
| 16 | +import io.javaoperatorsdk.operator.sample.statuspatchnonlocking.StatusPatchLockingCustomResourceSpec; |
| 17 | +import io.javaoperatorsdk.operator.sample.statuspatchnonlocking.StatusPatchLockingReconciler; |
| 18 | + |
| 19 | +import static org.assertj.core.api.Assertions.assertThat; |
| 20 | +import static org.awaitility.Awaitility.await; |
| 21 | + |
| 22 | +public class StatusPatchSSAMigrationIT { |
| 23 | + |
| 24 | + public static final String TEST_RESOURCE_NAME = "test"; |
| 25 | + |
| 26 | + private final KubernetesClient client = new KubernetesClientBuilder().build(); |
| 27 | + private String testNamespace; |
| 28 | + |
| 29 | + @BeforeEach |
| 30 | + void beforeEach(TestInfo testInfo) { |
| 31 | + LocallyRunOperatorExtension.applyCrd(StatusPatchLockingCustomResource.class, |
| 32 | + client); |
| 33 | + testInfo.getTestMethod() |
| 34 | + .ifPresent(method -> testNamespace = KubernetesResourceUtil.sanitizeName(method.getName())); |
| 35 | + client.namespaces().resource(testNamespace(testNamespace)).create(); |
| 36 | + } |
| 37 | + |
| 38 | + @AfterEach |
| 39 | + void afterEach() { |
| 40 | + client.namespaces().withName(testNamespace).delete(); |
| 41 | + await().untilAsserted(() -> { |
| 42 | + var ns = client.namespaces().withName(testNamespace).get(); |
| 43 | + assertThat(ns).isNull(); |
| 44 | + }); |
| 45 | + client.close(); |
| 46 | + } |
| 47 | + |
| 48 | + @Test |
| 49 | + void testMigratingFromNonSSAToSSA() { |
| 50 | + var operator = startOperator(false); |
| 51 | + var testResource = client.resource(testResource()).create(); |
| 52 | + |
| 53 | + await().untilAsserted(() -> { |
| 54 | + var res = client.resource(testResource).get(); |
| 55 | + assertThat(res.getStatus()).isNotNull(); |
| 56 | + assertThat(res.getStatus().getMessage()).isEqualTo(StatusPatchLockingReconciler.MESSAGE); |
| 57 | + assertThat(res.getStatus().getValue()).isEqualTo(1); |
| 58 | + }); |
| 59 | + operator.stop(); |
| 60 | + |
| 61 | + // start operator with SSA |
| 62 | + operator = startOperator(true); |
| 63 | + await().untilAsserted(() -> { |
| 64 | + var res = client.resource(testResource).get(); |
| 65 | + assertThat(res.getStatus()).isNotNull(); |
| 66 | + assertThat(res.getStatus().getMessage()).isEqualTo(StatusPatchLockingReconciler.MESSAGE); |
| 67 | + assertThat(res.getStatus().getValue()).isEqualTo(2); |
| 68 | + }); |
| 69 | + |
| 70 | + var actualResource = client.resource(testResource()).get(); |
| 71 | + actualResource.getSpec().setMessageInStatus(false); |
| 72 | + client.resource(actualResource).update(); |
| 73 | + |
| 74 | + await().untilAsserted(() -> { |
| 75 | + var res = client.resource(testResource).get(); |
| 76 | + assertThat(res.getStatus()).isNotNull(); |
| 77 | + assertThat(res.getStatus().getMessage()).isNull(); |
| 78 | + assertThat(res.getStatus().getValue()).isEqualTo(3); |
| 79 | + }); |
| 80 | + |
| 81 | + client.resource(testResource()).delete(); |
| 82 | + } |
| 83 | + |
| 84 | + |
| 85 | + private Operator startOperator(boolean patchStatusWithSSA) { |
| 86 | + var operator = new Operator(o -> o.withCloseClientOnStop(false) |
| 87 | + .withUseSSAForResourceStatusPatch(patchStatusWithSSA)); |
| 88 | + operator.register(new StatusPatchLockingReconciler(), |
| 89 | + o -> o.settingNamespaces(testNamespace)); |
| 90 | + |
| 91 | + operator.start(); |
| 92 | + return operator; |
| 93 | + } |
| 94 | + |
| 95 | + StatusPatchLockingCustomResource testResource() { |
| 96 | + StatusPatchLockingCustomResource res = new StatusPatchLockingCustomResource(); |
| 97 | + res.setSpec(new StatusPatchLockingCustomResourceSpec()); |
| 98 | + res.setMetadata(new ObjectMetaBuilder() |
| 99 | + .withName(TEST_RESOURCE_NAME) |
| 100 | + .withNamespace(testNamespace) |
| 101 | + .build()); |
| 102 | + return res; |
| 103 | + } |
| 104 | + |
| 105 | + private Namespace testNamespace(String name) { |
| 106 | + return new NamespaceBuilder().withMetadata(new ObjectMetaBuilder() |
| 107 | + .withName(name) |
| 108 | + .build()).build(); |
| 109 | + } |
| 110 | +} |
0 commit comments