44.9. 기존 끝점 검색
Camel을 사용하면 Camel 경로의 기존 엔드포인트를 자동으로 사용할 수 있습니다.
어떻게 작동하는지
엔드 포인트가 여전히 작동 중입니다. 다르게 발생하는 것은 Mock 끝점이 삽입되고 메시지를 먼저 수신한 다음 메시지를 대상 끝점에 위임하는 것입니다. 이를 일종의 인터셉트 및 위임 또는 끝점 리스너로 볼 수 있습니다.
아래 지정된 경로가 있다고 가정합니다.
경로
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start").routeId("start")
.to("direct:foo").to("log:foo").to("mock:result");
from("direct:foo").routeId("foo")
.transform(constant("Bye World"));
}
};
}
그런 다음 Camel의 adviceWith 기능을 사용하여 다음과 같이 단위 테스트에서 지정된 경로에 있는 모든 엔드포인트를 모를 수 있습니다.
모든 엔드 포인트를 조작할 때 advicewith mocking
@Test
public void testAdvisedMockEndpoints() throws Exception {
// advice the start route using the inlined AdviceWith lambda style route builder
// which has extended capabilities than the regular route builder
AdviceWith.adviceWith(context, "start", a ->
// mock all endpoints
a.mockEndpoints());
getMockEndpoint("mock:direct:start").expectedBodiesReceived("Hello World");
getMockEndpoint("mock:direct:foo").expectedBodiesReceived("Hello World");
getMockEndpoint("mock:log:foo").expectedBodiesReceived("Bye World");
getMockEndpoint("mock:result").expectedBodiesReceived("Bye World");
template.sendBody("direct:start", "Hello World");
assertMockEndpointsSatisfied();
// additional test to ensure correct endpoints in registry
assertNotNull(context.hasEndpoint("direct:start"));
assertNotNull(context.hasEndpoint("direct:foo"));
assertNotNull(context.hasEndpoint("log:foo"));
assertNotNull(context.hasEndpoint("mock:result"));
// all the endpoints was mocked
assertNotNull(context.hasEndpoint("mock:direct:start"));
assertNotNull(context.hasEndpoint("mock:direct:foo"));
assertNotNull(context.hasEndpoint("mock:log:foo"));
}
mock 끝점에는 URI mock:<endpoint >가 지정됩니다(예: mock:direct:foo ). INFO 의 Camel 로그는 변조되는 끝점의 수준입니다.
INFO Adviced endpoint [direct://foo] with mock endpoint [mock:direct:foo]
모의 끝점에는 매개 변수가 없는
엔드 포인트의 매개 변수가 제거됩니다. 예를 들어 끝점 log:foo?showAll=true 는 다음 끝점 mock:log:foo 로 호출됩니다. 매개 변수가 제거되었습니다.
또한 패턴을 사용하여 특정 끝점을 변조할 수도 있습니다. 예를 들어 다음과 같이 수행하는 모든 로그 끝점을 추출하려면 다음을 수행합니다.
adviceWith mocking 패턴을 사용하여 끝점만 기록
@Test
public void testAdvisedMockEndpointsWithPattern() throws Exception {
// advice the start route using the inlined AdviceWith lambda style route builder
// which has extended capabilities than the regular route builder
AdviceWith.adviceWith(context, "start", a ->
// mock only log endpoints
a.mockEndpoints("log*"));
// now we can refer to log:foo as a mock and set our expectations
getMockEndpoint("mock:log:foo").expectedBodiesReceived("Bye World");
getMockEndpoint("mock:result").expectedBodiesReceived("Bye World");
template.sendBody("direct:start", "Hello World");
assertMockEndpointsSatisfied();
// additional test to ensure correct endpoints in registry
assertNotNull(context.hasEndpoint("direct:start"));
assertNotNull(context.hasEndpoint("direct:foo"));
assertNotNull(context.hasEndpoint("log:foo"));
assertNotNull(context.hasEndpoint("mock:result"));
// only the log:foo endpoint was mocked
assertNotNull(context.hasEndpoint("mock:log:foo"));
assertNull(context.hasEndpoint("mock:direct:start"));
assertNull(context.hasEndpoint("mock:direct:foo"));
}
지원되는 패턴은 와일드카드 또는 정규식일 수 있습니다. Camel에서 사용하는 것과 동일한 일치 기능으로 Intercept에 대한 자세한 내용은 Intercept에서 참조하십시오.
mocking 끝점은 mock에 도달하면 메시지가 복사되도록 합니다.
따라서 Camel이 더 많은 메모리를 사용하게 됩니다. 이 방법은 많은 메시지를 보낼 때 적합하지 않을 수 있습니다.