Package org.mule.context.notification

Source Code of org.mule.context.notification.FailingNotificationListenerTestCase

/*
* 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.context.notification;

import org.mule.api.client.LocalMuleClient;
import org.mule.api.context.notification.ExceptionNotificationListener;
import org.mule.api.context.notification.ServerNotification;
import org.mule.tck.junit4.FunctionalTestCase;
import org.mule.tck.probe.PollingProber;
import org.mule.tck.probe.Probe;
import org.mule.tck.probe.Prober;

import org.junit.Test;

public class FailingNotificationListenerTestCase extends FunctionalTestCase
{
    private static int count = 0;
    private static final Object lock = new Object();

    @Override
    protected String getConfigFile()
    {
        return "org/mule/test/integration/notifications/failing-notification-listener-config.xml";
    }

    @Test
    public void testName() throws Exception
    {
        LocalMuleClient client = muleContext.getClient();
        client.dispatch("vm://testInput", TEST_MESSAGE, null);
        client.dispatch("vm://testInput", TEST_MESSAGE, null);

        Prober prober = new PollingProber(1000, 10);
        prober.check(new Probe()
        {
            @Override
            public boolean isSatisfied()
            {
                return count == 2;
            }

            @Override
            public String describeFailure()
            {
                return "Expected to received 2 notifications but received " + count;
            }
        });
    }

    public static class ExceptionFailingListener implements ExceptionNotificationListener
    {
        @Override
        public void onNotification(ServerNotification notification)
        {
            synchronized (lock)
            {
                count = count + 1;
            }

            throw new IllegalStateException();
        }
    }
}
TOP

Related Classes of org.mule.context.notification.FailingNotificationListenerTestCase

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.