ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ReentrantLockTest.java
Revision: 1.65
Committed: Sun May 14 02:03:15 2017 UTC (7 years ago) by jsr166
Branch: MAIN
Changes since 1.64: +7 -8 lines
Log Message:
claw back some millis using assertThreadBlocks

File Contents

# User Rev Content
1 dl 1.1 /*
2 dl 1.12 * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4 jsr166 1.39 * http://creativecommons.org/publicdomain/zero/1.0/
5 jsr166 1.26 * Other contributors include Andrew Wright, Jeffrey Hayes,
6     * Pat Fisher, Mike Judd.
7 dl 1.1 */
8    
9 jsr166 1.54 import static java.util.concurrent.TimeUnit.MILLISECONDS;
10    
11     import java.util.Arrays;
12     import java.util.Collection;
13     import java.util.HashSet;
14     import java.util.concurrent.CountDownLatch;
15     import java.util.concurrent.CyclicBarrier;
16 jsr166 1.50 import java.util.concurrent.locks.Condition;
17     import java.util.concurrent.locks.ReentrantLock;
18 jsr166 1.54
19     import junit.framework.AssertionFailedError;
20     import junit.framework.Test;
21     import junit.framework.TestSuite;
22 dl 1.1
23 dl 1.4 public class ReentrantLockTest extends JSR166TestCase {
24 dl 1.1 public static void main(String[] args) {
25 jsr166 1.58 main(suite(), args);
26 dl 1.1 }
27     public static Test suite() {
28 jsr166 1.30 return new TestSuite(ReentrantLockTest.class);
29 dl 1.1 }
30    
31 dl 1.6 /**
32 jsr166 1.56 * A checked runnable calling lockInterruptibly
33 dl 1.6 */
34 jsr166 1.29 class InterruptibleLockRunnable extends CheckedRunnable {
35 dl 1.5 final ReentrantLock lock;
36 jsr166 1.56 InterruptibleLockRunnable(ReentrantLock lock) { this.lock = lock; }
37 jsr166 1.29 public void realRun() throws InterruptedException {
38     lock.lockInterruptibly();
39 dl 1.5 }
40     }
41    
42 dl 1.6 /**
43 jsr166 1.56 * A checked runnable calling lockInterruptibly that expects to be
44 dl 1.6 * interrupted
45     */
46 jsr166 1.29 class InterruptedLockRunnable extends CheckedInterruptedRunnable {
47 dl 1.5 final ReentrantLock lock;
48 jsr166 1.56 InterruptedLockRunnable(ReentrantLock lock) { this.lock = lock; }
49 jsr166 1.29 public void realRun() throws InterruptedException {
50     lock.lockInterruptibly();
51 dl 1.5 }
52     }
53    
54     /**
55 dl 1.6 * Subclass to expose protected methods
56 dl 1.5 */
57 dl 1.6 static class PublicReentrantLock extends ReentrantLock {
58     PublicReentrantLock() { super(); }
59 jsr166 1.45 PublicReentrantLock(boolean fair) { super(fair); }
60     public Thread getOwner() {
61     return super.getOwner();
62     }
63 jsr166 1.26 public Collection<Thread> getQueuedThreads() {
64     return super.getQueuedThreads();
65 dl 1.5 }
66 jsr166 1.26 public Collection<Thread> getWaitingThreads(Condition c) {
67     return super.getWaitingThreads(c);
68 dl 1.13 }
69 dl 1.5 }
70    
71 dl 1.8 /**
72 jsr166 1.45 * Releases write lock, checking that it had a hold count of 1.
73     */
74     void releaseLock(PublicReentrantLock lock) {
75 jsr166 1.46 assertLockedByMoi(lock);
76 jsr166 1.45 lock.unlock();
77     assertFalse(lock.isHeldByCurrentThread());
78     assertNotLocked(lock);
79     }
80    
81     /**
82     * Spin-waits until lock.hasQueuedThread(t) becomes true.
83     */
84     void waitForQueuedThread(PublicReentrantLock lock, Thread t) {
85     long startTime = System.nanoTime();
86     while (!lock.hasQueuedThread(t)) {
87     if (millisElapsedSince(startTime) > LONG_DELAY_MS)
88 jsr166 1.47 throw new AssertionFailedError("timed out");
89 jsr166 1.45 Thread.yield();
90     }
91     assertTrue(t.isAlive());
92 jsr166 1.52 assertNotSame(t, lock.getOwner());
93 jsr166 1.45 }
94    
95     /**
96     * Checks that lock is not locked.
97     */
98     void assertNotLocked(PublicReentrantLock lock) {
99     assertFalse(lock.isLocked());
100     assertFalse(lock.isHeldByCurrentThread());
101     assertNull(lock.getOwner());
102     assertEquals(0, lock.getHoldCount());
103     }
104    
105     /**
106     * Checks that lock is locked by the given thread.
107     */
108     void assertLockedBy(PublicReentrantLock lock, Thread t) {
109     assertTrue(lock.isLocked());
110     assertSame(t, lock.getOwner());
111     assertEquals(t == Thread.currentThread(),
112     lock.isHeldByCurrentThread());
113     assertEquals(t == Thread.currentThread(),
114     lock.getHoldCount() > 0);
115     }
116    
117     /**
118 jsr166 1.46 * Checks that lock is locked by the current thread.
119     */
120     void assertLockedByMoi(PublicReentrantLock lock) {
121     assertLockedBy(lock, Thread.currentThread());
122     }
123    
124     /**
125 jsr166 1.43 * Checks that condition c has no waiters.
126     */
127     void assertHasNoWaiters(PublicReentrantLock lock, Condition c) {
128     assertHasWaiters(lock, c, new Thread[] {});
129     }
130    
131     /**
132     * Checks that condition c has exactly the given waiter threads.
133     */
134     void assertHasWaiters(PublicReentrantLock lock, Condition c,
135     Thread... threads) {
136     lock.lock();
137     assertEquals(threads.length > 0, lock.hasWaiters(c));
138     assertEquals(threads.length, lock.getWaitQueueLength(c));
139     assertEquals(threads.length == 0, lock.getWaitingThreads(c).isEmpty());
140     assertEquals(threads.length, lock.getWaitingThreads(c).size());
141     assertEquals(new HashSet<Thread>(lock.getWaitingThreads(c)),
142     new HashSet<Thread>(Arrays.asList(threads)));
143     lock.unlock();
144     }
145    
146 jsr166 1.53 enum AwaitMethod { await, awaitTimed, awaitNanos, awaitUntil }
147 jsr166 1.46
148     /**
149 jsr166 1.60 * Awaits condition "indefinitely" using the specified AwaitMethod.
150 jsr166 1.46 */
151     void await(Condition c, AwaitMethod awaitMethod)
152     throws InterruptedException {
153 jsr166 1.48 long timeoutMillis = 2 * LONG_DELAY_MS;
154 jsr166 1.46 switch (awaitMethod) {
155     case await:
156     c.await();
157     break;
158 jsr166 1.48 case awaitTimed:
159     assertTrue(c.await(timeoutMillis, MILLISECONDS));
160     break;
161 jsr166 1.46 case awaitNanos:
162 jsr166 1.60 long timeoutNanos = MILLISECONDS.toNanos(timeoutMillis);
163     long nanosRemaining = c.awaitNanos(timeoutNanos);
164 jsr166 1.61 assertTrue(nanosRemaining > timeoutNanos / 2);
165 jsr166 1.60 assertTrue(nanosRemaining <= timeoutNanos);
166 jsr166 1.46 break;
167     case awaitUntil:
168 jsr166 1.48 assertTrue(c.awaitUntil(delayedDate(timeoutMillis)));
169 jsr166 1.46 break;
170 jsr166 1.55 default:
171     throw new AssertionError();
172 jsr166 1.46 }
173     }
174    
175 jsr166 1.43 /**
176 jsr166 1.45 * Constructor sets given fairness, and is in unlocked state
177 dl 1.9 */
178 jsr166 1.26 public void testConstructor() {
179 jsr166 1.45 PublicReentrantLock lock;
180    
181     lock = new PublicReentrantLock();
182     assertFalse(lock.isFair());
183     assertNotLocked(lock);
184    
185     lock = new PublicReentrantLock(true);
186     assertTrue(lock.isFair());
187     assertNotLocked(lock);
188    
189     lock = new PublicReentrantLock(false);
190     assertFalse(lock.isFair());
191     assertNotLocked(lock);
192 dl 1.9 }
193    
194     /**
195 dl 1.6 * locking an unlocked lock succeeds
196     */
197 jsr166 1.46 public void testLock() { testLock(false); }
198     public void testLock_fair() { testLock(true); }
199     public void testLock(boolean fair) {
200     PublicReentrantLock lock = new PublicReentrantLock(fair);
201 jsr166 1.45 lock.lock();
202 jsr166 1.46 assertLockedByMoi(lock);
203 jsr166 1.45 releaseLock(lock);
204 dl 1.6 }
205    
206 dl 1.8 /**
207 dl 1.5 * Unlocking an unlocked lock throws IllegalMonitorStateException
208 dl 1.1 */
209 jsr166 1.46 public void testUnlock_IMSE() { testUnlock_IMSE(false); }
210     public void testUnlock_IMSE_fair() { testUnlock_IMSE(true); }
211     public void testUnlock_IMSE(boolean fair) {
212 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
213 jsr166 1.30 try {
214 jsr166 1.45 lock.unlock();
215 jsr166 1.30 shouldThrow();
216     } catch (IllegalMonitorStateException success) {}
217 dl 1.5 }
218 dl 1.1
219 dl 1.8 /**
220 dl 1.15 * tryLock on an unlocked lock succeeds
221 dl 1.1 */
222 jsr166 1.46 public void testTryLock() { testTryLock(false); }
223     public void testTryLock_fair() { testTryLock(true); }
224     public void testTryLock(boolean fair) {
225     PublicReentrantLock lock = new PublicReentrantLock(fair);
226     assertTrue(lock.tryLock());
227     assertLockedByMoi(lock);
228 jsr166 1.45 assertTrue(lock.tryLock());
229 jsr166 1.46 assertLockedByMoi(lock);
230     lock.unlock();
231 jsr166 1.45 releaseLock(lock);
232 dl 1.6 }
233    
234 dl 1.8 /**
235 dl 1.13 * hasQueuedThreads reports whether there are waiting threads
236     */
237 jsr166 1.46 public void testHasQueuedThreads() { testHasQueuedThreads(false); }
238     public void testHasQueuedThreads_fair() { testHasQueuedThreads(true); }
239     public void testHasQueuedThreads(boolean fair) {
240     final PublicReentrantLock lock = new PublicReentrantLock(fair);
241 dl 1.13 Thread t1 = new Thread(new InterruptedLockRunnable(lock));
242     Thread t2 = new Thread(new InterruptibleLockRunnable(lock));
243 jsr166 1.29 assertFalse(lock.hasQueuedThreads());
244     lock.lock();
245 jsr166 1.45 assertFalse(lock.hasQueuedThreads());
246 jsr166 1.29 t1.start();
247 jsr166 1.45 waitForQueuedThread(lock, t1);
248 jsr166 1.29 assertTrue(lock.hasQueuedThreads());
249     t2.start();
250 jsr166 1.45 waitForQueuedThread(lock, t2);
251 jsr166 1.29 assertTrue(lock.hasQueuedThreads());
252     t1.interrupt();
253 jsr166 1.45 awaitTermination(t1);
254 jsr166 1.29 assertTrue(lock.hasQueuedThreads());
255     lock.unlock();
256 jsr166 1.45 awaitTermination(t2);
257 jsr166 1.29 assertFalse(lock.hasQueuedThreads());
258 jsr166 1.26 }
259 dl 1.13
260     /**
261 dl 1.7 * getQueueLength reports number of waiting threads
262 dl 1.1 */
263 jsr166 1.46 public void testGetQueueLength() { testGetQueueLength(false); }
264     public void testGetQueueLength_fair() { testGetQueueLength(true); }
265     public void testGetQueueLength(boolean fair) {
266     final PublicReentrantLock lock = new PublicReentrantLock(fair);
267 dl 1.16 Thread t1 = new Thread(new InterruptedLockRunnable(lock));
268     Thread t2 = new Thread(new InterruptibleLockRunnable(lock));
269 jsr166 1.29 assertEquals(0, lock.getQueueLength());
270     lock.lock();
271     t1.start();
272 jsr166 1.45 waitForQueuedThread(lock, t1);
273 jsr166 1.29 assertEquals(1, lock.getQueueLength());
274     t2.start();
275 jsr166 1.45 waitForQueuedThread(lock, t2);
276 jsr166 1.29 assertEquals(2, lock.getQueueLength());
277     t1.interrupt();
278 jsr166 1.45 awaitTermination(t1);
279 jsr166 1.29 assertEquals(1, lock.getQueueLength());
280     lock.unlock();
281 jsr166 1.45 awaitTermination(t2);
282 jsr166 1.29 assertEquals(0, lock.getQueueLength());
283 jsr166 1.26 }
284 dl 1.16
285     /**
286 dl 1.19 * hasQueuedThread(null) throws NPE
287     */
288 jsr166 1.46 public void testHasQueuedThreadNPE() { testHasQueuedThreadNPE(false); }
289     public void testHasQueuedThreadNPE_fair() { testHasQueuedThreadNPE(true); }
290     public void testHasQueuedThreadNPE(boolean fair) {
291     final ReentrantLock lock = new ReentrantLock(fair);
292 dl 1.19 try {
293 jsr166 1.45 lock.hasQueuedThread(null);
294 dl 1.19 shouldThrow();
295 jsr166 1.29 } catch (NullPointerException success) {}
296 dl 1.19 }
297    
298     /**
299 jsr166 1.49 * hasQueuedThread reports whether a thread is queued
300 dl 1.19 */
301 jsr166 1.46 public void testHasQueuedThread() { testHasQueuedThread(false); }
302     public void testHasQueuedThread_fair() { testHasQueuedThread(true); }
303     public void testHasQueuedThread(boolean fair) {
304     final PublicReentrantLock lock = new PublicReentrantLock(fair);
305 jsr166 1.45 Thread t1 = new Thread(new InterruptedLockRunnable(lock));
306     Thread t2 = new Thread(new InterruptibleLockRunnable(lock));
307     assertFalse(lock.hasQueuedThread(t1));
308     assertFalse(lock.hasQueuedThread(t2));
309     lock.lock();
310 jsr166 1.29 t1.start();
311 jsr166 1.45 waitForQueuedThread(lock, t1);
312     assertTrue(lock.hasQueuedThread(t1));
313     assertFalse(lock.hasQueuedThread(t2));
314 jsr166 1.29 t2.start();
315 jsr166 1.45 waitForQueuedThread(lock, t2);
316     assertTrue(lock.hasQueuedThread(t1));
317     assertTrue(lock.hasQueuedThread(t2));
318 jsr166 1.29 t1.interrupt();
319 jsr166 1.42 awaitTermination(t1);
320 jsr166 1.45 assertFalse(lock.hasQueuedThread(t1));
321     assertTrue(lock.hasQueuedThread(t2));
322     lock.unlock();
323 jsr166 1.42 awaitTermination(t2);
324 jsr166 1.45 assertFalse(lock.hasQueuedThread(t1));
325     assertFalse(lock.hasQueuedThread(t2));
326 jsr166 1.26 }
327 dl 1.19
328     /**
329 dl 1.5 * getQueuedThreads includes waiting threads
330     */
331 jsr166 1.46 public void testGetQueuedThreads() { testGetQueuedThreads(false); }
332     public void testGetQueuedThreads_fair() { testGetQueuedThreads(true); }
333     public void testGetQueuedThreads(boolean fair) {
334     final PublicReentrantLock lock = new PublicReentrantLock(fair);
335 dl 1.5 Thread t1 = new Thread(new InterruptedLockRunnable(lock));
336     Thread t2 = new Thread(new InterruptibleLockRunnable(lock));
337 jsr166 1.29 assertTrue(lock.getQueuedThreads().isEmpty());
338     lock.lock();
339     assertTrue(lock.getQueuedThreads().isEmpty());
340     t1.start();
341 jsr166 1.45 waitForQueuedThread(lock, t1);
342     assertEquals(1, lock.getQueuedThreads().size());
343 jsr166 1.29 assertTrue(lock.getQueuedThreads().contains(t1));
344     t2.start();
345 jsr166 1.45 waitForQueuedThread(lock, t2);
346     assertEquals(2, lock.getQueuedThreads().size());
347 jsr166 1.29 assertTrue(lock.getQueuedThreads().contains(t1));
348     assertTrue(lock.getQueuedThreads().contains(t2));
349     t1.interrupt();
350 jsr166 1.45 awaitTermination(t1);
351 jsr166 1.29 assertFalse(lock.getQueuedThreads().contains(t1));
352     assertTrue(lock.getQueuedThreads().contains(t2));
353 jsr166 1.45 assertEquals(1, lock.getQueuedThreads().size());
354 jsr166 1.29 lock.unlock();
355 jsr166 1.45 awaitTermination(t2);
356 jsr166 1.29 assertTrue(lock.getQueuedThreads().isEmpty());
357 jsr166 1.26 }
358 dl 1.5
359 dl 1.8 /**
360 jsr166 1.49 * timed tryLock is interruptible
361 dl 1.5 */
362 jsr166 1.46 public void testTryLock_Interruptible() { testTryLock_Interruptible(false); }
363     public void testTryLock_Interruptible_fair() { testTryLock_Interruptible(true); }
364     public void testTryLock_Interruptible(boolean fair) {
365     final PublicReentrantLock lock = new PublicReentrantLock(fair);
366 jsr166 1.30 lock.lock();
367 jsr166 1.41 Thread t = newStartedThread(new CheckedInterruptedRunnable() {
368 jsr166 1.29 public void realRun() throws InterruptedException {
369 jsr166 1.45 lock.tryLock(2 * LONG_DELAY_MS, MILLISECONDS);
370 jsr166 1.29 }});
371    
372 jsr166 1.45 waitForQueuedThread(lock, t);
373 jsr166 1.29 t.interrupt();
374 jsr166 1.42 awaitTermination(t);
375 jsr166 1.45 releaseLock(lock);
376 dl 1.1 }
377    
378 dl 1.5 /**
379 jsr166 1.45 * tryLock on a locked lock fails
380 dl 1.5 */
381 jsr166 1.46 public void testTryLockWhenLocked() { testTryLockWhenLocked(false); }
382     public void testTryLockWhenLocked_fair() { testTryLockWhenLocked(true); }
383     public void testTryLockWhenLocked(boolean fair) {
384     final PublicReentrantLock lock = new PublicReentrantLock(fair);
385 jsr166 1.30 lock.lock();
386 jsr166 1.41 Thread t = newStartedThread(new CheckedRunnable() {
387 jsr166 1.29 public void realRun() {
388 jsr166 1.37 assertFalse(lock.tryLock());
389 jsr166 1.29 }});
390    
391 jsr166 1.42 awaitTermination(t);
392 jsr166 1.45 releaseLock(lock);
393 jsr166 1.26 }
394 dl 1.3
395 dl 1.5 /**
396 dl 1.15 * Timed tryLock on a locked lock times out
397 dl 1.5 */
398 jsr166 1.46 public void testTryLock_Timeout() { testTryLock_Timeout(false); }
399     public void testTryLock_Timeout_fair() { testTryLock_Timeout(true); }
400     public void testTryLock_Timeout(boolean fair) {
401     final PublicReentrantLock lock = new PublicReentrantLock(fair);
402 jsr166 1.64 final long timeoutMillis = timeoutMillis();
403 jsr166 1.30 lock.lock();
404 jsr166 1.41 Thread t = newStartedThread(new CheckedRunnable() {
405 jsr166 1.29 public void realRun() throws InterruptedException {
406 jsr166 1.45 long startTime = System.nanoTime();
407     assertFalse(lock.tryLock(timeoutMillis, MILLISECONDS));
408     assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
409 jsr166 1.29 }});
410    
411 jsr166 1.42 awaitTermination(t);
412 jsr166 1.45 releaseLock(lock);
413 jsr166 1.26 }
414    
415 dl 1.5 /**
416     * getHoldCount returns number of recursive holds
417     */
418 jsr166 1.46 public void testGetHoldCount() { testGetHoldCount(false); }
419     public void testGetHoldCount_fair() { testGetHoldCount(true); }
420     public void testGetHoldCount(boolean fair) {
421 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
422 jsr166 1.30 for (int i = 1; i <= SIZE; i++) {
423     lock.lock();
424     assertEquals(i, lock.getHoldCount());
425     }
426     for (int i = SIZE; i > 0; i--) {
427     lock.unlock();
428 jsr166 1.59 assertEquals(i - 1, lock.getHoldCount());
429 jsr166 1.30 }
430 dl 1.1 }
431 jsr166 1.26
432 dl 1.5 /**
433     * isLocked is true when locked and false when not
434     */
435 jsr166 1.46 public void testIsLocked() { testIsLocked(false); }
436     public void testIsLocked_fair() { testIsLocked(true); }
437     public void testIsLocked(boolean fair) {
438 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
439 jsr166 1.46 try {
440     assertFalse(lock.isLocked());
441     lock.lock();
442     assertTrue(lock.isLocked());
443     lock.lock();
444     assertTrue(lock.isLocked());
445     lock.unlock();
446     assertTrue(lock.isLocked());
447     lock.unlock();
448     assertFalse(lock.isLocked());
449     final CyclicBarrier barrier = new CyclicBarrier(2);
450     Thread t = newStartedThread(new CheckedRunnable() {
451     public void realRun() throws Exception {
452     lock.lock();
453     assertTrue(lock.isLocked());
454     barrier.await();
455     barrier.await();
456     lock.unlock();
457     }});
458    
459     barrier.await();
460     assertTrue(lock.isLocked());
461     barrier.await();
462     awaitTermination(t);
463     assertFalse(lock.isLocked());
464 jsr166 1.57 } catch (Exception fail) { threadUnexpectedException(fail); }
465 jsr166 1.26 }
466 dl 1.6
467 dl 1.5 /**
468     * lockInterruptibly succeeds when unlocked, else is interruptible
469     */
470 jsr166 1.46 public void testLockInterruptibly() { testLockInterruptibly(false); }
471     public void testLockInterruptibly_fair() { testLockInterruptibly(true); }
472     public void testLockInterruptibly(boolean fair) {
473     final PublicReentrantLock lock = new PublicReentrantLock(fair);
474     try {
475     lock.lockInterruptibly();
476 jsr166 1.57 } catch (InterruptedException fail) { threadUnexpectedException(fail); }
477 jsr166 1.46 assertLockedByMoi(lock);
478 jsr166 1.41 Thread t = newStartedThread(new InterruptedLockRunnable(lock));
479 jsr166 1.45 waitForQueuedThread(lock, t);
480 jsr166 1.29 t.interrupt();
481     assertTrue(lock.isLocked());
482     assertTrue(lock.isHeldByCurrentThread());
483 jsr166 1.42 awaitTermination(t);
484 jsr166 1.45 releaseLock(lock);
485 dl 1.1 }
486 dl 1.2
487 dl 1.6 /**
488     * Calling await without holding lock throws IllegalMonitorStateException
489     */
490 jsr166 1.46 public void testAwait_IMSE() { testAwait_IMSE(false); }
491     public void testAwait_IMSE_fair() { testAwait_IMSE(true); }
492     public void testAwait_IMSE(boolean fair) {
493     final ReentrantLock lock = new ReentrantLock(fair);
494 dl 1.2 final Condition c = lock.newCondition();
495 jsr166 1.48 for (AwaitMethod awaitMethod : AwaitMethod.values()) {
496     long startTime = System.nanoTime();
497 jsr166 1.46 try {
498 jsr166 1.48 await(c, awaitMethod);
499 jsr166 1.46 shouldThrow();
500 jsr166 1.48 } catch (IllegalMonitorStateException success) {
501     } catch (InterruptedException e) { threadUnexpectedException(e); }
502     assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
503 jsr166 1.46 }
504 dl 1.2 }
505    
506 dl 1.6 /**
507     * Calling signal without holding lock throws IllegalMonitorStateException
508     */
509 jsr166 1.46 public void testSignal_IMSE() { testSignal_IMSE(false); }
510     public void testSignal_IMSE_fair() { testSignal_IMSE(true); }
511     public void testSignal_IMSE(boolean fair) {
512     final ReentrantLock lock = new ReentrantLock(fair);
513 dl 1.2 final Condition c = lock.newCondition();
514     try {
515     c.signal();
516 dl 1.6 shouldThrow();
517 jsr166 1.29 } catch (IllegalMonitorStateException success) {}
518 dl 1.2 }
519    
520 dl 1.6 /**
521     * awaitNanos without a signal times out
522     */
523 jsr166 1.46 public void testAwaitNanos_Timeout() { testAwaitNanos_Timeout(false); }
524     public void testAwaitNanos_Timeout_fair() { testAwaitNanos_Timeout(true); }
525     public void testAwaitNanos_Timeout(boolean fair) {
526 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
527     final Condition c = lock.newCondition();
528     final long timeoutMillis = timeoutMillis();
529     final long timeoutNanos = MILLISECONDS.toNanos(timeoutMillis);
530     lock.lock();
531     final long startTime = System.nanoTime();
532 jsr166 1.46 try {
533     long nanosRemaining = c.awaitNanos(timeoutNanos);
534     assertTrue(nanosRemaining <= 0);
535 jsr166 1.57 } catch (InterruptedException fail) { threadUnexpectedException(fail); }
536 jsr166 1.64 assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
537     lock.unlock();
538 dl 1.2 }
539    
540 dl 1.6 /**
541 jsr166 1.38 * timed await without a signal times out
542 dl 1.6 */
543 jsr166 1.46 public void testAwait_Timeout() { testAwait_Timeout(false); }
544     public void testAwait_Timeout_fair() { testAwait_Timeout(true); }
545     public void testAwait_Timeout(boolean fair) {
546 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
547     final Condition c = lock.newCondition();
548     final long timeoutMillis = timeoutMillis();
549     lock.lock();
550     final long startTime = System.nanoTime();
551 jsr166 1.46 try {
552     assertFalse(c.await(timeoutMillis, MILLISECONDS));
553 jsr166 1.57 } catch (InterruptedException fail) { threadUnexpectedException(fail); }
554 jsr166 1.64 assertTrue(millisElapsedSince(startTime) >= timeoutMillis);
555     lock.unlock();
556 dl 1.2 }
557    
558 dl 1.6 /**
559     * awaitUntil without a signal times out
560     */
561 jsr166 1.46 public void testAwaitUntil_Timeout() { testAwaitUntil_Timeout(false); }
562     public void testAwaitUntil_Timeout_fair() { testAwaitUntil_Timeout(true); }
563     public void testAwaitUntil_Timeout(boolean fair) {
564 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
565     final Condition c = lock.newCondition();
566     lock.lock();
567     // We shouldn't assume that nanoTime and currentTimeMillis
568     // use the same time source, so don't use nanoTime here.
569     final java.util.Date delayedDate = delayedDate(timeoutMillis());
570 jsr166 1.46 try {
571 jsr166 1.63 assertFalse(c.awaitUntil(delayedDate));
572 jsr166 1.57 } catch (InterruptedException fail) { threadUnexpectedException(fail); }
573 jsr166 1.64 assertTrue(new java.util.Date().getTime() >= delayedDate.getTime());
574     lock.unlock();
575 dl 1.2 }
576    
577 dl 1.6 /**
578     * await returns when signalled
579     */
580 jsr166 1.46 public void testAwait() { testAwait(false); }
581     public void testAwait_fair() { testAwait(true); }
582     public void testAwait(boolean fair) {
583     final PublicReentrantLock lock = new PublicReentrantLock(fair);
584 dl 1.13 final Condition c = lock.newCondition();
585 jsr166 1.45 final CountDownLatch locked = new CountDownLatch(1);
586 jsr166 1.41 Thread t = newStartedThread(new CheckedRunnable() {
587 jsr166 1.29 public void realRun() throws InterruptedException {
588     lock.lock();
589 jsr166 1.45 locked.countDown();
590 jsr166 1.29 c.await();
591     lock.unlock();
592     }});
593 dl 1.5
594 jsr166 1.46 await(locked);
595 jsr166 1.29 lock.lock();
596 jsr166 1.45 assertHasWaiters(lock, c, t);
597 jsr166 1.29 c.signal();
598 jsr166 1.45 assertHasNoWaiters(lock, c);
599     assertTrue(t.isAlive());
600 jsr166 1.29 lock.unlock();
601 jsr166 1.42 awaitTermination(t);
602 dl 1.5 }
603    
604 dl 1.6 /**
605 dl 1.14 * hasWaiters throws NPE if null
606     */
607 jsr166 1.46 public void testHasWaitersNPE() { testHasWaitersNPE(false); }
608     public void testHasWaitersNPE_fair() { testHasWaitersNPE(true); }
609     public void testHasWaitersNPE(boolean fair) {
610     final ReentrantLock lock = new ReentrantLock(fair);
611 dl 1.14 try {
612     lock.hasWaiters(null);
613     shouldThrow();
614 jsr166 1.29 } catch (NullPointerException success) {}
615 dl 1.14 }
616    
617     /**
618     * getWaitQueueLength throws NPE if null
619     */
620 jsr166 1.46 public void testGetWaitQueueLengthNPE() { testGetWaitQueueLengthNPE(false); }
621     public void testGetWaitQueueLengthNPE_fair() { testGetWaitQueueLengthNPE(true); }
622     public void testGetWaitQueueLengthNPE(boolean fair) {
623     final ReentrantLock lock = new ReentrantLock(fair);
624 dl 1.14 try {
625     lock.getWaitQueueLength(null);
626     shouldThrow();
627 jsr166 1.29 } catch (NullPointerException success) {}
628 dl 1.14 }
629    
630     /**
631     * getWaitingThreads throws NPE if null
632     */
633 jsr166 1.46 public void testGetWaitingThreadsNPE() { testGetWaitingThreadsNPE(false); }
634     public void testGetWaitingThreadsNPE_fair() { testGetWaitingThreadsNPE(true); }
635     public void testGetWaitingThreadsNPE(boolean fair) {
636     final PublicReentrantLock lock = new PublicReentrantLock(fair);
637 dl 1.14 try {
638     lock.getWaitingThreads(null);
639     shouldThrow();
640 jsr166 1.29 } catch (NullPointerException success) {}
641 dl 1.14 }
642    
643     /**
644 jsr166 1.45 * hasWaiters throws IllegalArgumentException if not owned
645 dl 1.13 */
646 jsr166 1.46 public void testHasWaitersIAE() { testHasWaitersIAE(false); }
647     public void testHasWaitersIAE_fair() { testHasWaitersIAE(true); }
648     public void testHasWaitersIAE(boolean fair) {
649     final ReentrantLock lock = new ReentrantLock(fair);
650 jsr166 1.29 final Condition c = lock.newCondition();
651 jsr166 1.46 final ReentrantLock lock2 = new ReentrantLock(fair);
652 dl 1.13 try {
653     lock2.hasWaiters(c);
654     shouldThrow();
655 jsr166 1.29 } catch (IllegalArgumentException success) {}
656 dl 1.13 }
657    
658     /**
659 jsr166 1.45 * hasWaiters throws IllegalMonitorStateException if not locked
660 dl 1.13 */
661 jsr166 1.46 public void testHasWaitersIMSE() { testHasWaitersIMSE(false); }
662     public void testHasWaitersIMSE_fair() { testHasWaitersIMSE(true); }
663     public void testHasWaitersIMSE(boolean fair) {
664     final ReentrantLock lock = new ReentrantLock(fair);
665 jsr166 1.29 final Condition c = lock.newCondition();
666 dl 1.13 try {
667     lock.hasWaiters(c);
668     shouldThrow();
669 jsr166 1.29 } catch (IllegalMonitorStateException success) {}
670 dl 1.13 }
671    
672     /**
673 jsr166 1.45 * getWaitQueueLength throws IllegalArgumentException if not owned
674 dl 1.13 */
675 jsr166 1.46 public void testGetWaitQueueLengthIAE() { testGetWaitQueueLengthIAE(false); }
676     public void testGetWaitQueueLengthIAE_fair() { testGetWaitQueueLengthIAE(true); }
677     public void testGetWaitQueueLengthIAE(boolean fair) {
678     final ReentrantLock lock = new ReentrantLock(fair);
679 jsr166 1.29 final Condition c = lock.newCondition();
680 jsr166 1.46 final ReentrantLock lock2 = new ReentrantLock(fair);
681 dl 1.13 try {
682     lock2.getWaitQueueLength(c);
683     shouldThrow();
684 jsr166 1.29 } catch (IllegalArgumentException success) {}
685 dl 1.13 }
686    
687     /**
688 jsr166 1.45 * getWaitQueueLength throws IllegalMonitorStateException if not locked
689 dl 1.13 */
690 jsr166 1.46 public void testGetWaitQueueLengthIMSE() { testGetWaitQueueLengthIMSE(false); }
691     public void testGetWaitQueueLengthIMSE_fair() { testGetWaitQueueLengthIMSE(true); }
692     public void testGetWaitQueueLengthIMSE(boolean fair) {
693     final ReentrantLock lock = new ReentrantLock(fair);
694 jsr166 1.29 final Condition c = lock.newCondition();
695 dl 1.13 try {
696     lock.getWaitQueueLength(c);
697     shouldThrow();
698 jsr166 1.29 } catch (IllegalMonitorStateException success) {}
699 dl 1.13 }
700    
701     /**
702 jsr166 1.45 * getWaitingThreads throws IllegalArgumentException if not owned
703 dl 1.13 */
704 jsr166 1.46 public void testGetWaitingThreadsIAE() { testGetWaitingThreadsIAE(false); }
705     public void testGetWaitingThreadsIAE_fair() { testGetWaitingThreadsIAE(true); }
706     public void testGetWaitingThreadsIAE(boolean fair) {
707     final PublicReentrantLock lock = new PublicReentrantLock(fair);
708 jsr166 1.29 final Condition c = lock.newCondition();
709 jsr166 1.46 final PublicReentrantLock lock2 = new PublicReentrantLock(fair);
710 dl 1.13 try {
711     lock2.getWaitingThreads(c);
712     shouldThrow();
713 jsr166 1.29 } catch (IllegalArgumentException success) {}
714 dl 1.13 }
715    
716     /**
717 jsr166 1.45 * getWaitingThreads throws IllegalMonitorStateException if not locked
718 dl 1.13 */
719 jsr166 1.46 public void testGetWaitingThreadsIMSE() { testGetWaitingThreadsIMSE(false); }
720     public void testGetWaitingThreadsIMSE_fair() { testGetWaitingThreadsIMSE(true); }
721     public void testGetWaitingThreadsIMSE(boolean fair) {
722     final PublicReentrantLock lock = new PublicReentrantLock(fair);
723 jsr166 1.29 final Condition c = lock.newCondition();
724 dl 1.13 try {
725     lock.getWaitingThreads(c);
726     shouldThrow();
727 jsr166 1.29 } catch (IllegalMonitorStateException success) {}
728 dl 1.13 }
729    
730     /**
731 dl 1.6 * hasWaiters returns true when a thread is waiting, else false
732     */
733 jsr166 1.46 public void testHasWaiters() { testHasWaiters(false); }
734     public void testHasWaiters_fair() { testHasWaiters(true); }
735     public void testHasWaiters(boolean fair) {
736     final PublicReentrantLock lock = new PublicReentrantLock(fair);
737 dl 1.13 final Condition c = lock.newCondition();
738 jsr166 1.51 final CountDownLatch pleaseSignal = new CountDownLatch(1);
739 jsr166 1.41 Thread t = newStartedThread(new CheckedRunnable() {
740 jsr166 1.29 public void realRun() throws InterruptedException {
741     lock.lock();
742 jsr166 1.45 assertHasNoWaiters(lock, c);
743 jsr166 1.37 assertFalse(lock.hasWaiters(c));
744 jsr166 1.51 pleaseSignal.countDown();
745 jsr166 1.29 c.await();
746 jsr166 1.45 assertHasNoWaiters(lock, c);
747     assertFalse(lock.hasWaiters(c));
748 jsr166 1.29 lock.unlock();
749     }});
750 dl 1.2
751 jsr166 1.51 await(pleaseSignal);
752 jsr166 1.29 lock.lock();
753 jsr166 1.45 assertHasWaiters(lock, c, t);
754 jsr166 1.29 assertTrue(lock.hasWaiters(c));
755     c.signal();
756 jsr166 1.45 assertHasNoWaiters(lock, c);
757 jsr166 1.29 assertFalse(lock.hasWaiters(c));
758     lock.unlock();
759 jsr166 1.42 awaitTermination(t);
760 jsr166 1.45 assertHasNoWaiters(lock, c);
761 dl 1.5 }
762    
763 dl 1.6 /**
764     * getWaitQueueLength returns number of waiting threads
765     */
766 jsr166 1.46 public void testGetWaitQueueLength() { testGetWaitQueueLength(false); }
767     public void testGetWaitQueueLength_fair() { testGetWaitQueueLength(true); }
768     public void testGetWaitQueueLength(boolean fair) {
769     final PublicReentrantLock lock = new PublicReentrantLock(fair);
770 dl 1.13 final Condition c = lock.newCondition();
771 jsr166 1.45 final CountDownLatch locked1 = new CountDownLatch(1);
772     final CountDownLatch locked2 = new CountDownLatch(1);
773     Thread t1 = new Thread(new CheckedRunnable() {
774 jsr166 1.29 public void realRun() throws InterruptedException {
775     lock.lock();
776 jsr166 1.37 assertFalse(lock.hasWaiters(c));
777     assertEquals(0, lock.getWaitQueueLength(c));
778 jsr166 1.45 locked1.countDown();
779 jsr166 1.29 c.await();
780     lock.unlock();
781     }});
782 dl 1.13
783 jsr166 1.45 Thread t2 = new Thread(new CheckedRunnable() {
784 jsr166 1.29 public void realRun() throws InterruptedException {
785     lock.lock();
786 jsr166 1.37 assertTrue(lock.hasWaiters(c));
787     assertEquals(1, lock.getWaitQueueLength(c));
788 jsr166 1.45 locked2.countDown();
789 jsr166 1.29 c.await();
790     lock.unlock();
791     }});
792    
793     lock.lock();
794 jsr166 1.45 assertEquals(0, lock.getWaitQueueLength(c));
795     lock.unlock();
796    
797     t1.start();
798 jsr166 1.46 await(locked1);
799 jsr166 1.45
800     lock.lock();
801     assertHasWaiters(lock, c, t1);
802     assertEquals(1, lock.getWaitQueueLength(c));
803     lock.unlock();
804    
805     t2.start();
806 jsr166 1.46 await(locked2);
807 jsr166 1.45
808     lock.lock();
809     assertHasWaiters(lock, c, t1, t2);
810 jsr166 1.29 assertEquals(2, lock.getWaitQueueLength(c));
811     c.signalAll();
812 jsr166 1.45 assertHasNoWaiters(lock, c);
813 jsr166 1.29 lock.unlock();
814 jsr166 1.45
815 jsr166 1.42 awaitTermination(t1);
816     awaitTermination(t2);
817 jsr166 1.45
818     assertHasNoWaiters(lock, c);
819 dl 1.13 }
820    
821     /**
822     * getWaitingThreads returns only and all waiting threads
823     */
824 jsr166 1.46 public void testGetWaitingThreads() { testGetWaitingThreads(false); }
825     public void testGetWaitingThreads_fair() { testGetWaitingThreads(true); }
826     public void testGetWaitingThreads(boolean fair) {
827     final PublicReentrantLock lock = new PublicReentrantLock(fair);
828 dl 1.13 final Condition c = lock.newCondition();
829 jsr166 1.45 final CountDownLatch locked1 = new CountDownLatch(1);
830     final CountDownLatch locked2 = new CountDownLatch(1);
831 jsr166 1.30 Thread t1 = new Thread(new CheckedRunnable() {
832 jsr166 1.29 public void realRun() throws InterruptedException {
833     lock.lock();
834 jsr166 1.37 assertTrue(lock.getWaitingThreads(c).isEmpty());
835 jsr166 1.45 locked1.countDown();
836 jsr166 1.29 c.await();
837     lock.unlock();
838     }});
839    
840 jsr166 1.30 Thread t2 = new Thread(new CheckedRunnable() {
841 jsr166 1.29 public void realRun() throws InterruptedException {
842     lock.lock();
843 jsr166 1.37 assertFalse(lock.getWaitingThreads(c).isEmpty());
844 jsr166 1.45 locked2.countDown();
845 jsr166 1.29 c.await();
846     lock.unlock();
847     }});
848 dl 1.5
849 jsr166 1.29 lock.lock();
850     assertTrue(lock.getWaitingThreads(c).isEmpty());
851     lock.unlock();
852 jsr166 1.45
853 jsr166 1.29 t1.start();
854 jsr166 1.46 await(locked1);
855 jsr166 1.45
856     lock.lock();
857     assertHasWaiters(lock, c, t1);
858     assertTrue(lock.getWaitingThreads(c).contains(t1));
859     assertFalse(lock.getWaitingThreads(c).contains(t2));
860     assertEquals(1, lock.getWaitingThreads(c).size());
861     lock.unlock();
862    
863 jsr166 1.29 t2.start();
864 jsr166 1.46 await(locked2);
865 jsr166 1.45
866 jsr166 1.29 lock.lock();
867 jsr166 1.45 assertHasWaiters(lock, c, t1, t2);
868 jsr166 1.29 assertTrue(lock.getWaitingThreads(c).contains(t1));
869     assertTrue(lock.getWaitingThreads(c).contains(t2));
870 jsr166 1.45 assertEquals(2, lock.getWaitingThreads(c).size());
871 jsr166 1.29 c.signalAll();
872 jsr166 1.45 assertHasNoWaiters(lock, c);
873 jsr166 1.29 lock.unlock();
874 jsr166 1.45
875 jsr166 1.42 awaitTermination(t1);
876     awaitTermination(t2);
877 jsr166 1.26
878 jsr166 1.45 assertHasNoWaiters(lock, c);
879 dl 1.22 }
880 dl 1.2
881 dl 1.6 /**
882 jsr166 1.51 * awaitUninterruptibly is uninterruptible
883 dl 1.6 */
884 jsr166 1.46 public void testAwaitUninterruptibly() { testAwaitUninterruptibly(false); }
885     public void testAwaitUninterruptibly_fair() { testAwaitUninterruptibly(true); }
886     public void testAwaitUninterruptibly(boolean fair) {
887     final ReentrantLock lock = new ReentrantLock(fair);
888 jsr166 1.65 final Condition condition = lock.newCondition();
889 jsr166 1.51 final CountDownLatch pleaseInterrupt = new CountDownLatch(2);
890    
891     Thread t1 = newStartedThread(new CheckedRunnable() {
892     public void realRun() {
893     // Interrupt before awaitUninterruptibly
894     lock.lock();
895     pleaseInterrupt.countDown();
896     Thread.currentThread().interrupt();
897 jsr166 1.65 condition.awaitUninterruptibly();
898 jsr166 1.51 assertTrue(Thread.interrupted());
899     lock.unlock();
900     }});
901    
902     Thread t2 = newStartedThread(new CheckedRunnable() {
903 jsr166 1.45 public void realRun() {
904 jsr166 1.51 // Interrupt during awaitUninterruptibly
905 jsr166 1.45 lock.lock();
906 jsr166 1.51 pleaseInterrupt.countDown();
907 jsr166 1.65 condition.awaitUninterruptibly();
908 jsr166 1.45 assertTrue(Thread.interrupted());
909     lock.unlock();
910     }});
911 dl 1.22
912 jsr166 1.51 await(pleaseInterrupt);
913 jsr166 1.65 t2.interrupt();
914 jsr166 1.45 lock.lock();
915     lock.unlock();
916 jsr166 1.65 assertThreadBlocks(t1, Thread.State.WAITING);
917     assertThreadBlocks(t2, Thread.State.WAITING);
918 jsr166 1.51
919 jsr166 1.29 lock.lock();
920 jsr166 1.65 condition.signalAll();
921 jsr166 1.45 lock.unlock();
922 jsr166 1.51
923     awaitTermination(t1);
924     awaitTermination(t2);
925 dl 1.2 }
926    
927 dl 1.6 /**
928 jsr166 1.46 * await/awaitNanos/awaitUntil is interruptible
929 dl 1.6 */
930 jsr166 1.46 public void testInterruptible_await() { testInterruptible(false, AwaitMethod.await); }
931     public void testInterruptible_await_fair() { testInterruptible(true, AwaitMethod.await); }
932 jsr166 1.48 public void testInterruptible_awaitTimed() { testInterruptible(false, AwaitMethod.awaitTimed); }
933     public void testInterruptible_awaitTimed_fair() { testInterruptible(true, AwaitMethod.awaitTimed); }
934 jsr166 1.46 public void testInterruptible_awaitNanos() { testInterruptible(false, AwaitMethod.awaitNanos); }
935     public void testInterruptible_awaitNanos_fair() { testInterruptible(true, AwaitMethod.awaitNanos); }
936     public void testInterruptible_awaitUntil() { testInterruptible(false, AwaitMethod.awaitUntil); }
937     public void testInterruptible_awaitUntil_fair() { testInterruptible(true, AwaitMethod.awaitUntil); }
938     public void testInterruptible(boolean fair, final AwaitMethod awaitMethod) {
939     final PublicReentrantLock lock =
940     new PublicReentrantLock(fair);
941 dl 1.2 final Condition c = lock.newCondition();
942 jsr166 1.51 final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
943 jsr166 1.41 Thread t = newStartedThread(new CheckedInterruptedRunnable() {
944 jsr166 1.30 public void realRun() throws InterruptedException {
945 jsr166 1.29 lock.lock();
946 jsr166 1.46 assertLockedByMoi(lock);
947 jsr166 1.43 assertHasNoWaiters(lock, c);
948 jsr166 1.51 pleaseInterrupt.countDown();
949 jsr166 1.43 try {
950 jsr166 1.46 await(c, awaitMethod);
951 jsr166 1.43 } finally {
952 jsr166 1.46 assertLockedByMoi(lock);
953 jsr166 1.43 assertHasNoWaiters(lock, c);
954     lock.unlock();
955     assertFalse(Thread.interrupted());
956     }
957 jsr166 1.29 }});
958    
959 jsr166 1.51 await(pleaseInterrupt);
960 jsr166 1.43 assertHasWaiters(lock, c, t);
961 jsr166 1.29 t.interrupt();
962 jsr166 1.42 awaitTermination(t);
963 jsr166 1.46 assertNotLocked(lock);
964 dl 1.2 }
965    
966 dl 1.6 /**
967 jsr166 1.46 * signalAll wakes up all threads
968 dl 1.6 */
969 jsr166 1.46 public void testSignalAll_await() { testSignalAll(false, AwaitMethod.await); }
970     public void testSignalAll_await_fair() { testSignalAll(true, AwaitMethod.await); }
971 jsr166 1.48 public void testSignalAll_awaitTimed() { testSignalAll(false, AwaitMethod.awaitTimed); }
972     public void testSignalAll_awaitTimed_fair() { testSignalAll(true, AwaitMethod.awaitTimed); }
973 jsr166 1.46 public void testSignalAll_awaitNanos() { testSignalAll(false, AwaitMethod.awaitNanos); }
974     public void testSignalAll_awaitNanos_fair() { testSignalAll(true, AwaitMethod.awaitNanos); }
975     public void testSignalAll_awaitUntil() { testSignalAll(false, AwaitMethod.awaitUntil); }
976     public void testSignalAll_awaitUntil_fair() { testSignalAll(true, AwaitMethod.awaitUntil); }
977     public void testSignalAll(boolean fair, final AwaitMethod awaitMethod) {
978     final PublicReentrantLock lock = new PublicReentrantLock(fair);
979 dl 1.2 final Condition c = lock.newCondition();
980 jsr166 1.51 final CountDownLatch pleaseSignal = new CountDownLatch(2);
981 jsr166 1.46 class Awaiter extends CheckedRunnable {
982 jsr166 1.30 public void realRun() throws InterruptedException {
983 jsr166 1.29 lock.lock();
984 jsr166 1.51 pleaseSignal.countDown();
985 jsr166 1.46 await(c, awaitMethod);
986     lock.unlock();
987     }
988     }
989 jsr166 1.29
990 jsr166 1.46 Thread t1 = newStartedThread(new Awaiter());
991     Thread t2 = newStartedThread(new Awaiter());
992 dl 1.2
993 jsr166 1.51 await(pleaseSignal);
994 jsr166 1.46 lock.lock();
995     assertHasWaiters(lock, c, t1, t2);
996     c.signalAll();
997     assertHasNoWaiters(lock, c);
998     lock.unlock();
999     awaitTermination(t1);
1000     awaitTermination(t2);
1001 dl 1.2 }
1002    
1003 dl 1.6 /**
1004 jsr166 1.49 * signal wakes up waiting threads in FIFO order
1005 dl 1.6 */
1006 jsr166 1.46 public void testSignalWakesFifo() { testSignalWakesFifo(false); }
1007     public void testSignalWakesFifo_fair() { testSignalWakesFifo(true); }
1008     public void testSignalWakesFifo(boolean fair) {
1009     final PublicReentrantLock lock =
1010     new PublicReentrantLock(fair);
1011 dl 1.2 final Condition c = lock.newCondition();
1012 jsr166 1.46 final CountDownLatch locked1 = new CountDownLatch(1);
1013     final CountDownLatch locked2 = new CountDownLatch(1);
1014 jsr166 1.41 Thread t1 = newStartedThread(new CheckedRunnable() {
1015 jsr166 1.29 public void realRun() throws InterruptedException {
1016     lock.lock();
1017 jsr166 1.46 locked1.countDown();
1018 jsr166 1.29 c.await();
1019     lock.unlock();
1020     }});
1021    
1022 jsr166 1.46 await(locked1);
1023    
1024 jsr166 1.41 Thread t2 = newStartedThread(new CheckedRunnable() {
1025 jsr166 1.29 public void realRun() throws InterruptedException {
1026     lock.lock();
1027 jsr166 1.46 locked2.countDown();
1028 jsr166 1.29 c.await();
1029     lock.unlock();
1030     }});
1031 dl 1.2
1032 jsr166 1.46 await(locked2);
1033    
1034 jsr166 1.29 lock.lock();
1035 jsr166 1.45 assertHasWaiters(lock, c, t1, t2);
1036 jsr166 1.46 assertFalse(lock.hasQueuedThreads());
1037     c.signal();
1038     assertHasWaiters(lock, c, t2);
1039     assertTrue(lock.hasQueuedThread(t1));
1040     assertFalse(lock.hasQueuedThread(t2));
1041     c.signal();
1042 jsr166 1.45 assertHasNoWaiters(lock, c);
1043 jsr166 1.46 assertTrue(lock.hasQueuedThread(t1));
1044     assertTrue(lock.hasQueuedThread(t2));
1045 jsr166 1.29 lock.unlock();
1046 jsr166 1.42 awaitTermination(t1);
1047     awaitTermination(t2);
1048 dl 1.3 }
1049    
1050 dl 1.6 /**
1051 dl 1.23 * await after multiple reentrant locking preserves lock count
1052     */
1053 jsr166 1.46 public void testAwaitLockCount() { testAwaitLockCount(false); }
1054     public void testAwaitLockCount_fair() { testAwaitLockCount(true); }
1055     public void testAwaitLockCount(boolean fair) {
1056     final PublicReentrantLock lock = new PublicReentrantLock(fair);
1057 dl 1.23 final Condition c = lock.newCondition();
1058 jsr166 1.51 final CountDownLatch pleaseSignal = new CountDownLatch(2);
1059 jsr166 1.41 Thread t1 = newStartedThread(new CheckedRunnable() {
1060 jsr166 1.29 public void realRun() throws InterruptedException {
1061     lock.lock();
1062 jsr166 1.46 assertLockedByMoi(lock);
1063 jsr166 1.37 assertEquals(1, lock.getHoldCount());
1064 jsr166 1.51 pleaseSignal.countDown();
1065 jsr166 1.29 c.await();
1066 jsr166 1.46 assertLockedByMoi(lock);
1067 jsr166 1.37 assertEquals(1, lock.getHoldCount());
1068 jsr166 1.29 lock.unlock();
1069     }});
1070 dl 1.23
1071 jsr166 1.41 Thread t2 = newStartedThread(new CheckedRunnable() {
1072 jsr166 1.29 public void realRun() throws InterruptedException {
1073     lock.lock();
1074     lock.lock();
1075 jsr166 1.46 assertLockedByMoi(lock);
1076 jsr166 1.37 assertEquals(2, lock.getHoldCount());
1077 jsr166 1.51 pleaseSignal.countDown();
1078 jsr166 1.29 c.await();
1079 jsr166 1.46 assertLockedByMoi(lock);
1080 jsr166 1.37 assertEquals(2, lock.getHoldCount());
1081 jsr166 1.29 lock.unlock();
1082     lock.unlock();
1083     }});
1084    
1085 jsr166 1.51 await(pleaseSignal);
1086 jsr166 1.29 lock.lock();
1087 jsr166 1.45 assertHasWaiters(lock, c, t1, t2);
1088     assertEquals(1, lock.getHoldCount());
1089 jsr166 1.29 c.signalAll();
1090 jsr166 1.45 assertHasNoWaiters(lock, c);
1091 jsr166 1.29 lock.unlock();
1092 jsr166 1.42 awaitTermination(t1);
1093     awaitTermination(t2);
1094 dl 1.23 }
1095    
1096     /**
1097 dl 1.6 * A serialized lock deserializes as unlocked
1098     */
1099 jsr166 1.46 public void testSerialization() { testSerialization(false); }
1100     public void testSerialization_fair() { testSerialization(true); }
1101     public void testSerialization(boolean fair) {
1102 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
1103 jsr166 1.46 lock.lock();
1104    
1105     ReentrantLock clone = serialClone(lock);
1106     assertEquals(lock.isFair(), clone.isFair());
1107     assertTrue(lock.isLocked());
1108     assertFalse(clone.isLocked());
1109     assertEquals(1, lock.getHoldCount());
1110     assertEquals(0, clone.getHoldCount());
1111     clone.lock();
1112     clone.lock();
1113     assertTrue(clone.isLocked());
1114     assertEquals(2, clone.getHoldCount());
1115     assertEquals(1, lock.getHoldCount());
1116     clone.unlock();
1117     clone.unlock();
1118     assertTrue(lock.isLocked());
1119     assertFalse(clone.isLocked());
1120 dl 1.2 }
1121 dl 1.1
1122 dl 1.18 /**
1123     * toString indicates current lock state
1124     */
1125 jsr166 1.46 public void testToString() { testToString(false); }
1126     public void testToString_fair() { testToString(true); }
1127     public void testToString(boolean fair) {
1128 jsr166 1.64 final ReentrantLock lock = new ReentrantLock(fair);
1129 jsr166 1.49 assertTrue(lock.toString().contains("Unlocked"));
1130 dl 1.18 lock.lock();
1131 jsr166 1.64 assertTrue(lock.toString().contains("Locked by"));
1132 jsr166 1.49 lock.unlock();
1133     assertTrue(lock.toString().contains("Unlocked"));
1134 dl 1.18 }
1135 dl 1.1 }