-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent configuration of QuarkusKafkaClientFactory if quarkus-kuberne…
…tes-service-binding is not on the classpath Fixes #2901
- Loading branch information
1 parent
fa7a4e5
commit d6a9091
Showing
19 changed files
with
439 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
.../quarkus/component/kafka/deployment/QuarkusKafkaClientFactoryDisabledMergeConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.camel.quarkus.component.kafka.deployment; | ||
|
||
import java.util.Arrays; | ||
import java.util.Set; | ||
|
||
import javax.inject.Inject; | ||
|
||
import io.quarkus.bootstrap.model.AppArtifact; | ||
import io.quarkus.builder.Version; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.component.kafka.KafkaClientFactory; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class QuarkusKafkaClientFactoryDisabledMergeConfigTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() | ||
.setForcedDependencies(Arrays.asList( | ||
new AppArtifact("io.quarkus", "quarkus-kubernetes-service-binding", Version.getVersion()))) | ||
.withConfigurationResource("application-configuration-merging-disabled.properties") | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)); | ||
|
||
@Inject | ||
CamelContext context; | ||
|
||
@Test | ||
public void quarkusKafkaClientFactoryRegistryBeanNull() { | ||
Set<KafkaClientFactory> factories = context.getRegistry().findByType(KafkaClientFactory.class); | ||
assertTrue(factories.isEmpty()); | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
...pache/camel/quarkus/component/kafka/deployment/QuarkusKafkaClientFactoryDisabledTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.camel.quarkus.component.kafka.deployment; | ||
|
||
import java.util.Set; | ||
|
||
import javax.inject.Inject; | ||
|
||
import io.quarkus.test.QuarkusUnitTest; | ||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.component.kafka.KafkaClientFactory; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class QuarkusKafkaClientFactoryDisabledTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() | ||
.withConfigurationResource("application.properties") | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)); | ||
|
||
@Inject | ||
CamelContext context; | ||
|
||
@Test | ||
public void quarkusKafkaClientFactoryRegistryBeanNull() { | ||
Set<KafkaClientFactory> factories = context.getRegistry().findByType(KafkaClientFactory.class); | ||
assertTrue(factories.isEmpty()); | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
...apache/camel/quarkus/component/kafka/deployment/QuarkusKafkaClientFactoryEnabledTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.camel.quarkus.component.kafka.deployment; | ||
|
||
import java.util.Arrays; | ||
import java.util.Set; | ||
|
||
import javax.inject.Inject; | ||
|
||
import io.quarkus.bootstrap.model.AppArtifact; | ||
import io.quarkus.builder.Version; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.component.kafka.KafkaClientFactory; | ||
import org.apache.camel.quarkus.component.kafka.QuarkusKafkaClientFactory; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class QuarkusKafkaClientFactoryEnabledTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() | ||
.withConfigurationResource("application.properties") | ||
.setForcedDependencies(Arrays.asList( | ||
new AppArtifact("io.quarkus", "quarkus-kubernetes-service-binding", Version.getVersion()))) | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)); | ||
|
||
@Inject | ||
CamelContext context; | ||
|
||
@Test | ||
public void quarkusKafkaClientFactoryRegistryBeanNotNull() { | ||
Set<KafkaClientFactory> factories = context.getRegistry().findByType(KafkaClientFactory.class); | ||
assertEquals(1, factories.size()); | ||
|
||
KafkaClientFactory factory = factories.iterator().next(); | ||
assertTrue(factory instanceof QuarkusKafkaClientFactory); | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
...va/org/apache/camel/quarkus/component/kafka/deployment/QuarkusKafkaClientFactoryTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.camel.quarkus.component.kafka.deployment; | ||
|
||
import java.util.Arrays; | ||
import java.util.Properties; | ||
|
||
import javax.inject.Inject; | ||
|
||
import io.quarkus.bootstrap.model.AppArtifact; | ||
import io.quarkus.builder.Version; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
import org.apache.camel.component.kafka.KafkaClientFactory; | ||
import org.apache.camel.component.kafka.KafkaConfiguration; | ||
import org.apache.camel.quarkus.component.kafka.QuarkusKafkaClientFactory; | ||
import org.apache.kafka.clients.consumer.ConsumerConfig; | ||
import org.apache.kafka.clients.producer.ProducerConfig; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.spec.JavaArchive; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertNotNull; | ||
|
||
public class QuarkusKafkaClientFactoryTest { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() | ||
.setForcedDependencies(Arrays.asList( | ||
new AppArtifact("io.quarkus", "quarkus-kubernetes-service-binding", Version.getVersion()))) | ||
.withConfigurationResource("application-configuration-merging.properties") | ||
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)); | ||
|
||
@Inject | ||
KafkaClientFactory factory; | ||
|
||
@Test | ||
public void testMergeConfiguration() { | ||
assertNotNull(factory); | ||
|
||
QuarkusKafkaClientFactory quarkusKafkaClientFactory = (QuarkusKafkaClientFactory) factory; | ||
|
||
KafkaConfiguration configuration = new KafkaConfiguration(); | ||
configuration.setBrokers("camelhost:9999"); | ||
assertEquals("localhost:9092", quarkusKafkaClientFactory.getBrokers(configuration)); | ||
|
||
Properties properties = new Properties(); | ||
properties.put(ConsumerConfig.GROUP_ID_CONFIG, "camel-quarkus-group"); | ||
properties.put(ProducerConfig.REQUEST_TIMEOUT_MS_CONFIG, "2000"); | ||
quarkusKafkaClientFactory.mergeConfiguration(properties); | ||
|
||
assertEquals("camel-quarkus-group", properties.getProperty(ConsumerConfig.GROUP_ID_CONFIG)); | ||
assertEquals("1000", | ||
properties.getProperty(ProducerConfig.REQUEST_TIMEOUT_MS_CONFIG)); | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...kafka/deployment/src/test/resources/application-configuration-merging-disabled.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## --------------------------------------------------------------------------- | ||
## Licensed to the Apache Software Foundation (ASF) under one or more | ||
## contributor license agreements. See the NOTICE file distributed with | ||
## this work for additional information regarding copyright ownership. | ||
## The ASF licenses this file to You under the Apache License, Version 2.0 | ||
## (the "License"); you may not use this file except in compliance with | ||
## the License. You may obtain a copy of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, | ||
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
## See the License for the specific language governing permissions and | ||
## limitations under the License. | ||
## --------------------------------------------------------------------------- | ||
quarkus.kafka.devservices.enabled=false | ||
quarkus.camel.kafka.kubernetes-service-binding.merge-configuration=false |
20 changes: 20 additions & 0 deletions
20
extensions/kafka/deployment/src/test/resources/application-configuration-merging.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## --------------------------------------------------------------------------- | ||
## Licensed to the Apache Software Foundation (ASF) under one or more | ||
## contributor license agreements. See the NOTICE file distributed with | ||
## this work for additional information regarding copyright ownership. | ||
## The ASF licenses this file to You under the Apache License, Version 2.0 | ||
## (the "License"); you may not use this file except in compliance with | ||
## the License. You may obtain a copy of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, | ||
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
## See the License for the specific language governing permissions and | ||
## limitations under the License. | ||
## --------------------------------------------------------------------------- | ||
quarkus.kafka.devservices.enabled=false | ||
kafka.bootstrap-servers=localhost:9092 | ||
kafka.client.id=camel-quarkus-client | ||
kafka.request.timeout.ms=1000 |
17 changes: 17 additions & 0 deletions
17
extensions/kafka/deployment/src/test/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## --------------------------------------------------------------------------- | ||
## Licensed to the Apache Software Foundation (ASF) under one or more | ||
## contributor license agreements. See the NOTICE file distributed with | ||
## this work for additional information regarding copyright ownership. | ||
## The ASF licenses this file to You under the Apache License, Version 2.0 | ||
## (the "License"); you may not use this file except in compliance with | ||
## the License. You may obtain a copy of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, | ||
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
## See the License for the specific language governing permissions and | ||
## limitations under the License. | ||
## --------------------------------------------------------------------------- | ||
quarkus.kafka.devservices.enabled=false |
Oops, something went wrong.