blob: e20d7a67ca5e6879ec52e52c817d7746a0bed91e [file] [log] [blame]
/*
* 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.aggregate.cassandra;
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.Session;
import org.apache.camel.AggregationStrategy;
import org.apache.camel.Exchange;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.cassandra.CassandraUnitUtils;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.processor.aggregate.util.HeaderDto;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.After;
import org.junit.Test;
import static org.junit.Assume.assumeTrue;
/**
* Unite test for {@link CassandraAggregationRepository}
*/
public class CassandraAggregationSerializedHeadersTest extends CamelTestSupport {
private Cluster cluster;
private CassandraAggregationRepository aggregationRepository;
@Override
protected void doPreSetup() throws Exception {
assumeTrue("Skipping test running in CI server - Fails sometimes on CI server with address already in use", System.getenv("BUILD_ID") == null);
CassandraUnitUtils.startEmbeddedCassandra();
cluster = CassandraUnitUtils.cassandraCluster();
Session rootSession = cluster.connect();
CassandraUnitUtils.loadCQLDataSet(rootSession, "NamedAggregationDataSet.cql");
rootSession.close();
aggregationRepository = new NamedCassandraAggregationRepository(cluster, CassandraUnitUtils.KEYSPACE, "ID");
aggregationRepository.setTable("NAMED_CAMEL_AGGREGATION");
aggregationRepository.setAllowSerializedHeaders(true);
aggregationRepository.start();
super.doPreSetup();
}
@Override
@After
public void tearDown() throws Exception {
super.tearDown();
aggregationRepository.stop();
cluster.close();
try {
CassandraUnitUtils.cleanEmbeddedCassandra();
} catch (Throwable e) {
// ignore shutdown errors
}
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
AggregationStrategy aggregationStrategy = new AggregationStrategy() {
@Override
public Exchange aggregate(Exchange oldExchange, Exchange newExchange) {
if (oldExchange == null) {
return newExchange;
}
String oldBody = oldExchange.getIn().getBody(String.class);
String newBody = newExchange.getIn().getBody(String.class);
oldExchange.getIn().setBody(oldBody + "," + newBody);
return oldExchange;
}
};
from("direct:input")
.aggregate(header("aggregationId"), aggregationStrategy)
.completionSize(3).completionTimeout(3000L)
.aggregationRepository(aggregationRepository)
.to("mock:output");
}
};
}
private void send(HeaderDto aggregationId, String body) {
super.template.sendBodyAndHeader("direct:input", body, "aggregationId", aggregationId);
}
@Test
public void testAggregationRoute() throws Exception {
// Given
MockEndpoint mockOutput = getMockEndpoint("mock:output");
mockOutput.expectedMessageCount(2);
mockOutput.expectedBodiesReceivedInAnyOrder("A,C,E", "B,D");
HeaderDto dto1 = new HeaderDto("org", "company", 1);
HeaderDto dto2 = new HeaderDto("org", "company", 2);
// When
send(dto1, "A");
send(dto2, "B");
send(dto1, "C");
send(dto2, "D");
send(dto1, "E");
// Then
mockOutput.assertIsSatisfied(4000L);
}
}