Package org.mule.test.integration.transaction.xa

Source Code of org.mule.test.integration.transaction.xa.TransactionScenarios$OutboundMessagesCounter

/*
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.test.integration.transaction.xa;

import static org.junit.Assert.assertThat;

import org.mule.tck.probe.PollingProber;
import org.mule.tck.probe.Probe;

import org.hamcrest.core.Is;

public class TransactionScenarios
{

    private final InboundMessagesGenerator inboundMessagesGenerator;
    private final OutboundMessagesCounter outboundMessagesVerifier;
    private int verificationTimeout = 1000;

    public TransactionScenarios(InboundMessagesGenerator inboundMessagesGenerator, OutboundMessagesCounter outboundMessagesVerifier)
    {
        this.inboundMessagesGenerator = inboundMessagesGenerator;
        this.outboundMessagesVerifier = outboundMessagesVerifier;
    }

    public void testNoFailureDuringFlowExecution()
    {
        try
        {
            FailureGeneratorMessageProcessor.noFailure();
            testFlow(false);
        }
        finally
        {
            outboundMessagesVerifier.close();
        }
    }


    public void testIntermittentFailureDuringFlowExecution()
    {
        try
        {
            FailureGeneratorMessageProcessor.generateIntermitentFailure();
            testFlow(false);
        }
        finally
        {
            outboundMessagesVerifier.close();
        }
    }

    public void testAlwaysFailureDuringFlowException()
    {
        try
        {
            FailureGeneratorMessageProcessor.allFailure();
            testFlow(true);
        }
        finally
        {
            outboundMessagesVerifier.close();
        }
    }

    private void testFlow(final boolean noMessageExpected)
    {

        try
        {
            final Integer numberOfMessagesCreated = inboundMessagesGenerator.generateInboundMessages();
            if (noMessageExpected)
            {
                Thread.sleep(verificationTimeout);
                assertThat(outboundMessagesVerifier.numberOfMessagesThatArrived(), Is.is(0));
            }
            else
            {
                new PollingProber(10000, 100).check(new Probe()
                {
                    @Override
                    public boolean isSatisfied()
                    {
                        try
                        {
                            return outboundMessagesVerifier.numberOfMessagesThatArrived() == numberOfMessagesCreated;
                        }
                        catch (Exception e)
                        {
                            throw new RuntimeException(e);
                        }
                    }

                    @Override
                    public String describeFailure()
                    {
                        try
                        {
                            return String.format("Not all the messages arrived. Only %d of %s arrived", outboundMessagesVerifier.numberOfMessagesThatArrived(), numberOfMessagesCreated);
                        }
                        catch (Exception e)
                        {
                            return String.format("Not all messages arrived.");
                        }
                    }
                });
            }
        }
        catch (Exception e)
        {
            throw new RuntimeException(e);
        }
    }

    public TransactionScenarios setVerificationTimeout(int verificationTimeout)
    {
        this.verificationTimeout = verificationTimeout;
        return this;
    }


    public interface InboundMessagesGenerator
    {

        int NUMBER_OF_MESSAGES = 6;

        /**
         * Send messages to transactional inbound endpoint
         */
        Integer generateInboundMessages() throws Exception;
    }


    public interface OutboundMessagesCounter
    {

        /**
         * Returns he number of messages received in the outbound endpoint
         */
        int numberOfMessagesThatArrived() throws Exception;

        void close();
    }

}
TOP

Related Classes of org.mule.test.integration.transaction.xa.TransactionScenarios$OutboundMessagesCounter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.
y>