Package hivemind.test.services

Source Code of hivemind.test.services.TestThreadEventNotifier

// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package hivemind.test.services;

import org.apache.hivemind.service.ThreadCleanupListener;
import org.apache.hivemind.service.ThreadEventNotifier;
import org.apache.hivemind.service.impl.ThreadEventNotifierImpl;

import hivemind.test.FrameworkTestCase;

/**
* Tests for {@link org.apache.hivemind.service.impl.ThreadEventNotifierImpl}.
*
* @author Howard Lewis Ship
*/
public class TestThreadEventNotifier extends FrameworkTestCase
{
    static class Listener implements ThreadCleanupListener
    {
        boolean _cleanup;

        public void threadDidCleanup()
        {
            _cleanup = true;
        }

    }

    static class ConcurMod implements ThreadCleanupListener
    {
        boolean _cleanup;
        ThreadEventNotifier _notifier;

        ConcurMod(ThreadEventNotifier notifier)
        {
            _notifier = notifier;
        }

        public void threadDidCleanup()
        {
            _cleanup = true;
            _notifier.removeThreadCleanupListener(this);
        }

    }

    public void testAdd()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();
        Listener l = new Listener();

        n.addThreadCleanupListener(l);
        n.fireThreadCleanup();

        assertEquals(true, l._cleanup);
    }

    public void testRemove()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();

        Listener l1 = new Listener();
        Listener l2 = new Listener();

        n.addThreadCleanupListener(l1);
        n.addThreadCleanupListener(l2);
        n.removeThreadCleanupListener(l1);

        n.fireThreadCleanup();

        assertEquals(false, l1._cleanup);
        assertEquals(true, l2._cleanup);
    }

    public void testConcur()
    {
        ThreadEventNotifier n = new ThreadEventNotifierImpl();

        Listener l1 = new Listener();
        ConcurMod l2 = new ConcurMod(n);
        Listener l3 = new Listener();

        n.addThreadCleanupListener(l1);
        n.addThreadCleanupListener(l2);
        n.addThreadCleanupListener(l3);

        n.fireThreadCleanup();

        assertEquals(true, l1._cleanup);
        assertEquals(true, l2._cleanup);
        assertEquals(true, l3._cleanup);

        l1._cleanup = false;
        l2._cleanup = false;
        l3._cleanup = false;

        n.fireThreadCleanup();

        assertEquals(true, l1._cleanup);
        assertEquals(false, l2._cleanup);
        assertEquals(true, l3._cleanup);
    }

}
TOP

Related Classes of hivemind.test.services.TestThreadEventNotifier

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.