Search in sources :

Example 6 with BeginString

use of quickfix.field.BeginString in project wso2-synapse by wso2.

the class FIXTransportSenderTest method testIsTargetValid.

@Test
public void testIsTargetValid() throws Exception {
    Map<String, String> fieldValues = new HashMap<>();
    fieldValues.put(FIXConstants.BEGIN_STRING, "FIX.4.1");
    fieldValues.put(FIXConstants.DELIVER_TO_COMP_ID, "SYNAPSE");
    fieldValues.put(FIXConstants.DELIVER_TO_SUB_ID, "sy");
    fieldValues.put(FIXConstants.DELIVER_TO_LOCATION_ID, "randomLoc");
    SessionID id = new SessionID(new BeginString("FIX.4.1"), new SenderCompID("BANZAI"), new SenderSubID("ba"), new SenderLocationID("senderLoc"), new TargetCompID("SYNAPSE"), new TargetSubID("sy"), new TargetLocationID("randomLoc"), "FIX.4.1:SYNAPSE->BANZAI");
    FIXTransportSender sender = new FIXTransportSender();
    Class senderClass = sender.getClass();
    Method isTargetvalid = senderClass.getDeclaredMethod("isTargetValid", Map.class, SessionID.class, boolean.class);
    isTargetvalid.setAccessible(true);
    Object result = isTargetvalid.invoke(senderClass.newInstance(), fieldValues, id, true);
    Assert.assertEquals("Invalid target!", "true", result.toString());
}
Also used : BeginString(quickfix.field.BeginString) SenderCompID(quickfix.field.SenderCompID) SenderSubID(quickfix.field.SenderSubID) HashMap(java.util.HashMap) TargetCompID(quickfix.field.TargetCompID) TargetSubID(quickfix.field.TargetSubID) TargetLocationID(quickfix.field.TargetLocationID) BeginString(quickfix.field.BeginString) ArgumentMatchers.anyString(org.mockito.ArgumentMatchers.anyString) Method(java.lang.reflect.Method) SenderLocationID(quickfix.field.SenderLocationID) SessionID(quickfix.SessionID) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest) Test(org.junit.Test)

Example 7 with BeginString

use of quickfix.field.BeginString in project wso2-synapse by wso2.

the class FIXTransportSenderTest method testFIXTransportSenderSendMessage.

@Test()
public void testFIXTransportSenderSendMessage() throws Exception {
    String BEGIN_STRING = "FIX.4.1";
    String SENDER_ID = "BANZAI";
    String TARGET_ID = "SYNAPSE";
    int SEQ_NUM = 5;
    String SYMBOL = "APACHE";
    String CLORD_ID = "12345";
    String CHECKSUM = "67890";
    String TX_DATE = new Date().toString();
    String SESSION_ID = "FIX.4.1:BANZAI->SYNAPSE";
    Message message = new NewOrderSingle();
    message.getHeader().setField(new BeginString(BEGIN_STRING));
    message.getHeader().setField(new SenderCompID(SENDER_ID));
    message.getHeader().setField(new TargetCompID(TARGET_ID));
    message.getHeader().setField(new MsgSeqNum(SEQ_NUM));
    message.setField(new Symbol(SYMBOL));
    message.setField(new ClOrdID(CLORD_ID));
    message.setField(new TradeOriginationDate(TX_DATE));
    message.getTrailer().setField(new CheckSum(CHECKSUM));
    MessageContext msgCtx = new MessageContext();
    msgCtx.setProperty(FIXConstants.FIX_SERVICE_NAME, "sampleService");
    Map trpHeaders = new HashMap();
    trpHeaders.put(FIXConstants.FIX_MESSAGE_APPLICATION, "sampleApplication");
    msgCtx.setProperty(MessageContext.TRANSPORT_HEADERS, trpHeaders);
    FIXUtils.getInstance().setSOAPEnvelope(message, SEQ_NUM, SESSION_ID, msgCtx);
    OutTransportInfo info = new FIXOutTransportInfo("fix://dummyEPR");
    FIXTransportSender spy = PowerMockito.spy(new FIXTransportSender());
    PowerMockito.doReturn(true).when(spy, "sendUsingEPR", anyString(), anyString(), any(), anyString(), anyInt(), any());
    spy.sendMessage(msgCtx, "fix://dummyEPR", info);
    PowerMockito.verifyPrivate(spy, times(1)).invoke("sendUsingEPR", anyString(), anyString(), any(), anyString(), anyInt(), any());
}
Also used : NewOrderSingle(quickfix.fix41.NewOrderSingle) BeginString(quickfix.field.BeginString) SenderCompID(quickfix.field.SenderCompID) Message(quickfix.Message) HashMap(java.util.HashMap) Symbol(quickfix.field.Symbol) TargetCompID(quickfix.field.TargetCompID) ClOrdID(quickfix.field.ClOrdID) TradeOriginationDate(quickfix.field.TradeOriginationDate) BeginString(quickfix.field.BeginString) ArgumentMatchers.anyString(org.mockito.ArgumentMatchers.anyString) MsgSeqNum(quickfix.field.MsgSeqNum) Date(java.util.Date) TradeOriginationDate(quickfix.field.TradeOriginationDate) OutTransportInfo(org.apache.axis2.transport.OutTransportInfo) CheckSum(quickfix.field.CheckSum) MessageContext(org.apache.axis2.context.MessageContext) HashMap(java.util.HashMap) Map(java.util.Map) PrepareForTest(org.powermock.core.classloader.annotations.PrepareForTest) Test(org.junit.Test)

Aggregations

BeginString (quickfix.field.BeginString)7 Test (org.junit.Test)6 PrepareForTest (org.powermock.core.classloader.annotations.PrepareForTest)6 SenderCompID (quickfix.field.SenderCompID)6 TargetCompID (quickfix.field.TargetCompID)6 Message (quickfix.Message)5 SessionID (quickfix.SessionID)5 NewOrderSingle (quickfix.fix41.NewOrderSingle)5 MsgSeqNum (quickfix.field.MsgSeqNum)4 ConfigurationContext (org.apache.axis2.context.ConfigurationContext)3 AxisConfiguration (org.apache.axis2.engine.AxisConfiguration)3 NativeWorkerPool (org.apache.axis2.transport.base.threads.NativeWorkerPool)3 WorkerPool (org.apache.axis2.transport.base.threads.WorkerPool)3 ArgumentMatchers.anyString (org.mockito.ArgumentMatchers.anyString)3 MsgType (quickfix.field.MsgType)3 HashMap (java.util.HashMap)2 MessageContext (org.apache.axis2.context.MessageContext)2 InputStreamReader (java.io.InputStreamReader)1 Reader (java.io.Reader)1 Method (java.lang.reflect.Method)1