|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object edu.umd.cs.mtc.TestFramework
public class TestFramework
This class provides static methods to perform a MultithreadedTestCase
.
The method runOnce(MultithreadedTestCase)
can be used
to run a MultithreadedTestCase once. The method
runManyTimes(MultithreadedTestCase, int)
can be used to
run a MultithreadedTestCase multiple times (to see if different interleavings
produce different behaviors).
Each test case starts by running the initialize method, followed by all the thread methods in different threads, and finally the finish method 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. 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.
MultithreadedTestCase
,
runOnce(MultithreadedTestCase)
,
runManyTimes(MultithreadedTestCase, int)
Field Summary | |
---|---|
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 milliseconds |
static java.lang.Integer |
DEFAULT_RUNLIMIT
The default run limit in seconds |
static java.lang.String |
RUNLIMIT_KEY
Command line key for indicating the time limit (in seconds) for runnable threads. |
Constructor Summary | |
---|---|
TestFramework()
|
Method Summary | |
---|---|
static void |
addSetUpAndTearDown(MultithreadedTest mtc,
TestCase tc)
Update a given test to call "setUp" and "tearDown" before and after running the test respectively. |
static TestSuite |
buildTestSuite(java.lang.Class<?> c)
Scan through a given class c to find any inner classes
that implement Test . |
static TestSuite |
buildTestSuite(java.lang.Class<?> c,
java.lang.String suiteName)
Scan through a given class c to find any inner classes
that implement Test . |
static void |
runInstrumentedManyTimes(MultithreadedTestCase test,
int count,
int[] failureCount)
|
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 limit |
static 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 period |
static void |
setGlobalRunLimit(java.lang.Integer v)
Change/set the system property for the run limit |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String CLOCKPERIOD_KEY
public static final java.lang.String RUNLIMIT_KEY
public static final java.lang.Integer DEFAULT_CLOCKPERIOD
public static final java.lang.Integer DEFAULT_RUNLIMIT
Constructor Detail |
---|
public TestFramework()
Method Detail |
---|
public static void setGlobalClockPeriod(java.lang.Integer v)
v
- the new value for the clock periodpublic static void setGlobalRunLimit(java.lang.Integer v)
v
- the new value for the run limitpublic static void runInstrumentedManyTimes(MultithreadedTestCase test, int count, int[] failureCount) throws java.lang.Throwable
java.lang.Throwable
public static void runManyTimes(MultithreadedTestCase test, int count) throws java.lang.Throwable
test
- The multithreaded test case to runcount
- the number of times to run the test case
java.lang.Throwable
public static void runManyTimes(MultithreadedTestCase test, int count, java.lang.Integer clockPeriod, java.lang.Integer runLimit) throws java.lang.Throwable
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)
java.lang.Throwable
public static void runOnce(MultithreadedTestCase test) throws java.lang.Throwable
test
- The multithreaded test case to run
java.lang.Throwable
public static void runOnce(MultithreadedTestCase test, java.lang.Integer clockPeriod, java.lang.Integer runLimit) throws java.lang.Throwable
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)
java.lang.Throwable
public static TestSuite buildTestSuite(java.lang.Class<?> c)
c
to find any inner classes
that implement Test
. If the classes have
a no-arg constructor, they are instantiated added them to a TestSuite.
If the inner classes are not declared static then an instance of the
class represented by c
(created with a no-arg constructor)
is used to construct the inner class. If no relevant inner classes are
found, then an empty TestSuite is returned.
c
- the class to scan for relevant inner classes
public static TestSuite buildTestSuite(java.lang.Class<?> c, java.lang.String suiteName)
c
to find any inner classes
that implement Test
. If the classes have
a no-arg constructor, they are instantiated added them to a TestSuite.
If the inner classes are not declared static then an instance of the
class represented by c
(created with a no-arg constructor)
is used to construct the inner class. If no relevant inner classes are
found, then an empty TestSuite is returned.
If the class is a TestCase, then an instance of it is passed to any non-static innerclass and the appropriate setUp and tearDown methods are called.
c
- the class to scan for relevant inner classessuiteName
- A name for the TestSuite
public static void addSetUpAndTearDown(MultithreadedTest mtc, TestCase tc) throws java.lang.SecurityException, java.lang.NoSuchMethodException
mtc
- the test to updatetc
- the TestCase that contains the setUp and tearDown methods called
Any
- exceptions that occur along the process. In this case, just
use the old uninstrumented Test.
java.lang.SecurityException
java.lang.NoSuchMethodException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |