|
38 | 38 | import org.apache.kafka.common.config.ConfigResource;
|
39 | 39 | import org.apache.kafka.common.config.TopicConfig;
|
40 | 40 | import org.apache.kafka.common.errors.TopicAuthorizationException;
|
| 41 | +import org.apache.kafka.common.errors.TopicExistsException; |
41 | 42 | import org.apache.kafka.common.errors.UnknownTopicOrPartitionException;
|
42 | 43 | import org.apache.kafka.common.internals.KafkaFutureImpl;
|
43 | 44 | import org.apache.logging.log4j.Level;
|
@@ -1883,7 +1884,7 @@ public void shouldFailIfNumPartitionsDivergedWithConfigChange(@BrokerConfig(name
|
1883 | 1884 | "Decreasing partitions not supported"));
|
1884 | 1885 | }
|
1885 | 1886 |
|
1886 |
| - private static <T> KafkaFuture<T> failedFuture(Throwable error) throws ExecutionException, InterruptedException { |
| 1887 | + private static <T> KafkaFuture<T> failedFuture(Throwable error) { |
1887 | 1888 | var future = new KafkaFutureImpl<T>();
|
1888 | 1889 | future.completeExceptionally(error);
|
1889 | 1890 | return future;
|
@@ -2080,4 +2081,22 @@ public void shouldNotReconcileKafkaTopicWithMissingSpec(
|
2080 | 2081 |
|
2081 | 2082 | assertNotExistsInKafka(expectedTopicName(created));
|
2082 | 2083 | }
|
| 2084 | + |
| 2085 | + @Test |
| 2086 | + public void shouldReconcileOnTopicExistsException( |
| 2087 | + @BrokerConfig(name = "auto.create.topics.enable", value = "false") |
| 2088 | + KafkaCluster kafkaCluster) throws ExecutionException, InterruptedException { |
| 2089 | + var config = topicOperatorConfig(NAMESPACE, kafkaCluster); |
| 2090 | + var topicName = randomTopicName(); |
| 2091 | + |
| 2092 | + var creteTopicResult = mock(CreateTopicsResult.class); |
| 2093 | + var existsException = new TopicExistsException(format("Topic '%s' already exists.", topicName)); |
| 2094 | + Mockito.doReturn(failedFuture(existsException)).when(creteTopicResult).all(); |
| 2095 | + Mockito.doReturn(Map.of(topicName, failedFuture(existsException))).when(creteTopicResult).values(); |
| 2096 | + operatorAdmin = new Admin[]{Mockito.spy(Admin.create(config.adminClientConfig()))}; |
| 2097 | + Mockito.doReturn(creteTopicResult).when(operatorAdmin[0]).createTopics(any()); |
| 2098 | + |
| 2099 | + KafkaTopic kafkaTopic = createTopic(kafkaCluster, kafkaTopic(NAMESPACE, topicName, true, topicName, 2, 1)); |
| 2100 | + assertTrue(readyIsTrue().test(kafkaTopic)); |
| 2101 | + } |
2083 | 2102 | }
|
0 commit comments