|
| 1 | +package io.javaoperatorsdk.operator; |
| 2 | + |
| 3 | +import java.time.Duration; |
| 4 | + |
| 5 | +import org.junit.jupiter.api.AfterEach; |
| 6 | +import org.junit.jupiter.api.BeforeEach; |
| 7 | +import org.junit.jupiter.api.Test; |
| 8 | +import org.junit.jupiter.api.TestInfo; |
| 9 | + |
| 10 | +import io.fabric8.kubernetes.api.model.Namespace; |
| 11 | +import io.fabric8.kubernetes.api.model.ObjectMetaBuilder; |
| 12 | +import io.fabric8.kubernetes.api.model.rbac.Role; |
| 13 | +import io.fabric8.kubernetes.api.model.rbac.RoleBinding; |
| 14 | +import io.fabric8.kubernetes.client.ConfigBuilder; |
| 15 | +import io.fabric8.kubernetes.client.KubernetesClient; |
| 16 | +import io.fabric8.kubernetes.client.KubernetesClientBuilder; |
| 17 | +import io.fabric8.kubernetes.client.utils.KubernetesResourceUtil; |
| 18 | +import io.javaoperatorsdk.operator.junit.LocallyRunOperatorExtension; |
| 19 | +import io.javaoperatorsdk.operator.sample.namespacedeletion.NamespaceDeletionTestCustomResource; |
| 20 | +import io.javaoperatorsdk.operator.sample.namespacedeletion.NamespaceDeletionTestReconciler; |
| 21 | + |
| 22 | +import static org.assertj.core.api.Assertions.assertThat; |
| 23 | +import static org.awaitility.Awaitility.await; |
| 24 | + |
| 25 | +public class NamespaceDeletionIT { |
| 26 | + |
| 27 | + KubernetesClient adminClient = new KubernetesClientBuilder().build(); |
| 28 | + |
| 29 | + KubernetesClient client = new KubernetesClientBuilder() |
| 30 | + .withConfig(new ConfigBuilder() |
| 31 | + .withImpersonateUsername("namespace-deletion-test-user") |
| 32 | + .build()) |
| 33 | + .build(); |
| 34 | + |
| 35 | + String actualNamespace; |
| 36 | + Operator operator; |
| 37 | + |
| 38 | + @BeforeEach |
| 39 | + void beforeEach(TestInfo testInfo) { |
| 40 | + LocallyRunOperatorExtension.applyCrd(NamespaceDeletionTestCustomResource.class, |
| 41 | + adminClient); |
| 42 | + |
| 43 | + testInfo.getTestMethod().ifPresent(method -> { |
| 44 | + actualNamespace = KubernetesResourceUtil.sanitizeName(method.getName()); |
| 45 | + adminClient.resource(namespace()).create(); |
| 46 | + }); |
| 47 | + |
| 48 | + applyRBACResources(); |
| 49 | + operator = new Operator(client); |
| 50 | + operator.register(new NamespaceDeletionTestReconciler(), |
| 51 | + o -> o.settingNamespaces(actualNamespace)); |
| 52 | + operator.start(); |
| 53 | + } |
| 54 | + |
| 55 | + @AfterEach |
| 56 | + void cleanup() { |
| 57 | + if (operator != null) { |
| 58 | + operator.stop(Duration.ofSeconds(1)); |
| 59 | + } |
| 60 | + } |
| 61 | + |
| 62 | + @Test |
| 63 | + void testDeletingNamespaceWithRolesForOperator() { |
| 64 | + var res = adminClient.resource(testResource()).create(); |
| 65 | + |
| 66 | + await().untilAsserted(() -> { |
| 67 | + var actual = adminClient.resource(res).get(); |
| 68 | + assertThat(actual.getMetadata().getFinalizers()).isNotEmpty(); |
| 69 | + }); |
| 70 | + |
| 71 | + adminClient.resource(namespace()).delete(); |
| 72 | + |
| 73 | + await().untilAsserted(() -> { |
| 74 | + var actual = adminClient.resource(res).get(); |
| 75 | + assertThat(actual).isNull(); |
| 76 | + }); |
| 77 | + } |
| 78 | + |
| 79 | + NamespaceDeletionTestCustomResource testResource() { |
| 80 | + NamespaceDeletionTestCustomResource resource = new NamespaceDeletionTestCustomResource(); |
| 81 | + resource.setMetadata(new ObjectMetaBuilder() |
| 82 | + .withName("test1") |
| 83 | + .withNamespace(actualNamespace) |
| 84 | + .build()); |
| 85 | + return resource; |
| 86 | + } |
| 87 | + |
| 88 | + private Namespace namespace() { |
| 89 | + return namespace(actualNamespace); |
| 90 | + } |
| 91 | + |
| 92 | + private Namespace namespace(String name) { |
| 93 | + Namespace n = new Namespace(); |
| 94 | + n.setMetadata(new ObjectMetaBuilder() |
| 95 | + .withName(name) |
| 96 | + .withName(actualNamespace) |
| 97 | + .build()); |
| 98 | + return n; |
| 99 | + } |
| 100 | + |
| 101 | + private void applyRBACResources() { |
| 102 | + var role = ReconcilerUtils |
| 103 | + .loadYaml(Role.class, NamespaceDeletionTestReconciler.class, "role.yaml"); |
| 104 | + role.getMetadata().setNamespace(actualNamespace); |
| 105 | + adminClient.resource(role).create(); |
| 106 | + |
| 107 | + var roleBinding = ReconcilerUtils |
| 108 | + .loadYaml(RoleBinding.class, NamespaceDeletionTestReconciler.class, "role-binding.yaml"); |
| 109 | + roleBinding.getMetadata().setNamespace(actualNamespace); |
| 110 | + adminClient.resource(roleBinding).create(); |
| 111 | + } |
| 112 | +} |
0 commit comments