Questions tagged [camel-test]
35 questions
0
votes
2 answers
camel test replace seda with direct in original route
camel test, replace seda with direct.
In my camel route test i wants to replace seda call with direct for example
instead of "seda:Second_route_id" my consumer should be "direct:Second_route_id" for test
Following is my original…

d-man
- 57,473
- 85
- 212
- 296
0
votes
0 answers
How to perform Arquillian Testing with Apache Camel Routes
I'm new to Apache Camel. I have written simple program to place a file to another Location using camel routes. And I have written Junit and Mock Tests for that.
This is my simpleCamelRoute.java
@Component
public class SimpleCamelRoute extends…

AVINASH M
- 487
- 3
- 7
- 19
0
votes
0 answers
Camel : DirectConsumerNotAvailable exception during test
I have the following RouteBuilder:
MyRouteBuilder.java
@Component
public class MyRouteBuilder extends SpringRouteBuilder {
@Autowired
private MQConnectionProperties mqConnectionProperties;
@Override
public void configure() {
…

jbailie1991
- 1,305
- 2
- 21
- 42
0
votes
1 answer
Camel Stub database interactions on Unit testing
I am new to camel world. Using camel-cxf, i have implemented a webservice (Based on id on the request, query the database if found form the response with record details else return with static response) which has some very basic database…

Shankar
- 1
- 1
-1
votes
1 answer
Spring Testing a Camel Content Based Router
I have the following Spring route:
…

panza
- 1,341
- 7
- 38
- 68