Search in sources :

Example 36 with Service

use of com.adaptris.core.Service in project interlok by adaptris.

the class IfElseTest method testSyntaxIdentifier.

@Test
public void testSyntaxIdentifier() throws Exception {
    Service mockThen = Mockito.mock(Service.class);
    Service mockElse = Mockito.mock(Service.class);
    IfElse ifElse = new IfElse();
    ifElse.getThen().setService(mockThen);
    ifElse.getOtherwise().setService(mockElse);
    ifElse.setCondition(new AlwaysMatchSyntaxIdentifier());
    try {
        LifecycleHelper.initAndStart(ifElse);
        ifElse.doService(message);
        verify(mockThen, times(1)).doService(message);
        verify(mockElse, times(0)).doService(message);
    } finally {
        LifecycleHelper.stopAndClose(ifElse);
    }
}
Also used : AlwaysMatchSyntaxIdentifier(com.adaptris.core.services.routing.AlwaysMatchSyntaxIdentifier) NullService(com.adaptris.core.NullService) Service(com.adaptris.core.Service) LogMessageService(com.adaptris.core.services.LogMessageService) Test(org.junit.Test)

Example 37 with Service

use of com.adaptris.core.Service in project interlok by adaptris.

the class WhileTest method testStopProcessingServiceCancelsLoop.

@Test
public void testStopProcessingServiceCancelsLoop() throws Exception {
    when(mockCondition.evaluate(message)).thenReturn(true);
    Service stopProcessingService = new StopProcessingService();
    ServiceList services = new ServiceList();
    services.add(stopProcessingService);
    services.add(mockService);
    thenService = new ThenService();
    thenService.setService(services);
    logicalExpression = new While().withThen(thenService).withCondition(mockCondition);
    startMe(logicalExpression);
    logicalExpression.doService(message);
    // The default would loop 10 times, but the stop-processing-service should limit us to only a single loop.
    verify(mockCondition, times(1)).evaluate(message);
}
Also used : ServiceList(com.adaptris.core.ServiceList) Service(com.adaptris.core.Service) LogMessageService(com.adaptris.core.services.LogMessageService) StopProcessingService(com.adaptris.core.services.StopProcessingService) StopProcessingService(com.adaptris.core.services.StopProcessingService) Test(org.junit.Test)

Example 38 with Service

use of com.adaptris.core.Service in project interlok by adaptris.

the class JdbcServiceListTest method testServiceList_AdvancedPooledConnection.

@Test
public void testServiceList_AdvancedPooledConnection() throws Exception {
    int maxServices = 5;
    final int iterations = 5;
    int poolsize = maxServices - 1;
    createDatabase();
    List<Service> serviceList = new ArrayList<Service>();
    String name = Thread.currentThread().getName();
    Thread.currentThread().setName(getName());
    AdvancedJdbcPooledConnection conn = PooledConnectionHelper.createAdvancedPooledConnection(PROPERTIES.getProperty(CFG_JDBC_DRIVER), PROPERTIES.getProperty(CFG_JDBC_URL), poolsize);
    try {
        GuidGenerator guid = new GuidGenerator();
        for (int i = 0; i < maxServices; i++) {
            // The Connection should never be used by the wrappedService, as it will exist in objectMetadata.
            JdbcServiceList service = createServiceCollection(createSequenceNumberService(conn, guid.safeUUID()), createSequenceNumberService(conn, guid.safeUUID()));
            service.setConnection(conn);
            serviceList.add(service);
            start(service);
        }
        PooledConnectionHelper.executeTest(serviceList, iterations, new PooledConnectionHelper.MessageCreator() {

            @Override
            public AdaptrisMessage createMsgForPooledConnectionTest() throws Exception {
                return AdaptrisMessageFactory.getDefaultInstance().newMessage();
            }
        });
        assertEquals(0, conn.currentBusyConnectionCount());
        assertEquals(poolsize, conn.currentIdleConnectionCount());
        assertEquals(poolsize, conn.currentConnectionCount());
    } finally {
        stop(serviceList.toArray(new ComponentLifecycle[0]));
        Thread.currentThread().setName(name);
    }
}
Also used : AdaptrisMessage(com.adaptris.core.AdaptrisMessage) ArrayList(java.util.ArrayList) AdvancedJdbcPooledConnection(com.adaptris.core.jdbc.AdvancedJdbcPooledConnection) NullService(com.adaptris.core.NullService) Service(com.adaptris.core.Service) PooledConnectionHelper(com.adaptris.core.jdbc.PooledConnectionHelper) ServiceException(com.adaptris.core.ServiceException) ComponentLifecycle(com.adaptris.core.ComponentLifecycle) GuidGenerator(com.adaptris.util.GuidGenerator) Test(org.junit.Test)

Example 39 with Service

use of com.adaptris.core.Service in project interlok by adaptris.

the class MetadataIdentitySequenceNumberServiceTest method testService_AdvancedPooledConnection.

@Test
public void testService_AdvancedPooledConnection() throws Exception {
    int maxServices = 5;
    final int iterations = 5;
    int poolsize = maxServices - 1;
    createDatabase();
    List<Service> serviceList = new ArrayList<Service>();
    String name = Thread.currentThread().getName();
    Thread.currentThread().setName(getName());
    AdvancedJdbcPooledConnection conn = PooledConnectionHelper.createAdvancedPooledConnection(PROPERTIES.getProperty(JDBC_SEQUENCENUMBER_DRIVER), PROPERTIES.getProperty(JDBC_SEQUENCENUMBER_URL), poolsize);
    try {
        for (int i = 0; i < maxServices; i++) {
            MetadataIdentitySequenceNumberService service = configureForTests(createService(), false);
            service.setConnection(conn);
            serviceList.add(service);
            start(service);
        }
        PooledConnectionHelper.executeTest(serviceList, iterations, new PooledConnectionHelper.MessageCreator() {

            @Override
            public AdaptrisMessage createMsgForPooledConnectionTest() throws Exception {
                AdaptrisMessage msg = AdaptrisMessageFactory.getDefaultInstance().newMessage();
                msg.addMetadata(DEFAULT_IDENTITY_METADATA_KEY, new GuidGenerator().safeUUID());
                return msg;
            }
        });
        assertEquals(0, conn.currentBusyConnectionCount());
        assertEquals(poolsize, conn.currentIdleConnectionCount());
        assertEquals(poolsize, conn.currentConnectionCount());
    } finally {
        stop(serviceList.toArray(new ComponentLifecycle[0]));
        Thread.currentThread().setName(name);
    }
}
Also used : AdaptrisMessage(com.adaptris.core.AdaptrisMessage) ArrayList(java.util.ArrayList) AdvancedJdbcPooledConnection(com.adaptris.core.jdbc.AdvancedJdbcPooledConnection) Service(com.adaptris.core.Service) PooledConnectionHelper(com.adaptris.core.jdbc.PooledConnectionHelper) ServiceException(com.adaptris.core.ServiceException) SQLException(java.sql.SQLException) ComponentLifecycle(com.adaptris.core.ComponentLifecycle) GuidGenerator(com.adaptris.util.GuidGenerator) Test(org.junit.Test)

Example 40 with Service

use of com.adaptris.core.Service in project interlok by adaptris.

the class StoredProcedureProducerTest method testProduce_AdvancedPooledConnection.

@Test
public void testProduce_AdvancedPooledConnection() throws Exception {
    int maxServices = 5;
    final int iterations = 5;
    int poolsize = maxServices - 1;
    if (areTestsEnabled()) {
        List<Service> serviceList = new ArrayList<Service>();
        String name = Thread.currentThread().getName();
        Thread.currentThread().setName(getName());
        AdvancedJdbcPooledConnection conn = PooledConnectionHelper.createAdvancedPooledConnection(PROPERTIES.getProperty(JDBC_DRIVER), PROPERTIES.getProperty(JDBC_URL), poolsize);
        conn.setUsername(PROPERTIES.getProperty(JDBC_USER));
        conn.setPassword(PROPERTIES.getProperty(JDBC_PASSWORD));
        try {
            for (int i = 0; i < maxServices; i++) {
                JdbcStoredProcedureProducer spp = new JdbcStoredProcedureProducer();
                spp.setProcedureName(("one_in"));
                JdbcStringPayloadParameter inParameter = new JdbcStringPayloadParameter();
                inParameter.setName("xType");
                inParameter.setType(ParameterValueType.VARCHAR);
                AdaptrisMessage msg = AdaptrisMessageFactory.getDefaultInstance().newMessage("Sold");
                InParameters inParameters = new InParameters();
                inParameters.add(inParameter);
                spp.setInParameters(inParameters);
                StandaloneProducer service = configureForTests(spp, false);
                service.setConnection(conn);
                serviceList.add(service);
                start(service);
            }
            PooledConnectionHelper.executeTest(serviceList, iterations, new PooledConnectionHelper.MessageCreator() {

                @Override
                public AdaptrisMessage createMsgForPooledConnectionTest() throws Exception {
                    return createMessage("Sold");
                }
            });
            assertEquals(0, conn.currentBusyConnectionCount());
            assertEquals(poolsize, conn.currentIdleConnectionCount());
            assertEquals(poolsize, conn.currentConnectionCount());
        } finally {
            stop(serviceList.toArray(new ComponentLifecycle[0]));
            Thread.currentThread().setName(name);
        }
    }
}
Also used : AdaptrisMessage(com.adaptris.core.AdaptrisMessage) ArrayList(java.util.ArrayList) Service(com.adaptris.core.Service) ServiceException(com.adaptris.core.ServiceException) XPathExpressionException(javax.xml.xpath.XPathExpressionException) IOException(java.io.IOException) ComponentLifecycle(com.adaptris.core.ComponentLifecycle) StandaloneProducer(com.adaptris.core.StandaloneProducer) Test(org.junit.Test)

Aggregations

Service (com.adaptris.core.Service)49 Test (org.junit.Test)38 AdaptrisMessage (com.adaptris.core.AdaptrisMessage)28 ServiceList (com.adaptris.core.ServiceList)16 ArrayList (java.util.ArrayList)16 ComponentLifecycle (com.adaptris.core.ComponentLifecycle)14 AdvancedJdbcPooledConnection (com.adaptris.core.jdbc.AdvancedJdbcPooledConnection)12 PooledConnectionHelper (com.adaptris.core.jdbc.PooledConnectionHelper)12 ServiceException (com.adaptris.core.ServiceException)11 MetadataElement (com.adaptris.core.MetadataElement)10 NullService (com.adaptris.core.NullService)10 StandaloneProducer (com.adaptris.core.StandaloneProducer)10 AddMetadataService (com.adaptris.core.services.metadata.AddMetadataService)10 MockMessageProducer (com.adaptris.core.stubs.MockMessageProducer)9 LogMessageService (com.adaptris.core.services.LogMessageService)8 ThrowExceptionService (com.adaptris.core.services.exception.ThrowExceptionService)7 MockChannel (com.adaptris.core.stubs.MockChannel)7 StandardProcessingExceptionHandler (com.adaptris.core.StandardProcessingExceptionHandler)6 JdbcPooledConnection (com.adaptris.core.jdbc.JdbcPooledConnection)6 GuidGenerator (com.adaptris.util.GuidGenerator)6