Skip to content

Commit

Permalink
CAMEL-1688: enrich(uri) using default aggregation strategy added as f…
Browse files Browse the repository at this point in the history
…luent builder to Java DSL.

git-svn-id: https://svn.apache.org/repos/asf/camel/trunk@782911 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
davsclaus committed Jun 9, 2009
1 parent 94385c6 commit 64f1c5a
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
Expand Up @@ -1812,6 +1812,20 @@ public Type enrich(String resourceUri, AggregationStrategy aggregationStrategy)
return (Type) this;
}

/**
* Enriches an exchange with additional data obtained from a
* <code>resourceUri</code>.
*
* @param resourceUri URI of resource endpoint for obtaining additional data.
* @return the builder
* @see org.apache.camel.processor.Enricher
*/
@SuppressWarnings("unchecked")
public Type enrich(String resourceUri) {
addOutput(new EnrichDefinition(resourceUri));
return (Type) this;
}

/**
* Adds a onComplection {@link org.apache.camel.spi.Synchronization} hook that invoke this route as
* a callback when the {@link org.apache.camel.Exchange} has finished being processed.
Expand Down
@@ -0,0 +1,60 @@
/**
* 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.processor.enricher;

import org.apache.camel.ContextTestSupport;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;

/**
* @version $Revision$
*/
public class EnricherDefaultAggregationStrategyTest extends ContextTestSupport {

public void testEnrichInOnly() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:result");
mock.expectedBodiesReceived("Bye World");

template.sendBody("direct:start", "World");

assertMockEndpointsSatisfied();
}

public void testEnrichInOut() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:result");
mock.expectedBodiesReceived("Bye World");

String out = template.requestBody("direct:start", "World", String.class);
assertEquals("Bye World", out);

assertMockEndpointsSatisfied();
}

@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.enrich("direct:foo")
.to("mock:result");

from("direct:foo").transform(body().prepend("Bye "));
}
};
}
}

0 comments on commit 64f1c5a

Please sign in to comment.