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

Comparing jsr166/src/test/tck/AbstractExecutorServiceTest.java (file contents):
Revision 1.6 by dl, Mon Dec 22 00:48:55 2003 UTC vs.
Revision 1.10 by dl, Sat Dec 27 19:26:42 2003 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9  
# Line 412 | Line 413 | public class AbstractExecutorServiceTest
413              e.invokeAny(l);
414          } catch (NullPointerException success) {
415          } catch(Exception ex) {
416 +            ex.printStackTrace();
417              unexpectedException();
418          } finally {
419              joinPool(e);
# Line 426 | Line 428 | public class AbstractExecutorServiceTest
428          try {
429              ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
430              l.add(new NPETask());
431 <            List<Future<String>> result = e.invokeAll(l);
430 <            assertEquals(1, result.size());
431 <            for (Iterator<Future<String>> it = result.iterator(); it.hasNext();)
432 <                it.next().get();
431 >            e.invokeAny(l);
432          } catch(ExecutionException success) {
433          } catch(Exception ex) {
434              unexpectedException();
# Line 542 | Line 541 | public class AbstractExecutorServiceTest
541          } catch(Exception ex) {
542              unexpectedException();
543          } finally {
544 +            joinPool(e);
545 +        }
546 +    }
547 +
548 +
549 +    /**
550 +     * timed invokeAny(null) throws NPE
551 +     */
552 +    public void testTimedInvokeAny1() {
553 +        ExecutorService e = new DirectExecutorService();
554 +        try {
555 +            e.invokeAny(null, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
556 +        } catch (NullPointerException success) {
557 +        } catch(Exception ex) {
558 +            unexpectedException();
559 +        } finally {
560 +            joinPool(e);
561 +        }
562 +    }
563 +
564 +    /**
565 +     * timed invokeAny(,,null) throws NPE
566 +     */
567 +    public void testTimedInvokeAnyNullTimeUnit() {
568 +        ExecutorService e = new DirectExecutorService();
569 +        try {
570 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
571 +            l.add(new StringTask());
572 +            e.invokeAny(l, MEDIUM_DELAY_MS, null);
573 +        } catch (NullPointerException success) {
574 +        } catch(Exception ex) {
575 +            unexpectedException();
576 +        } finally {
577 +            joinPool(e);
578 +        }
579 +    }
580 +
581 +    /**
582 +     * timed invokeAny(empty collection) throws IAE
583 +     */
584 +    public void testTimedInvokeAny2() {
585 +        ExecutorService e = new DirectExecutorService();
586 +        try {
587 +            e.invokeAny(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
588 +        } catch (IllegalArgumentException success) {
589 +        } catch(Exception ex) {
590 +            unexpectedException();
591 +        } finally {
592 +            joinPool(e);
593 +        }
594 +    }
595 +
596 +    /**
597 +     * timed invokeAny(c) throws NPE if c has null elements
598 +     */
599 +    public void testTimedInvokeAny3() {
600 +        ExecutorService e = new DirectExecutorService();
601 +        try {
602 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
603 +            l.add(new StringTask());
604 +            l.add(null);
605 +            e.invokeAny(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
606 +        } catch (NullPointerException success) {
607 +        } catch(Exception ex) {
608 +            ex.printStackTrace();
609 +            unexpectedException();
610 +        } finally {
611 +            joinPool(e);
612 +        }
613 +    }
614 +
615 +    /**
616 +     * timed invokeAny(c) throws ExecutionException if no task completes
617 +     */
618 +    public void testTimedInvokeAny4() {
619 +        ExecutorService e = new DirectExecutorService();
620 +        try {
621 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
622 +            l.add(new NPETask());
623 +            e.invokeAny(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
624 +        } catch(ExecutionException success) {
625 +        } catch(Exception ex) {
626 +            unexpectedException();
627 +        } finally {
628 +            joinPool(e);
629 +        }
630 +    }
631 +
632 +    /**
633 +     * timed invokeAny(c) returns result of some task
634 +     */
635 +    public void testTimedInvokeAny5() {
636 +        ExecutorService e = new DirectExecutorService();
637 +        try {
638 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
639 +            l.add(new StringTask());
640 +            l.add(new StringTask());
641 +            String result = e.invokeAny(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
642 +            assertSame(TEST_STRING, result);
643 +        } catch (ExecutionException success) {
644 +        } catch(Exception ex) {
645 +            unexpectedException();
646 +        } finally {
647 +            joinPool(e);
648 +        }
649 +    }
650 +
651 +    /**
652 +     * timed invokeAll(null) throws NPE
653 +     */
654 +    public void testTimedInvokeAll1() {
655 +        ExecutorService e = new DirectExecutorService();
656 +        try {
657 +            e.invokeAll(null, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
658 +        } catch (NullPointerException success) {
659 +        } catch(Exception ex) {
660 +            unexpectedException();
661 +        } finally {
662 +            joinPool(e);
663 +        }
664 +    }
665 +
666 +    /**
667 +     * timed invokeAll(,,null) throws NPE
668 +     */
669 +    public void testTimedInvokeAllNullTimeUnit() {
670 +        ExecutorService e = new DirectExecutorService();
671 +        try {
672 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
673 +            l.add(new StringTask());
674 +            e.invokeAll(l, MEDIUM_DELAY_MS, null);
675 +        } catch (NullPointerException success) {
676 +        } catch(Exception ex) {
677 +            unexpectedException();
678 +        } finally {
679 +            joinPool(e);
680 +        }
681 +    }
682 +
683 +    /**
684 +     * timed invokeAll(empty collection) returns empty collection
685 +     */
686 +    public void testTimedInvokeAll2() {
687 +        ExecutorService e = new DirectExecutorService();
688 +        try {
689 +            List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
690 +            assertTrue(r.isEmpty());
691 +        } catch(Exception ex) {
692 +            unexpectedException();
693 +        } finally {
694 +            joinPool(e);
695 +        }
696 +    }
697 +
698 +    /**
699 +     * timed invokeAll(c) throws NPE if c has null elements
700 +     */
701 +    public void testTimedInvokeAll3() {
702 +        ExecutorService e = new DirectExecutorService();
703 +        try {
704 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
705 +            l.add(new StringTask());
706 +            l.add(null);
707 +            e.invokeAll(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
708 +        } catch (NullPointerException success) {
709 +        } catch(Exception ex) {
710 +            unexpectedException();
711 +        } finally {
712 +            joinPool(e);
713 +        }
714 +    }
715 +
716 +    /**
717 +     * get of element of invokeAll(c) throws exception on failed task
718 +     */
719 +    public void testTimedInvokeAll4() {
720 +        ExecutorService e = new DirectExecutorService();
721 +        try {
722 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
723 +            l.add(new NPETask());
724 +            List<Future<String>> result = e.invokeAll(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
725 +            assertEquals(1, result.size());
726 +            for (Iterator<Future<String>> it = result.iterator(); it.hasNext();)
727 +                it.next().get();
728 +        } catch(ExecutionException success) {
729 +        } catch(Exception ex) {
730 +            unexpectedException();
731 +        } finally {
732 +            joinPool(e);
733 +        }
734 +    }
735 +
736 +    /**
737 +     * timed invokeAll(c) returns results of all completed tasks
738 +     */
739 +    public void testTimedInvokeAll5() {
740 +        ExecutorService e = new DirectExecutorService();
741 +        try {
742 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
743 +            l.add(new StringTask());
744 +            l.add(new StringTask());
745 +            List<Future<String>> result = e.invokeAll(l, MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
746 +            assertEquals(2, result.size());
747 +            for (Iterator<Future<String>> it = result.iterator(); it.hasNext();)
748 +                assertSame(TEST_STRING, it.next().get());
749 +        } catch (ExecutionException success) {
750 +        } catch(Exception ex) {
751 +            unexpectedException();
752 +        } finally {
753 +            joinPool(e);
754 +        }
755 +    }
756 +
757 +    /**
758 +     * timed invokeAll(c) cancels tasks not completed by timeout
759 +     */
760 +    public void testTimedInvokeAll6() {
761 +        ExecutorService e = new DirectExecutorService();
762 +        try {
763 +            ArrayList<Callable<String>> l = new ArrayList<Callable<String>>();
764 +            l.add(new StringTask());
765 +            l.add(Executors.callable(new LongPossiblyInterruptedRunnable(), TEST_STRING));
766 +            List<Future<String>> result = e.invokeAll(l, SHORT_DELAY_MS, TimeUnit.MILLISECONDS);
767 +            assertEquals(2, result.size());
768 +            Iterator<Future<String>> it = result.iterator();
769 +            Future<String> f1 = it.next();
770 +            Future<String> f2 = it.next();
771 +            assertTrue(f1.isDone());
772 +            assertFalse(f1.isCancelled());
773 +            assertTrue(f2.isDone());
774 +            //            assertTrue(f2.isCancelled());
775 +        } catch(Exception ex) {
776 +            unexpectedException();
777 +        } finally {
778              joinPool(e);
779          }
780      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines