|
9 | 9 | import io.fabric8.kubernetes.client.KubernetesClientException;
|
10 | 10 | import io.strimzi.api.kafka.model.kafka.KafkaResources;
|
11 | 11 | import io.strimzi.operator.cluster.KafkaVersionTestUtils;
|
12 |
| -import io.strimzi.operator.cluster.model.KafkaCluster; |
13 | 12 | import io.strimzi.operator.cluster.model.NodeRef;
|
14 | 13 | import io.strimzi.operator.cluster.model.RestartReason;
|
15 | 14 | import io.strimzi.operator.cluster.model.RestartReasons;
|
@@ -160,43 +159,6 @@ private static AdminClientProvider givenControllerFutureFailsWithTimeout() {
|
160 | 159 | return mock;
|
161 | 160 | }
|
162 | 161 |
|
163 |
| - @Test |
164 |
| - public void testTalkingToControllersLatestVersion(VertxTestContext testContext) { |
165 |
| - PodOperator podOps = mockPodOpsWithVersion(podId -> succeededFuture(), KafkaVersionTestUtils.getLatestVersion().version()); |
166 |
| - AdminClientProvider mock = mock(AdminClientProvider.class); |
167 |
| - when(mock.createControllerAdminClient(anyString(), any(), any())).thenThrow(new RuntimeException("An error while try to create an admin client with bootstrap controllers")); |
168 |
| - |
169 |
| - TestingKafkaRoller kafkaRoller = new TestingKafkaRoller(addKraftPodNames(0, 0, 1), podOps, |
170 |
| - noException(), null, noException(), noException(), noException(), |
171 |
| - brokerId -> succeededFuture(true), |
172 |
| - true, mock, mockKafkaAgentClientProvider(), true, null, -1); |
173 |
| - |
174 |
| - // When admin client cannot be created for a controller node, we expect it to be force restarted. |
175 |
| - doSuccessfulRollingRestart(testContext, kafkaRoller, |
176 |
| - asList(0), |
177 |
| - asList(0)); |
178 |
| - } |
179 |
| - |
180 |
| - @Test |
181 |
| - public void testTalkingToControllersWithOldVersion(VertxTestContext testContext) throws InterruptedException { |
182 |
| - PodOperator podOps = mockPodOpsWithVersion(podId -> succeededFuture(), "3.8.0"); |
183 |
| - |
184 |
| - AdminClientProvider mock = mock(AdminClientProvider.class); |
185 |
| - when(mock.createAdminClient(anyString(), any(), any())).thenThrow(new RuntimeException("An error while try to create an admin client with bootstrap brokers")); |
186 |
| - |
187 |
| - TestingKafkaRoller kafkaRoller = new TestingKafkaRoller(addKraftPodNames(0, 0, 1), podOps, |
188 |
| - noException(), null, noException(), noException(), noException(), |
189 |
| - brokerId -> succeededFuture(true), |
190 |
| - true, mock, mockKafkaAgentClientProvider(), true, null, -1); |
191 |
| - |
192 |
| - // If the controller has older version (< 3.9.0), we should only be creating admin client for brokers |
193 |
| - // and when the operator cannot connect to brokers, we expect to fail initialising KafkaQuorumCheck |
194 |
| - doFailingRollingRestart(testContext, kafkaRoller, |
195 |
| - asList(0), |
196 |
| - KafkaRoller.UnforceableProblem.class, "KafkaQuorumCheck cannot be initialised for c-kafka-0/0 because none of the brokers do not seem to responding to connection attempts", |
197 |
| - emptyList()); |
198 |
| - } |
199 |
| - |
200 | 162 | private static KafkaAgentClientProvider mockKafkaAgentClientProvider() {
|
201 | 163 | return mock(KafkaAgentClientProvider.class);
|
202 | 164 | }
|
@@ -835,17 +797,12 @@ public void clearRestarted() {
|
835 | 797 | }
|
836 | 798 |
|
837 | 799 | private PodOperator mockPodOps(Function<Integer, Future<Void>> readiness) {
|
838 |
| - return mockPodOpsWithVersion(readiness, KafkaVersionTestUtils.getLatestVersion().version()); |
839 |
| - } |
840 |
| - |
841 |
| - private PodOperator mockPodOpsWithVersion(Function<Integer, Future<Void>> readiness, String version) { |
842 | 800 | PodOperator podOps = mock(PodOperator.class);
|
843 | 801 | when(podOps.get(any(), any())).thenAnswer(
|
844 | 802 | invocation -> new PodBuilder()
|
845 | 803 | .withNewMetadata()
|
846 |
| - .withNamespace(invocation.getArgument(0)) |
847 |
| - .withName(invocation.getArgument(1)) |
848 |
| - .addToAnnotations(KafkaCluster.ANNO_STRIMZI_IO_KAFKA_VERSION, version) |
| 804 | + .withNamespace(invocation.getArgument(0)) |
| 805 | + .withName(invocation.getArgument(1)) |
849 | 806 | .endMetadata()
|
850 | 807 | .build()
|
851 | 808 | );
|
@@ -944,33 +901,9 @@ KafkaAgentClient initKafkaAgentClient() {
|
944 | 901 | }
|
945 | 902 |
|
946 | 903 | @Override
|
947 |
| - protected Admin brokerAdminClient(Set<NodeRef> nodes) throws ForceableProblem, FatalProblem { |
948 |
| - if (delegateAdminClientCall) { |
949 |
| - return super.brokerAdminClient(nodes); |
950 |
| - } |
951 |
| - RuntimeException exception = acOpenException.apply(nodes); |
952 |
| - if (exception != null) { |
953 |
| - throw new ForceableProblem("An error while try to create the admin client", exception); |
954 |
| - } |
955 |
| - Admin ac = mock(AdminClient.class, invocation -> { |
956 |
| - if ("close".equals(invocation.getMethod().getName())) { |
957 |
| - Admin mock = (Admin) invocation.getMock(); |
958 |
| - unclosedAdminClients.remove(mock); |
959 |
| - if (acCloseException != null) { |
960 |
| - throw acCloseException; |
961 |
| - } |
962 |
| - return null; |
963 |
| - } |
964 |
| - throw new RuntimeException("Not mocked " + invocation.getMethod()); |
965 |
| - }); |
966 |
| - unclosedAdminClients.put(ac, new Throwable("Pod " + nodes)); |
967 |
| - return ac; |
968 |
| - } |
969 |
| - |
970 |
| - @Override |
971 |
| - protected Admin controllerAdminClient(Set<NodeRef> nodes) throws ForceableProblem, FatalProblem { |
| 904 | + protected Admin adminClient(Set<NodeRef> nodes, boolean b) throws ForceableProblem, FatalProblem { |
972 | 905 | if (delegateAdminClientCall) {
|
973 |
| - return super.controllerAdminClient(nodes); |
| 906 | + return super.adminClient(nodes, b); |
974 | 907 | }
|
975 | 908 | RuntimeException exception = acOpenException.apply(nodes);
|
976 | 909 | if (exception != null) {
|
@@ -1012,7 +945,7 @@ Future<Boolean> canRoll(int podId) {
|
1012 | 945 | }
|
1013 | 946 |
|
1014 | 947 | @Override
|
1015 |
| - protected KafkaQuorumCheck quorumCheck(Admin ac, NodeRef nodeRef) { |
| 948 | + protected KafkaQuorumCheck quorumCheck(Admin ac, long controllerQuorumFetchTimeoutMs) { |
1016 | 949 | Admin admin = mock(Admin.class);
|
1017 | 950 | DescribeMetadataQuorumResult qrmResult = mock(DescribeMetadataQuorumResult.class);
|
1018 | 951 | when(admin.describeMetadataQuorum()).thenReturn(qrmResult);
|
|
0 commit comments