/* * org.openmicroscopy.shoola.util.concur.TestProducerLoopInt * *------------------------------------------------------------------------------ * Copyright (C) 2006 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.util.concur; //Java imports //Third-party libraries import junit.framework.TestCase; //Application-internal dependencies /** * Verifies that {@link TestProducerLoopInt} correctly aborts in the case of * interruption. * Here we concentrate on the <code>waitForData</code> methods (that is, * interruptions in consumer threads) as interruption in the producer thread * is caused by cancellation and is handled by the tasks library. * Each test spawns an ad-hoc thread which is interrupted to verify how * {@link TestProducerLoopInt} reacts to interruption. The result of the * test is passed back into the main flow (JUnit) so to perform the needed * assertions. * Note that we never interrupt JUnit. Spawning another thread might seem * unecessary when we could just interrupt JUnit and then clear the interrupted * status after the test. However implementation characteristics of * interruption-based methods are quite uncertain, so we prefer using a * separate thread (which is simply discarded at the end of the test) rather * than interrupting JUnit and making thus room for possible side effects. * * @see org.openmicroscopy.shoola.util.concur.ThreadSupport * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author <br>Andrea Falconi      * <a href="mailto:a.falconi@dundee.ac.uk"> * a.falconi@dundee.ac.uk</a> * @version 2.2 * <small> * (<b>Internal version:</b> $Revision$ $Date$) * </small> * @since OME2.2 */ public class TestProducerLoopInt extends TestCase { private static final int BUF_SZ = 10; //both buffer size and payload. private ProducerLoop target; //Object under test. //Task performed in a separate thread, which is interrupted. private class DoWaitForData implements Runnable { InterruptedException intExc; //To transfer exc to the main thread. boolean callTimed; //Tells which waitForData() to call in run(). DoWaitForData(boolean callTimed) { this.callTimed = callTimed; } public void run() { try { if (callTimed) target.waitForData(0, BUF_SZ, 2000); else target.waitForData(0, BUF_SZ); } catch (InterruptedException ie) { intExc = ie; } catch (BufferWriteException bwe) { //Don't bother, intExc will be null and the test will fail. } } } public void setUp() { AsyncByteBuffer buffer = new AsyncByteBuffer(BUF_SZ, BUF_SZ); FakeByteBufferFiller producer = new FakeByteBufferFiller(BUF_SZ, (byte) 1); target = new ProducerLoop(buffer, producer); target.register(new ControlFlowObserver() { public void update(int checkPointID) { //Called w/in ad-hoc thread, see below. if (checkPointID == ProducerLoop.LOCK_ACQUIRED) Thread.currentThread().interrupt(); } }); } public void testThreadInterruption() { //Create a task to call target.doWaitForData(off, len). DoWaitForData doWaitForData = new DoWaitForData(false); //Run the task in a new interrupted thread and wait for it to finish //-- so its working memory will be flushed. ThreadSupport.runInNewInterruptedThread(doWaitForData); //Now check that an InterruptedException was thrown. assertNotNull("A waitForData shouldn't proceed if the thread is "+ "interrupted.", doWaitForData.intExc); } public void testThreadInterruption2() { //Create a task to call target.doWaitForData(off, len, timeout). DoWaitForData doWaitForData = new DoWaitForData(true); //Run the task in a new interrupted thread and wait for it to finish //-- so its working memory will be flushed. ThreadSupport.runInNewInterruptedThread(doWaitForData); //Now check that an InterruptedException was thrown. assertNotNull("A waitForData shouldn't proceed if the thread is "+ "interrupted.", doWaitForData.intExc); } public void testThreadInterruptionWhileWaiting() { //Create a task to call target.doWaitForData(off, len). DoWaitForData doWaitForData = new DoWaitForData(false); //Run the task in a new thread which will be interrupted just after //sem's lock is acquired (see setUp) and wait for it to finish -- //so its working memory will be flushed. ThreadSupport.runInNewThread(doWaitForData); //Now check that an InterruptedException was thrown. assertNotNull("waitForData shouldn't have proceeded before data was "+ "produced.", doWaitForData.intExc); } public void testThreadInterruptionWhileWaiting2() { //Create a task to call target.doWaitForData(off, len, timeout). DoWaitForData doWaitForData = new DoWaitForData(true); //Run the task in a new thread which will be interrupted just after //sem's lock is acquired (see setUp) and wait for it to finish -- //so its working memory will be flushed. ThreadSupport.runInNewThread(doWaitForData); //Now check that an InterruptedException was thrown. assertNotNull("waitForData shouldn't have proceeded before data was "+ "produced.", doWaitForData.intExc); } }