/** * 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.dataformat.bindy.model.fix.simple.Order; 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(); Order order = result.getReceivedExchanges().get(0).getIn().getBody(Order.class); Assert.assertTrue(order.getTrailer().toString().contains("10: 220")); Assert.assertTrue(order.getHeader().toString().contains("FIX.4.1, 9: 20, 34: 1 , 35: 0, 49: INVMGR, 56: BRKR")); Assert.assertTrue(order.toString().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, Order.class) .to(URI_MOCK_RESULT); } } }