blob: df6d161c236eb14f5d35252ce6b1ec5e33b873bf [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.bindy.csv;
import java.util.List;
import java.util.Map;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.dataformat.bindy.model.simple.pipeline.MyData;
import org.apache.camel.model.dataformat.BindyType;
import org.apache.camel.test.CamelTestSupport;
import org.junit.Test;
/**
* @version
*/
public class BindyPipeDelimiterTest extends CamelTestSupport {
@Test
public void testBindyPipeDelimiter() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:result");
mock.expectedMessageCount(1);
template.sendBody("direct:start", "COL1|COL2|COL3\nHAPPY | NEW | YEAR");
assertMockEndpointsSatisfied();
Map map1 = (Map) mock.getReceivedExchanges().get(0).getIn().getBody(List.class).get(0);
Map map2 = (Map) mock.getReceivedExchanges().get(0).getIn().getBody(List.class).get(1);
MyData rec1 = (MyData) map1.values().iterator().next();
MyData rec2 = (MyData) map2.values().iterator().next();
assertEquals("COL1", rec1.getCol1());
assertEquals("COL2", rec1.getCol2());
assertEquals("COL3", rec1.getCol3());
assertEquals("HAPPY ", rec2.getCol1());
assertEquals(" NEW ", rec2.getCol2());
assertEquals(" YEAR", rec2.getCol3());
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.unmarshal().bindy(BindyType.Csv, "org.apache.camel.dataformat.bindy.model.simple.pipeline")
.to("mock:result");
}
};
}
}