ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/LinkedBlockingDequeTest.java
(Generate patch)

Comparing jsr166/src/test/tck/LinkedBlockingDequeTest.java (file contents):
Revision 1.28 by jsr166, Thu Oct 28 17:57:26 2010 UTC vs.
Revision 1.37 by dl, Fri May 6 11:22:07 2011 UTC

# Line 1 | Line 1
1   /*
2   * 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 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   import junit.framework.*;
# Line 38 | Line 38 | public class LinkedBlockingDequeTest ext
38       * Create a deque of given size containing consecutive
39       * Integers 0 ... n.
40       */
41 <    private LinkedBlockingDeque populatedDeque(int n) {
42 <        LinkedBlockingDeque q = new LinkedBlockingDeque(n);
41 >    private LinkedBlockingDeque<Integer> populatedDeque(int n) {
42 >        LinkedBlockingDeque<Integer> q =
43 >            new LinkedBlockingDeque<Integer>(n);
44          assertTrue(q.isEmpty());
45          for (int i = 0; i < n; i++)
46              assertTrue(q.offer(new Integer(i)));
# Line 616 | Line 617 | public class LinkedBlockingDequeTest ext
617              }});
618  
619          t.start();
620 <        Thread.sleep(SHORT_DELAY_MS);
620 >        delay(SHORT_DELAY_MS);
621          t.interrupt();
622          t.join();
623          assertEquals(SIZE, q.size());
# Line 640 | Line 641 | public class LinkedBlockingDequeTest ext
641              }});
642  
643          t.start();
644 <        Thread.sleep(SHORT_DELAY_MS);
644 >        delay(SHORT_DELAY_MS);
645          assertEquals(q.remainingCapacity(), 0);
646          assertEquals(0, q.take());
647 <        Thread.sleep(SHORT_DELAY_MS);
647 >        delay(SHORT_DELAY_MS);
648          t.interrupt();
649          t.join();
650          assertEquals(q.remainingCapacity(), 0);
# Line 666 | Line 667 | public class LinkedBlockingDequeTest ext
667              }});
668  
669          t.start();
670 <        Thread.sleep(SMALL_DELAY_MS);
670 >        delay(SMALL_DELAY_MS);
671          t.interrupt();
672          t.join();
673      }
# Line 698 | Line 699 | public class LinkedBlockingDequeTest ext
699              }});
700  
701          t.start();
702 <        Thread.sleep(SHORT_DELAY_MS);
702 >        delay(SHORT_DELAY_MS);
703          t.interrupt();
704          t.join();
705      }
# Line 742 | Line 743 | public class LinkedBlockingDequeTest ext
743       * returning timeout status
744       */
745      public void testInterruptedTimedPoll() throws InterruptedException {
746 <        Thread t = new Thread(new CheckedRunnable() {
746 >        final BlockingQueue<Integer> q = populatedDeque(SIZE);
747 >        final CountDownLatch aboutToWait = new CountDownLatch(1);
748 >        Thread t = newStartedThread(new CheckedRunnable() {
749              public void realRun() throws InterruptedException {
747                LinkedBlockingDeque q = populatedDeque(SIZE);
750                  for (int i = 0; i < SIZE; ++i) {
751 <                    assertEquals(i, q.poll(SHORT_DELAY_MS, MILLISECONDS));
751 >                    long t0 = System.nanoTime();
752 >                    assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS));
753 >                    assertTrue(millisElapsedSince(t0) < SMALL_DELAY_MS);
754                  }
755 +                long t0 = System.nanoTime();
756 +                aboutToWait.countDown();
757                  try {
758 <                    q.poll(SMALL_DELAY_MS, MILLISECONDS);
758 >                    q.poll(MEDIUM_DELAY_MS, MILLISECONDS);
759                      shouldThrow();
760 <                } catch (InterruptedException success) {}
760 >                } catch (InterruptedException success) {
761 >                    assertTrue(millisElapsedSince(t0) < MEDIUM_DELAY_MS);
762 >                }
763              }});
764  
765 <        t.start();
766 <        Thread.sleep(SHORT_DELAY_MS);
765 >        aboutToWait.await();
766 >        waitForThreadToEnterWaitState(t, SMALL_DELAY_MS);
767          t.interrupt();
768 <        t.join();
768 >        awaitTermination(t, MEDIUM_DELAY_MS);
769 >        checkEmpty(q);
770      }
771  
772      /**
773       * putFirst(null) throws NPE
774       */
775 <     public void testPutFirstNull() throws InterruptedException {
775 >    public void testPutFirstNull() throws InterruptedException {
776          try {
777              LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
778              q.putFirst(null);
779              shouldThrow();
780          } catch (NullPointerException success) {}
781 <     }
781 >    }
782  
783      /**
784       * all elements successfully putFirst are contained
785       */
786 <     public void testPutFirst() throws InterruptedException {
787 <         LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
788 <         for (int i = 0; i < SIZE; ++i) {
789 <             Integer I = new Integer(i);
790 <             q.putFirst(I);
791 <             assertTrue(q.contains(I));
792 <         }
793 <         assertEquals(0, q.remainingCapacity());
786 >    public void testPutFirst() throws InterruptedException {
787 >        LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
788 >        for (int i = 0; i < SIZE; ++i) {
789 >            Integer I = new Integer(i);
790 >            q.putFirst(I);
791 >            assertTrue(q.contains(I));
792 >        }
793 >        assertEquals(0, q.remainingCapacity());
794      }
795  
796      /**
# Line 802 | Line 811 | public class LinkedBlockingDequeTest ext
811              }});
812  
813          t.start();
814 <        Thread.sleep(SHORT_DELAY_MS);
814 >        delay(SHORT_DELAY_MS);
815          t.interrupt();
816          t.join();
817          assertEquals(SIZE, q.size());
# Line 826 | Line 835 | public class LinkedBlockingDequeTest ext
835              }});
836  
837          t.start();
838 <        Thread.sleep(SHORT_DELAY_MS);
838 >        delay(SHORT_DELAY_MS);
839          assertEquals(q.remainingCapacity(), 0);
840          assertEquals(capacity - 1, q.take());
841 <        Thread.sleep(SHORT_DELAY_MS);
841 >        delay(SHORT_DELAY_MS);
842          t.interrupt();
843          t.join();
844          assertEquals(q.remainingCapacity(), 0);
# Line 852 | Line 861 | public class LinkedBlockingDequeTest ext
861              }});
862  
863          t.start();
864 <        Thread.sleep(SMALL_DELAY_MS);
864 >        delay(SMALL_DELAY_MS);
865          t.interrupt();
866          t.join();
867      }
# Line 878 | Line 887 | public class LinkedBlockingDequeTest ext
887              }};
888  
889          t.start();
890 <        Thread.sleep(SHORT_DELAY_MS);
890 >        delay(SHORT_DELAY_MS);
891          t.interrupt();
892          t.join();
893      }
# Line 899 | Line 908 | public class LinkedBlockingDequeTest ext
908              }});
909  
910          t.start();
911 <        Thread.sleep(SHORT_DELAY_MS);
911 >        delay(SHORT_DELAY_MS);
912          t.interrupt();
913          t.join();
914      }
# Line 945 | Line 954 | public class LinkedBlockingDequeTest ext
954              }});
955  
956          t.start();
957 <        Thread.sleep(SHORT_DELAY_MS);
957 >        delay(SHORT_DELAY_MS);
958          t.interrupt();
959          t.join();
960      }
# Line 967 | Line 976 | public class LinkedBlockingDequeTest ext
976              }});
977  
978          t.start();
979 <        Thread.sleep(SMALL_DELAY_MS);
979 >        delay(SMALL_DELAY_MS);
980          assertTrue(q.offerFirst(zero, SHORT_DELAY_MS, MILLISECONDS));
981          t.interrupt();
982          t.join();
# Line 976 | Line 985 | public class LinkedBlockingDequeTest ext
985      /**
986       * putLast(null) throws NPE
987       */
988 <     public void testPutLastNull() throws InterruptedException {
988 >    public void testPutLastNull() throws InterruptedException {
989          try {
990              LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
991              q.putLast(null);
992              shouldThrow();
993          } catch (NullPointerException success) {}
994 <     }
994 >    }
995  
996      /**
997       * all elements successfully putLast are contained
998       */
999 <     public void testPutLast() throws InterruptedException {
1000 <         LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
1001 <         for (int i = 0; i < SIZE; ++i) {
1002 <             Integer I = new Integer(i);
1003 <             q.putLast(I);
1004 <             assertTrue(q.contains(I));
1005 <         }
1006 <         assertEquals(0, q.remainingCapacity());
999 >    public void testPutLast() throws InterruptedException {
1000 >        LinkedBlockingDeque q = new LinkedBlockingDeque(SIZE);
1001 >        for (int i = 0; i < SIZE; ++i) {
1002 >            Integer I = new Integer(i);
1003 >            q.putLast(I);
1004 >            assertTrue(q.contains(I));
1005 >        }
1006 >        assertEquals(0, q.remainingCapacity());
1007      }
1008  
1009      /**
# Line 1015 | Line 1024 | public class LinkedBlockingDequeTest ext
1024              }});
1025  
1026          t.start();
1027 <        Thread.sleep(SHORT_DELAY_MS);
1027 >        delay(SHORT_DELAY_MS);
1028          t.interrupt();
1029          t.join();
1030          assertEquals(SIZE, q.size());
# Line 1039 | Line 1048 | public class LinkedBlockingDequeTest ext
1048              }});
1049  
1050          t.start();
1051 <        Thread.sleep(SHORT_DELAY_MS);
1051 >        delay(SHORT_DELAY_MS);
1052          assertEquals(q.remainingCapacity(), 0);
1053          assertEquals(0, q.take());
1054 <        Thread.sleep(SHORT_DELAY_MS);
1054 >        delay(SHORT_DELAY_MS);
1055          t.interrupt();
1056          t.join();
1057          assertEquals(q.remainingCapacity(), 0);
# Line 1065 | Line 1074 | public class LinkedBlockingDequeTest ext
1074              }});
1075  
1076          t.start();
1077 <        Thread.sleep(SMALL_DELAY_MS);
1077 >        delay(SMALL_DELAY_MS);
1078          t.interrupt();
1079          t.join();
1080      }
# Line 1091 | Line 1100 | public class LinkedBlockingDequeTest ext
1100              }};
1101  
1102          t.start();
1103 <        Thread.sleep(SHORT_DELAY_MS);
1103 >        delay(SHORT_DELAY_MS);
1104          t.interrupt();
1105          t.join();
1106      }
# Line 1112 | Line 1121 | public class LinkedBlockingDequeTest ext
1121              }});
1122  
1123          t.start();
1124 <        Thread.sleep(SHORT_DELAY_MS);
1124 >        delay(SHORT_DELAY_MS);
1125          t.interrupt();
1126          t.join();
1127      }
# Line 1157 | Line 1166 | public class LinkedBlockingDequeTest ext
1166              }});
1167  
1168          t.start();
1169 <        Thread.sleep(SHORT_DELAY_MS);
1169 >        delay(SHORT_DELAY_MS);
1170          t.interrupt();
1171          t.join();
1172      }
# Line 1179 | Line 1188 | public class LinkedBlockingDequeTest ext
1188              }});
1189  
1190          t.start();
1191 <        Thread.sleep(SMALL_DELAY_MS);
1191 >        delay(SMALL_DELAY_MS);
1192          assertTrue(q.offerLast(zero, SHORT_DELAY_MS, MILLISECONDS));
1193          t.interrupt();
1194          t.join();
# Line 1207 | Line 1216 | public class LinkedBlockingDequeTest ext
1216      public void testRemoveElement() {
1217          LinkedBlockingDeque q = populatedDeque(SIZE);
1218          for (int i = 1; i < SIZE; i+=2) {
1219 <            assertTrue(q.remove(new Integer(i)));
1219 >            assertTrue(q.contains(i));
1220 >            assertTrue(q.remove(i));
1221 >            assertFalse(q.contains(i));
1222 >            assertTrue(q.contains(i-1));
1223          }
1224          for (int i = 0; i < SIZE; i+=2) {
1225 <            assertTrue(q.remove(new Integer(i)));
1226 <            assertFalse(q.remove(new Integer(i+1)));
1225 >            assertTrue(q.contains(i));
1226 >            assertTrue(q.remove(i));
1227 >            assertFalse(q.contains(i));
1228 >            assertFalse(q.remove(i+1));
1229 >            assertFalse(q.contains(i+1));
1230          }
1231          assertTrue(q.isEmpty());
1232      }
# Line 1294 | Line 1309 | public class LinkedBlockingDequeTest ext
1309      }
1310  
1311      /**
1312 <     * toArray contains all elements
1312 >     * toArray contains all elements in FIFO order
1313       */
1314      public void testToArray() throws InterruptedException{
1315          LinkedBlockingDeque q = populatedDeque(SIZE);
1316          Object[] o = q.toArray();
1317          for (int i = 0; i < o.length; i++)
1318 <            assertEquals(o[i], q.take());
1318 >            assertSame(o[i], q.poll());
1319      }
1320  
1321      /**
1322 <     * toArray(a) contains all elements
1322 >     * toArray(a) contains all elements in FIFO order
1323       */
1324 <    public void testToArray2() throws InterruptedException {
1325 <        LinkedBlockingDeque q = populatedDeque(SIZE);
1324 >    public void testToArray2() {
1325 >        LinkedBlockingDeque<Integer> q = populatedDeque(SIZE);
1326          Integer[] ints = new Integer[SIZE];
1327 <        ints = (Integer[])q.toArray(ints);
1327 >        Integer[] array = q.toArray(ints);
1328 >        assertSame(ints, array);
1329          for (int i = 0; i < ints.length; i++)
1330 <            assertEquals(ints[i], q.take());
1330 >            assertSame(ints[i], q.remove());
1331      }
1332  
1333      /**
1334 <     * toArray(null) throws NPE
1334 >     * toArray(null) throws NullPointerException
1335       */
1336 <    public void testToArray_BadArg() {
1336 >    public void testToArray_NullArg() {
1337          LinkedBlockingDeque q = populatedDeque(SIZE);
1338          try {
1339 <            Object o[] = q.toArray(null);
1339 >            q.toArray(null);
1340              shouldThrow();
1341          } catch (NullPointerException success) {}
1342      }
1343  
1344      /**
1345 <     * toArray with incompatible array type throws CCE
1345 >     * toArray(incompatible array type) throws ArrayStoreException
1346       */
1347      public void testToArray1_BadArg() {
1348          LinkedBlockingDeque q = populatedDeque(SIZE);
1349          try {
1350 <            Object o[] = q.toArray(new String[10]);
1350 >            q.toArray(new String[10]);
1351              shouldThrow();
1352          } catch (ArrayStoreException success) {}
1353      }
# Line 1492 | Line 1508 | public class LinkedBlockingDequeTest ext
1508  
1509          executor.execute(new CheckedRunnable() {
1510              public void realRun() throws InterruptedException {
1511 <                Thread.sleep(SMALL_DELAY_MS);
1511 >                delay(SMALL_DELAY_MS);
1512                  assertSame(one, q.take());
1513              }});
1514  
# Line 1514 | Line 1530 | public class LinkedBlockingDequeTest ext
1530  
1531          executor.execute(new CheckedRunnable() {
1532              public void realRun() throws InterruptedException {
1533 <                Thread.sleep(SMALL_DELAY_MS);
1533 >                delay(SMALL_DELAY_MS);
1534                  q.put(one);
1535              }});
1536  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines