This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch exchange-factory
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/exchange-factory by this push:
new b16ae9c CAMEL-16222: PooledExchangeFactory experiment
b16ae9c is described below
commit b16ae9cab440b0f0ca1cec9cb14f4d024cd66a03
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Feb 22 15:44:35 2021 +0100
CAMEL-16222: PooledExchangeFactory experiment
---
.../elsql/ElSqlConsumerDynamicParameterTest.java | 104 ---------------------
1 file changed, 104 deletions(-)
diff --git
a/components/camel-elsql/src/test/java/org/apache/camel/component/elsql/ElSqlConsumerDynamicParameterTest.java
b/components/camel-elsql/src/test/java/org/apache/camel/component/elsql/ElSqlConsumerDynamicParameterTest.java
deleted file mode 100644
index 2f6623a..0000000
---
a/components/camel-elsql/src/test/java/org/apache/camel/component/elsql/ElSqlConsumerDynamicParameterTest.java
+++ /dev/null
@@ -1,104 +0,0 @@
-/*
- * 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.component.elsql;
-
-import java.util.List;
-import java.util.Map;
-
-import org.apache.camel.BindToRegistry;
-import org.apache.camel.Exchange;
-import org.apache.camel.builder.RouteBuilder;
-import org.apache.camel.component.mock.MockEndpoint;
-import org.apache.camel.test.junit5.CamelTestSupport;
-import org.junit.jupiter.api.AfterEach;
-import org.junit.jupiter.api.Test;
-import org.springframework.jdbc.datasource.embedded.EmbeddedDatabase;
-import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;
-import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType;
-
-import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertTrue;
-
-/**
- *
- */
-public class ElSqlConsumerDynamicParameterTest extends CamelTestSupport {
-
- @BindToRegistry("dataSource")
- private EmbeddedDatabase db = new
EmbeddedDatabaseBuilder().setType(EmbeddedDatabaseType.DERBY)
- .addScript("sql/createAndPopulateDatabase.sql").build();
- @BindToRegistry("myIdGenerator")
- private MyIdGenerator idGenerator = new MyIdGenerator();
-
- @Override
- @AfterEach
- public void tearDown() throws Exception {
- super.tearDown();
-
- db.shutdown();
- }
-
- @Test
- void testDynamicConsume() throws Exception {
- MockEndpoint mock = getMockEndpoint("mock:result");
- mock.expectedMinimumMessageCount(3);
-
- context.getRouteController().startRoute("foo");
-
- assertMockEndpointsSatisfied();
-
- List<Exchange> exchanges = mock.getReceivedExchanges();
-
- assertEquals(1, exchanges.get(0).getIn().getBody(Map.class).get("ID"));
- assertEquals("Camel",
exchanges.get(0).getIn().getBody(Map.class).get("PROJECT"));
- assertEquals(2, exchanges.get(1).getIn().getBody(Map.class).get("ID"));
- assertEquals("AMQ",
exchanges.get(1).getIn().getBody(Map.class).get("PROJECT"));
- assertEquals(3, exchanges.get(2).getIn().getBody(Map.class).get("ID"));
- assertEquals("Linux",
exchanges.get(2).getIn().getBody(Map.class).get("PROJECT"));
-
- // and the bean id should be > 1
- assertTrue(idGenerator.getId() > 1, "Id counter should be > 1");
- }
-
- @Override
- protected RouteBuilder createRouteBuilder() {
- return new RouteBuilder() {
- @Override
- public void configure() {
-
from("elsql:projectsByIdBean:elsql/projects.elsql?dataSource=#dataSource&initialDelay=0&delay=50")
- .routeId("foo").noAutoStartup()
- .to("mock:result");
- }
- };
- }
-
- public static class MyIdGenerator {
-
- private int id = 1;
-
- public int nextId() {
- // spring will call this twice, one for initializing query and 2nd
- // for actual value
- id++;
- return id / 2;
- }
-
- public int getId() {
- return id;
- }
- }
-}