Package edu.umd.cs.mtc
Class RunThreadsThenInvokeMethod
- java.lang.Object
-
- org.junit.runners.model.Statement
-
- org.junit.internal.runners.statements.InvokeMethod
-
- edu.umd.cs.mtc.RunThreadsThenInvokeMethod
-
public class RunThreadsThenInvokeMethod extends org.junit.internal.runners.statements.InvokeMethod
This class plugs theMultithreadedTestCase
into the JUnit framework. Each test case starts by running all the thread methods in different threads. After that, the actual junit test method will be executed when all threads have finished. The thread methods are run in a new thread group, and are regulated by a separate clock thread. The clock thread checks periodically to see if all threads are blocked. If all threads are blocked and at least one is waiting for a tick, the clock thread advances the clock to the next desired tick. (A slight delay -- about a clock period -- is applied before advancing the clock to ensure that this is not done prematurely and any threads trying to unblock are given a chance to do so.) The clock thread also detects deadlock (when all threads are blocked, none are waiting for a tick, and none are in state TIMED_WAITING), and can stop a test that is going on too long (a thread is in state RUNNABLE for too long.) Since the test case threads are placed in a new thread group, any other threads created by these test cases will be placed in this thread group by default. All threads in the thread group will be considered by the clock thread when deciding whether to advance the clock, declare a deadlock, or stop a long-running test. The framework catches exceptions thrown in the threads and propagates them to the JUnit test (It also throws AssertionErrors) This class also defines a number of parameters to be used to control the tests. Set command line parameter -Dtunit.runLimit=n to cause a test case to fail if at least one thread stays in a runnable state for more than n seconds without becoming blocked or waiting for a metronome tick. Set command line parameter -Dtunit.clockPeriod=p to cause the clock thread to check the status of all the threads every p milliseconds.- Since:
- 1.0
- Author:
- William Pugh, Nathaniel Ayewah
- See Also:
MultithreadedTestCase
,runOnce(MultithreadedTestCase)
,runManyTimes(MultithreadedTestCase, int)
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CLOCKPERIOD_KEY
Command line key for indicating the regularity (in milliseconds) with which the clock thread regulates the thread methods.static java.lang.Integer
DEFAULT_CLOCKPERIOD
The default clock period in millisecondsstatic java.lang.Integer
DEFAULT_RUNLIMIT
The default run limit in secondsstatic java.lang.String
RUNLIMIT_KEY
Command line key for indicating the time limit (in seconds) for runnable threads.
-
Constructor Summary
Constructors Constructor Description RunThreadsThenInvokeMethod(org.junit.runners.model.FrameworkMethod testMethod, java.lang.Object target, int runTimes)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
evaluate()
static void
runInstrumentedManyTimes(MultithreadedTestCase test, int count, int[] failureCount)
Run multithreaded test case multiple times using the default or global settings for clock period and run limit.static void
runManyTimes(MultithreadedTestCase test, int count)
Run multithreaded test case multiple times using the default or global settings for clock period and run limit.static void
runManyTimes(MultithreadedTestCase test, int count, java.lang.Integer clockPeriod, java.lang.Integer runLimit)
Run multithreaded test case multiple times.static void
runOnce(MultithreadedTestCase test)
Run a multithreaded test case once, using the default or global settings for clock period and run limitstatic void
runOnce(MultithreadedTestCase test, java.lang.Integer clockPeriod, java.lang.Integer runLimit)
Run multithreaded test case once.static void
setGlobalClockPeriod(java.lang.Integer v)
Change/set the system property for the clock periodstatic void
setGlobalRunLimit(java.lang.Integer v)
Change/set the system property for the run limit
-
-
-
Field Detail
-
CLOCKPERIOD_KEY
public static final java.lang.String CLOCKPERIOD_KEY
Command line key for indicating the regularity (in milliseconds) with which the clock thread regulates the thread methods.- See Also:
- Constant Field Values
-
RUNLIMIT_KEY
public static final java.lang.String RUNLIMIT_KEY
Command line key for indicating the time limit (in seconds) for runnable threads.- See Also:
- Constant Field Values
-
DEFAULT_CLOCKPERIOD
public static final java.lang.Integer DEFAULT_CLOCKPERIOD
The default clock period in milliseconds
-
DEFAULT_RUNLIMIT
public static final java.lang.Integer DEFAULT_RUNLIMIT
The default run limit in seconds
-
-
Method Detail
-
setGlobalClockPeriod
public static void setGlobalClockPeriod(java.lang.Integer v)
Change/set the system property for the clock period- Parameters:
v
- the new value for the clock period
-
setGlobalRunLimit
public static void setGlobalRunLimit(java.lang.Integer v)
Change/set the system property for the run limit- Parameters:
v
- the new value for the run limit
-
runInstrumentedManyTimes
public static void runInstrumentedManyTimes(MultithreadedTestCase test, int count, int[] failureCount) throws java.lang.Throwable
Run multithreaded test case multiple times using the default or global settings for clock period and run limit. This method adds instrumentation to count the number of times failures occur (an exception is thrown). If the arrayfailureCount
is initialized to be of at least size 1, it returns this count infailureCount[0]
. If failures do occur, it saves the first failure, and then throws it after running the testcount
times.- Parameters:
test
- The multithreaded test case to runcount
- the number of times to run the test casefailureCount
- if this array is initialzed to at least size 1, the number of failures is returned infailureCount[0]
- Throws:
java.lang.Throwable
- if there is at least one failure -- the first failure is thrown
-
runManyTimes
public static void runManyTimes(MultithreadedTestCase test, int count) throws java.lang.Throwable
Run multithreaded test case multiple times using the default or global settings for clock period and run limit. The value of this is limited, since even running a test case a thousand or a million times may not expose any bugs dependent upon particular thread interleavings.- Parameters:
test
- The multithreaded test case to runcount
- the number of times to run the test case- Throws:
java.lang.Throwable
- -- if any of the test runs fails, the exception is thrown immediately without completing the rest of the test runs.
-
runManyTimes
public static void runManyTimes(MultithreadedTestCase test, int count, java.lang.Integer clockPeriod, java.lang.Integer runLimit) throws java.lang.Throwable
Run multithreaded test case multiple times. The value of this is limited, since even running a test case a thousand or a million times may not expose any bugs dependent upon particular thread interleavings.- Parameters:
test
- The multithreaded test case to runcount
- the number of times to run the test caseclockPeriod
- The period (in ms) between checks for the clock (or null for default or global setting)runLimit
- The limit to run the test in seconds (or null for default or global setting)- Throws:
java.lang.Throwable
- -- if any of the test runs fails, the exception is thrown immediately without completing the rest of the test runs.
-
runOnce
public static void runOnce(MultithreadedTestCase test) throws java.lang.Throwable
Run a multithreaded test case once, using the default or global settings for clock period and run limit- Parameters:
test
- The multithreaded test case to run- Throws:
java.lang.Throwable
- if the test runs fails or causes an exception
-
runOnce
public static void runOnce(MultithreadedTestCase test, java.lang.Integer clockPeriod, java.lang.Integer runLimit) throws java.lang.Throwable
Run multithreaded test case once.- Parameters:
test
- The multithreaded test case to runclockPeriod
- The period (in ms) between checks for the clock (or null for default or global setting)runLimit
- The limit to run the test in seconds (or null for default or global setting)- Throws:
java.lang.Throwable
- if the test runs fails or causes an exception
-
evaluate
public void evaluate() throws java.lang.Throwable
- Overrides:
evaluate
in classorg.junit.internal.runners.statements.InvokeMethod
- Throws:
java.lang.Throwable
-
-