-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CAMEL-21419: Handle Multiple Executors
- Loading branch information
Showing
2 changed files
with
99 additions
and
1 deletion.
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
86 changes: 86 additions & 0 deletions
86
...camel/component/platform/http/springboot/SpringBootPlatformHttpMultipleExecutorsTest.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,86 @@ | ||
package org.apache.camel.component.platform.http.springboot; | ||
|
||
import org.apache.camel.builder.RouteBuilder; | ||
import org.apache.camel.spring.boot.CamelAutoConfiguration; | ||
import org.apache.camel.test.spring.junit5.CamelSpringBootTest; | ||
import org.assertj.core.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.scheduling.annotation.EnableScheduling; | ||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; | ||
import org.springframework.test.annotation.DirtiesContext; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.Executor; | ||
|
||
@EnableAutoConfiguration | ||
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD) | ||
@CamelSpringBootTest | ||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = { CamelAutoConfiguration.class, | ||
SpringBootPlatformHttpMultipleExecutorsTest.class, SpringBootPlatformHttpMultipleExecutorsTest.TestConfiguration.class, | ||
PlatformHttpComponentAutoConfiguration.class, SpringBootPlatformHttpAutoConfiguration.class }) | ||
@EnableScheduling | ||
public class SpringBootPlatformHttpMultipleExecutorsTest extends PlatformHttpBase { | ||
|
||
private static final String postRouteId = "SpringBootPlatformHttpMultipleExecutorsTest_mypost"; | ||
|
||
private static final String getRouteId = "SpringBootPlatformHttpMultipleExecutorsTest_myget"; | ||
|
||
private static final String THREAD_PREFIX = "myThread-"; | ||
|
||
// ************************************* | ||
// Config | ||
// ************************************* | ||
@Configuration | ||
public static class TestConfiguration { | ||
|
||
@Bean(name = "customPoolTaskExecutor") | ||
public Executor customPoolTaskExecutor() { | ||
final ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); | ||
executor.setCorePoolSize(2); | ||
executor.setMaxPoolSize(2); | ||
executor.setQueueCapacity(500); | ||
executor.setThreadNamePrefix(THREAD_PREFIX); | ||
executor.initialize(); | ||
return executor; | ||
} | ||
|
||
@Bean | ||
public RouteBuilder servletPlatformHttpRouteBuilder() { | ||
return new RouteBuilder() { | ||
@Override | ||
public void configure() { | ||
from("platform-http:/myget").id(postRouteId).setBody().constant("get"); | ||
from("platform-http:/mypost").id(getRouteId).transform().body(String.class, b -> b.toUpperCase()); | ||
|
||
from("platform-http:/executor").process(exchange -> exchange.getIn().setBody(Thread.currentThread().getName())); | ||
} | ||
}; | ||
} | ||
} | ||
|
||
@Override | ||
protected String getPostRouteId() { | ||
return postRouteId; | ||
} | ||
|
||
@Override | ||
protected String getGetRouteId() { | ||
return getRouteId; | ||
} | ||
|
||
@Autowired | ||
List<Executor> executors; | ||
|
||
@Test | ||
public void checkCustomExecutorIsPickedWhenMultipleExecutorsAreDefined() { | ||
Assertions.assertThat(executors).hasSizeGreaterThan(1); | ||
|
||
Assertions.assertThat(restTemplate.postForEntity("/executor", "test", String.class).getBody()) | ||
.contains(THREAD_PREFIX); | ||
} | ||
} |