Skip to content

Commit 31fbd2c

Browse files
committed
Integration test
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 6c99a78 commit 31fbd2c

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

docs/documentation/v5-0-migration.md

+4
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,9 @@ permalink: /docs/v5-0-migration
2020
3. Patching status through `UpdateControl` like the `patchStatus` method now by default
2121
uses Server Side Apply instead of simple patch. To use the former approach, use the feature flag
2222
in [`ConfigurationService`](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java#L400-L400)
23+
!!! IMPORTANT !!!
24+
Migration from a non-SSA based controller to SSA based controller can cause problems, due to known issues.
25+
See the following [integration test](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/StatusPatchSSAMigrationIT.java#L71-L82) where it is demonstrated.
26+
Also, the related part of a [workaround](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/StatusPatchSSAMigrationIT.java#L110-L116).
2327
4. `ManagedDependentResourceContext` has been renamed to `ManagedWorkflowAndDependentResourceContext` and is accessed
2428
via the accordingly renamed `managedWorkflowAndDependentResourceContext` method.

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

+46-1
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ void afterEach() {
4545
client.close();
4646
}
4747

48+
4849
@Test
49-
void testMigratingFromNonSSAToSSA() {
50+
void testMigratingToSSA() {
5051
var operator = startOperator(false);
5152
var testResource = client.resource(testResource()).create();
5253

@@ -71,6 +72,49 @@ void testMigratingFromNonSSAToSSA() {
7172
actualResource.getSpec().setMessageInStatus(false);
7273
client.resource(actualResource).update();
7374

75+
await().untilAsserted(() -> {
76+
var res = client.resource(testResource).get();
77+
assertThat(res.getStatus()).isNotNull();
78+
// !!! This is wrong, the message should be null,
79+
// see issue in Kubernetes: https://github.com/kubernetes/kubernetes/issues/99003
80+
assertThat(res.getStatus().getMessage()).isNotNull();
81+
assertThat(res.getStatus().getValue()).isEqualTo(3);
82+
});
83+
84+
client.resource(testResource()).delete();
85+
operator.stop();
86+
}
87+
88+
@Test
89+
void workaroundMigratingFromToSSA() {
90+
var operator = startOperator(false);
91+
var testResource = client.resource(testResource()).create();
92+
93+
await().untilAsserted(() -> {
94+
var res = client.resource(testResource).get();
95+
assertThat(res.getStatus()).isNotNull();
96+
assertThat(res.getStatus().getMessage()).isEqualTo(StatusPatchLockingReconciler.MESSAGE);
97+
assertThat(res.getStatus().getValue()).isEqualTo(1);
98+
});
99+
operator.stop();
100+
101+
// start operator with SSA
102+
operator = startOperator(true);
103+
await().untilAsserted(() -> {
104+
var res = client.resource(testResource).get();
105+
assertThat(res.getStatus()).isNotNull();
106+
assertThat(res.getStatus().getMessage()).isEqualTo(StatusPatchLockingReconciler.MESSAGE);
107+
assertThat(res.getStatus().getValue()).isEqualTo(2);
108+
});
109+
110+
var actualResource = client.resource(testResource()).get();
111+
actualResource.getSpec().setMessageInStatus(false);
112+
// removing the managed field entry for former method works
113+
actualResource.getMetadata().setManagedFields(actualResource.getMetadata().getManagedFields()
114+
.stream().filter(r -> !r.getOperation().equals("Update") && r.getSubresource() != null)
115+
.toList());
116+
client.resource(actualResource).update();
117+
74118
await().untilAsserted(() -> {
75119
var res = client.resource(testResource).get();
76120
assertThat(res.getStatus()).isNotNull();
@@ -79,6 +123,7 @@ void testMigratingFromNonSSAToSSA() {
79123
});
80124

81125
client.resource(testResource()).delete();
126+
operator.stop();
82127
}
83128

84129

0 commit comments

Comments
 (0)