Search in sources :

Example 1 with DefaultSessionFactory

use of quickfix.DefaultSessionFactory in project camel by apache.

the class TestSupport method createSession.

public static Session createSession(SessionID sessionID) throws ConfigError, IOException {
    MessageStoreFactory mockMessageStoreFactory = Mockito.mock(MessageStoreFactory.class);
    MessageStore mockMessageStore = Mockito.mock(MessageStore.class);
    Mockito.when(mockMessageStore.getCreationTime()).thenReturn(new Date());
    Mockito.when(mockMessageStoreFactory.create(sessionID)).thenReturn(mockMessageStore);
    DefaultSessionFactory factory = new DefaultSessionFactory(Mockito.mock(Application.class), mockMessageStoreFactory, Mockito.mock(LogFactory.class));
    SessionSettings settings = new SessionSettings();
    settings.setLong(Session.SETTING_HEARTBTINT, 10);
    settings.setString(Session.SETTING_START_TIME, "00:00:00");
    settings.setString(Session.SETTING_END_TIME, "00:00:00");
    settings.setString(SessionFactory.SETTING_CONNECTION_TYPE, SessionFactory.ACCEPTOR_CONNECTION_TYPE);
    settings.setBool(Session.SETTING_USE_DATA_DICTIONARY, false);
    return factory.create(sessionID, settings);
}
Also used : MessageStore(quickfix.MessageStore) LogFactory(quickfix.LogFactory) DefaultSessionFactory(quickfix.DefaultSessionFactory) MessageStoreFactory(quickfix.MessageStoreFactory) Application(quickfix.Application) Date(java.util.Date) SessionSettings(quickfix.SessionSettings)

Aggregations

Date (java.util.Date)1 Application (quickfix.Application)1 DefaultSessionFactory (quickfix.DefaultSessionFactory)1 LogFactory (quickfix.LogFactory)1 MessageStore (quickfix.MessageStore)1 MessageStoreFactory (quickfix.MessageStoreFactory)1 SessionSettings (quickfix.SessionSettings)1