Skip to content

Commit 968ab1e

Browse files
committed
Integration test skeleton for SSA handling
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 5ea68d6 commit 968ab1e

File tree

2 files changed

+111
-1
lines changed

2 files changed

+111
-1
lines changed

operator-framework/src/test/java/io/javaoperatorsdk/operator/StatusPatchNotLockingIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void noOptimisticLockingDoneOnStatusUpdate() throws InterruptedException {
4848

4949
// see https://github.com/fabric8io/kubernetes-client/issues/4158
5050
@Test
51-
void valuesAreDeletedIfSetToNull() throws InterruptedException {
51+
void valuesAreDeletedIfSetToNull() {
5252
var resource = operator.create(createResource());
5353

5454
await().untilAsserted(() -> {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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

Comments
 (0)