Camel isMockEndpointsAndSkip不跳过jdbc端点

时间:2016-09-26 14:34:50

标签: mocking apache-camel camel-jdbc

我的路由以jdbc端点结束:

from(CONNECTOR).routeId(ROUTE_ID).process(createSelectStatement).to(jdbc);

以这种方式创建jdbc端点:

public static final String DB_NAME = "db";

private void setupJdbcEndpoint() {
    JdbcEndpoint endpoint = getContext().getEndpoint("jdbc:" + DB_NAME, JdbcEndpoint.class);
    endpoint.setOutputClass(OUTClass.class.getName());
    endpoint.setOutputType(JdbcOutputType.SelectList);
    jdbc = endpoint;
}

在我的单元测试中,我想“模拟并跳过”数据库:

@Override
public String isMockEndpointsAndSkip() {
    return "jdbc:*";
}

我还尝试了其他模式:“jdbc:db”,“jdbc:// db”(此字符串显示在日志中,是toString的输出)

但无论使用何种模式,都会调用数据库。日志显示

org.apache.camel.component.jdbc.JdbcProducer: Executing JDBC Statement: SELECT..

最后将正确的(空)结果发送到模拟端点。而模拟的endpint mock:jdbc:dbmock:jdbc://db()从未收到任何内容。

那么如何跳过这个jdbc端点?

如何获得使用通配符(如'*')创建的模拟端点的引用?

修改

使用此设置我也会在日志中看到:

InterceptSendToMockEndpointStrategy: Adviced endpoint [jdbc://db] with mock endpoint [mock:jdbc:db]

所以isMockEndpointAndSkip似乎有用吗?!但在我的情况下,不会跳过jdbc端点。

第二次编辑 - 尝试了Vimsha的答案 不使用isMockEndpointAndSkip但提供AdviceWithRouteBuilder没有帮助(我认为camel以同样的方式实现isMockEndpointAndSkip)。我在日志中看到(使用Vimsha建议的构建器):

InterceptSendToEndpoint[jdbc:* -> [To[mock://jdbc://db]]], process[Processor@0x6e9a5ed8], To[jdbc://db]]]

除了仍然调用数据库之外,模拟端点没有看到任何交换。

这里是构建器的详细信息:

new AdviceWithRouteBuilder() {

            @Override
            public void configure() throws Exception {
                replaceFromWith(in);
                interceptSendToEndpoint("jdbc:*").skipSendToOriginalEndpoint().to(dbMock);

            }
        };

2 个答案:

答案 0 :(得分:1)

如何使用拦截器跳过发送到jdbc端点并将其发送到模拟队列

RouteDefinition route = context.getRouteDefinitions().get(0);
route.adviceWith(context, new RouteBuilder() {
        @Override
        public void configure() throws Exception {
            interceptSendToEndpoint("jdbc:*")
                .skipSendToOriginalEndpoint()
                .to("mock:jdbc");
        }
});

您可以将jdbc端点更改为此

private void setupJdbcEndpoint() {
    jdbc = "jdbc:" + DB_NAME + "?outputType=SelectList&outputClass=" + OUTClass.class.getName();
}

请参阅此documentation

答案 1 :(得分:1)

Vimsha引导向正确的方向但由于某种原因这不起作用interceptSendToEndpoint("jdbc:*").skipSendToOriginalEndpoint()..

但这在我的路线中有效,我在jdbc端点添加了一个id:

...to(jdbc).id("jdbc")

在测试中我添加了这个AdviceWithRouteBuilder:

new AdviceWithRouteBuilder() {

        @Override
        public void configure() throws Exception {
            replaceFromWith(in);
            // interceptSendToEndpoint("jdbc:*").skipSendToOriginalEndpoint().to(dbMock);
            weaveById("jdbcOut").replace().to(dbMock);
        }
    };

所以weaveById并替换完成工作。