blob: fff54edc6ccf6666545c5f5a00880bb5e412d251 [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.dataformat.csv;
import java.util.List;
import org.apache.camel.EndpointInject;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
public class CsvUnmarshalTwoCsvDataFormatConcurrentTest extends CamelTestSupport {
@EndpointInject(uri = "mock:result")
private MockEndpoint result;
@EndpointInject(uri = "mock:result2")
private MockEndpoint result2;
@Test
public void testCsvUnMarshal() throws Exception {
result.expectedMessageCount(1);
result2.expectedMessageCount(1);
sendAndVerify("|", result);
resetMocks();
result.expectedMessageCount(1);
result2.expectedMessageCount(1);
sendAndVerify(";", result2);
}
private void sendAndVerify(String delimiter, MockEndpoint mock) throws InterruptedException {
template.sendBody("direct:start", "123" + delimiter + "Camel in Action" + delimiter + "1\n124" + delimiter + "ActiveMQ in Action" + delimiter + "2");
assertMockEndpointsSatisfied();
@SuppressWarnings("unchecked")
List<List<String>> body = mock.getReceivedExchanges().get(0).getIn().getBody(List.class);
assertEquals(2, body.size());
assertEquals("123", body.get(0).get(0));
assertEquals("Camel in Action", body.get(0).get(1));
assertEquals("1", body.get(0).get(2));
assertEquals("124", body.get(1).get(0));
assertEquals("ActiveMQ in Action", body.get(1).get(1));
assertEquals("2", body.get(1).get(2));
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
CsvDataFormat csv = new CsvDataFormat().setDelimiter('|');
CsvDataFormat csv2 = new CsvDataFormat().setDelimiter(';');
from("direct:start")
.multicast().parallelProcessing().to("direct:csv", "direct:csv2");
from("direct:csv")
.unmarshal(csv)
.to("mock:result");
from("direct:csv2")
.unmarshal(csv2)
.to("mock:result2");
}
};
}
}