|
| 1 | +package io.javaoperatorsdk.operator.api.reconciler.dependent.managed; |
| 2 | + |
| 3 | +import java.util.List; |
| 4 | +import java.util.Map; |
| 5 | +import java.util.Optional; |
| 6 | + |
| 7 | +import org.junit.jupiter.api.Test; |
| 8 | + |
| 9 | +import io.javaoperatorsdk.operator.processing.dependent.workflow.WorkflowReconcileResult; |
| 10 | + |
| 11 | +import static io.javaoperatorsdk.operator.api.reconciler.dependent.managed.DefaultManagedDependentResourceContext.RECONCILE_RESULT_KEY; |
| 12 | +import static org.assertj.core.api.Assertions.assertThat; |
| 13 | +import static org.assertj.core.api.Assertions.assertThatThrownBy; |
| 14 | + |
| 15 | +class DefaultManagedDependentResourceContextTest { |
| 16 | + |
| 17 | + private final ManagedDependentResourceContext context = |
| 18 | + new DefaultManagedDependentResourceContext(); |
| 19 | + |
| 20 | + @Test |
| 21 | + void getWhenEmpty() { |
| 22 | + Optional<String> actual = context.get("key", String.class); |
| 23 | + assertThat(actual).isEmpty(); |
| 24 | + } |
| 25 | + |
| 26 | + @Test |
| 27 | + void get() { |
| 28 | + context.put("key", "value"); |
| 29 | + Optional<String> actual = context.get("key", String.class); |
| 30 | + assertThat(actual).contains("value"); |
| 31 | + } |
| 32 | + |
| 33 | + @Test |
| 34 | + void putNewValueOverwrites() { |
| 35 | + context.put("key", "value"); |
| 36 | + context.put("key", "valueB"); |
| 37 | + Optional<String> actual = context.get("key", String.class); |
| 38 | + assertThat(actual).contains("valueB"); |
| 39 | + } |
| 40 | + |
| 41 | + @Test |
| 42 | + void putNewValueReturnsPriorValue() { |
| 43 | + final var prior = "value"; |
| 44 | + context.put("key", prior); |
| 45 | + String actual = context.put("key", "valueB"); |
| 46 | + assertThat(actual).isEqualTo(prior); |
| 47 | + } |
| 48 | + |
| 49 | + @Test |
| 50 | + void putNewValueLogsWarningIfTypesDiffer() { |
| 51 | + // to check that we properly log things without setting up a complex fixture |
| 52 | + final String[] messages = new String[1]; |
| 53 | + var context = new DefaultManagedDependentResourceContext() { |
| 54 | + @Override |
| 55 | + void logWarning(String message) { |
| 56 | + messages[0] = message; |
| 57 | + } |
| 58 | + }; |
| 59 | + final var prior = "value"; |
| 60 | + final var key = "key"; |
| 61 | + context.put(key, prior); |
| 62 | + context.put(key, 10); |
| 63 | + assertThat(messages[0]).contains(key).contains(prior).contains("put(" + key + ", null)"); |
| 64 | + } |
| 65 | + |
| 66 | + @Test |
| 67 | + void putNullRemoves() { |
| 68 | + context.put("key", "value"); |
| 69 | + context.put("key", null); |
| 70 | + Optional<String> actual = context.get("key", String.class); |
| 71 | + assertThat(actual).isEmpty(); |
| 72 | + } |
| 73 | + |
| 74 | + @Test |
| 75 | + void putNullReturnsPriorValue() { |
| 76 | + context.put("key", "value"); |
| 77 | + String actual = context.put("key", null); |
| 78 | + assertThat(actual).contains("value"); |
| 79 | + } |
| 80 | + |
| 81 | + @Test |
| 82 | + void getMandatory() { |
| 83 | + context.put("key", "value"); |
| 84 | + String actual = context.getMandatory("key", String.class); |
| 85 | + assertThat(actual).isEqualTo("value"); |
| 86 | + } |
| 87 | + |
| 88 | + @Test |
| 89 | + void getMandatoryWhenEmpty() { |
| 90 | + assertThatThrownBy(() -> { |
| 91 | + context.getMandatory("key", String.class); |
| 92 | + }).isInstanceOf(IllegalStateException.class) |
| 93 | + .hasMessage( |
| 94 | + "Mandatory attribute (key: key, type: java.lang.String) is missing or not of the expected type"); |
| 95 | + } |
| 96 | + |
| 97 | + @Test |
| 98 | + void getWorkflowReconcileResult() { |
| 99 | + WorkflowReconcileResult result = |
| 100 | + new WorkflowReconcileResult(List.of(), List.of(), Map.of(), Map.of()); |
| 101 | + context.put(RECONCILE_RESULT_KEY, result); |
| 102 | + Optional<WorkflowReconcileResult> actual = context.getWorkflowReconcileResult(); |
| 103 | + assertThat(actual).containsSame(result); |
| 104 | + } |
| 105 | +} |
0 commit comments