blob: 2c38ca9992104263914dcc8f05f09d3feeb2fc9f [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.fix;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.dataformat.bindy.CommonBindyTest;
import org.apache.camel.model.dataformat.BindyType;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
@ContextConfiguration
public class BindySimpleKeyValuePairUnmarshallDslTest extends CommonBindyTest {
@Test
@DirtiesContext
public void testUnMarshallMessage() throws Exception {
result.expectedMessageCount(1);
result.assertIsSatisfied();
String body = result.getReceivedExchanges().get(0).getIn().getBody(String.class);
Assert.assertTrue(body.contains("10: 220"));
Assert.assertTrue(body.contains("FIX.4.1, 9: 20, 34: 1 , 35: 0, 49: INVMGR, 56: BRKR"));
Assert.assertTrue(body.contains("BE.CHM.001, 11: CHM0001-01, 22: 4, 48: BE0001245678, 54: 1, 58: this is a camel - bindy test"));
}
public static class ContextConfig extends RouteBuilder {
public void configure() {
from(URI_FILE_FIX).unmarshal()
.bindy(BindyType.KeyValue, "org.apache.camel.dataformat.bindy.model.fix.simple")
.to(URI_MOCK_RESULT);
}
}
}