/** * 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.component.quickfixj; import java.io.IOException; import java.util.Timer; import java.util.TimerTask; import javax.management.JMException; import org.apache.camel.Exchange; import org.apache.camel.ExchangePattern; import org.junit.Before; import org.junit.Test; import org.mockito.Matchers; import org.mockito.Mockito; import org.mockito.invocation.InvocationOnMock; import org.mockito.stubbing.Answer; import quickfix.ConfigError; import quickfix.FieldConvertError; import quickfix.FixVersions; import quickfix.Message; import quickfix.MessageUtils; import quickfix.Session; import quickfix.SessionID; import quickfix.field.BeginString; import quickfix.field.MsgType; import quickfix.field.SenderCompID; import quickfix.field.TargetCompID; import quickfix.fix42.Email; public class QuickfixjProducerTest { private Exchange mockExchange; private QuickfixjEndpoint mockEndpoint; private org.apache.camel.Message mockCamelMessage; private QuickfixjProducer producer; private SessionID sessionID; private Message inboundFixMessage; private QuickfixjEngine quickfixjEngine; @Before public void setUp() throws ConfigError, FieldConvertError, IOException, JMException { mockExchange = Mockito.mock(Exchange.class); mockEndpoint = Mockito.mock(QuickfixjEndpoint.class); mockCamelMessage = Mockito.mock(org.apache.camel.Message.class); Mockito.when(mockExchange.getIn()).thenReturn(mockCamelMessage); Mockito.when(mockExchange.getPattern()).thenReturn(ExchangePattern.InOnly); quickfixjEngine = TestSupport.createEngine(); Mockito.when(mockEndpoint.getEngine()).thenReturn(quickfixjEngine); inboundFixMessage = new Message(); inboundFixMessage.getHeader().setString(BeginString.FIELD, FixVersions.BEGINSTRING_FIX44); inboundFixMessage.getHeader().setString(SenderCompID.FIELD, "SENDER"); inboundFixMessage.getHeader().setString(TargetCompID.FIELD, "TARGET"); sessionID = MessageUtils.getSessionID(inboundFixMessage); Mockito.when(mockCamelMessage.getBody(Message.class)).thenReturn(inboundFixMessage); Mockito.when(mockEndpoint.getSessionID()).thenReturn(sessionID); producer = Mockito.spy(new QuickfixjProducer(mockEndpoint)); } public class TestException extends RuntimeException { private static final long serialVersionUID = 1L; } @Test public void setExceptionOnExchange() throws Exception { Session mockSession = Mockito.spy(TestSupport.createSession(sessionID)); Mockito.doReturn(mockSession).when(producer).getSession(MessageUtils.getSessionID(inboundFixMessage)); Mockito.doThrow(new TestException()).when(mockSession).send(Matchers.isA(Message.class)); producer.process(mockExchange); Mockito.verify(mockExchange).setException(Matchers.isA(TestException.class)); } @Test public void processInOnlyExchangeSuccess() throws Exception { Session mockSession = Mockito.spy(TestSupport.createSession(sessionID)); Mockito.doReturn(mockSession).when(producer).getSession(MessageUtils.getSessionID(inboundFixMessage)); Mockito.doReturn(true).when(mockSession).send(Matchers.isA(Message.class)); producer.process(mockExchange); Mockito.verify(mockExchange, Mockito.never()).setException(Matchers.isA(IllegalStateException.class)); Mockito.verify(mockSession).send(inboundFixMessage); } @Test public void processInOnlyExchangeSendUnsuccessful() throws Exception { Session mockSession = Mockito.spy(TestSupport.createSession(sessionID)); Mockito.doReturn(mockSession).when(producer).getSession(MessageUtils.getSessionID(inboundFixMessage)); Mockito.doReturn(false).when(mockSession).send(Matchers.isA(Message.class)); producer.process(mockExchange); Mockito.verify(mockSession).send(inboundFixMessage); Mockito.verify(mockExchange).setException(Matchers.isA(CannotSendException.class)); } @Test public void processInOutExchangeSuccess() throws Exception { Mockito.when(mockExchange.getPattern()).thenReturn(ExchangePattern.InOut); SessionID responseSessionID = new SessionID(sessionID.getBeginString(), sessionID.getTargetCompID(), sessionID.getSenderCompID()); Mockito.when(mockExchange.getProperty(QuickfixjProducer.CORRELATION_CRITERIA_KEY)).thenReturn( new MessagePredicate(responseSessionID, MsgType.EMAIL)); Mockito.when(mockExchange.getProperty( QuickfixjProducer.CORRELATION_TIMEOUT_KEY, 1000L, Long.class)).thenReturn(5000L); org.apache.camel.Message mockOutboundCamelMessage = Mockito.mock(org.apache.camel.Message.class); Mockito.when(mockExchange.getOut()).thenReturn(mockOutboundCamelMessage); final Message outboundFixMessage = new Email(); outboundFixMessage.getHeader().setString(SenderCompID.FIELD, "TARGET"); outboundFixMessage.getHeader().setString(TargetCompID.FIELD, "SENDER"); Session mockSession = Mockito.spy(TestSupport.createSession(sessionID)); Mockito.doReturn(mockSession).when(producer).getSession(MessageUtils.getSessionID(inboundFixMessage)); Mockito.doAnswer(new Answer<Boolean>() { @Override public Boolean answer(InvocationOnMock invocation) throws Throwable { new Timer().schedule(new TimerTask() { @Override public void run() { try { quickfixjEngine.getMessageCorrelator().onEvent(QuickfixjEventCategory.AppMessageReceived, sessionID, outboundFixMessage); } catch (Exception e) { throw new RuntimeException(e); } } }, 10); return true; } }).when(mockSession).send(Matchers.isA(Message.class)); producer.process(mockExchange); Mockito.verify(mockExchange, Mockito.never()).setException(Matchers.isA(IllegalStateException.class)); Mockito.verify(mockSession).send(inboundFixMessage); Mockito.verify(mockOutboundCamelMessage).getHeaders(); Mockito.verify(mockOutboundCamelMessage).setBody(outboundFixMessage); } @Test public void processInOutExchangeSendUnsuccessful() throws Exception { Mockito.when(mockExchange.getPattern()).thenReturn(ExchangePattern.InOut); Mockito.when(mockExchange.getProperty(QuickfixjProducer.CORRELATION_CRITERIA_KEY)).thenReturn( new MessagePredicate(sessionID, MsgType.EMAIL)); Mockito.when(mockExchange.getProperty( QuickfixjProducer.CORRELATION_TIMEOUT_KEY, 1000L, Long.class)).thenReturn(5000L); org.apache.camel.Message mockOutboundCamelMessage = Mockito.mock(org.apache.camel.Message.class); Mockito.when(mockExchange.getOut()).thenReturn(mockOutboundCamelMessage); final Message outboundFixMessage = new Email(); outboundFixMessage.getHeader().setString(SenderCompID.FIELD, "TARGET"); outboundFixMessage.getHeader().setString(TargetCompID.FIELD, "SENDER"); Session mockSession = Mockito.spy(TestSupport.createSession(sessionID)); Mockito.doReturn(mockSession).when(producer).getSession(MessageUtils.getSessionID(inboundFixMessage)); Mockito.doAnswer(new Answer<Boolean>() { @Override public Boolean answer(InvocationOnMock invocation) throws Throwable { new Timer().schedule(new TimerTask() { @Override public void run() { try { quickfixjEngine.getMessageCorrelator().onEvent(QuickfixjEventCategory.AppMessageReceived, sessionID, outboundFixMessage); } catch (Exception e) { throw new RuntimeException(e); } } }, 10); return false; } }).when(mockSession).send(Matchers.isA(Message.class)); producer.process(mockExchange); Mockito.verify(mockOutboundCamelMessage, Mockito.never()).setBody(Matchers.isA(Message.class)); Mockito.verify(mockSession).send(inboundFixMessage); Mockito.verify(mockExchange).setException(Matchers.isA(CannotSendException.class)); } }