Methods Summary |
---|
public static void | main(java.lang.String[] args)
junit.textui.TestRunner.run (suite());
|
private java.util.concurrent.DelayQueue | populatedQueue(int n)Create a queue of given size containing consecutive
PDelays 0 ... n.
DelayQueue q = new DelayQueue();
assertTrue(q.isEmpty());
for(int i = n-1; i >= 0; i-=2)
assertTrue(q.offer(new PDelay(i)));
for(int i = (n & 1); i < n; i+=2)
assertTrue(q.offer(new PDelay(i)));
assertFalse(q.isEmpty());
assertEquals(NOCAP, q.remainingCapacity());
assertEquals(n, q.size());
return q;
|
public static junit.framework.Test | suite()
return new TestSuite(DelayQueueTest.class);
|
public void | testAdd()add succeeds
DelayQueue q = new DelayQueue();
for (int i = 0; i < SIZE; ++i) {
assertEquals(i, q.size());
assertTrue(q.add(new PDelay(i)));
}
|
public void | testAddAll1()addAll(null) throws NPE
try {
DelayQueue q = new DelayQueue();
q.addAll(null);
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testAddAll2()addAll of a collection with null elements throws NPE
try {
DelayQueue q = new DelayQueue();
PDelay[] ints = new PDelay[SIZE];
q.addAll(Arrays.asList(ints));
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testAddAll3()addAll of a collection with any null elements throws NPE after
possibly adding some elements
try {
DelayQueue q = new DelayQueue();
PDelay[] ints = new PDelay[SIZE];
for (int i = 0; i < SIZE-1; ++i)
ints[i] = new PDelay(i);
q.addAll(Arrays.asList(ints));
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testAddAll5()Queue contains all elements of successful addAll
try {
PDelay[] empty = new PDelay[0];
PDelay[] ints = new PDelay[SIZE];
for (int i = SIZE-1; i >= 0; --i)
ints[i] = new PDelay(i);
DelayQueue q = new DelayQueue();
assertFalse(q.addAll(Arrays.asList(empty)));
assertTrue(q.addAll(Arrays.asList(ints)));
for (int i = 0; i < SIZE; ++i)
assertEquals(ints[i], q.poll());
}
finally {}
|
public void | testAddAllSelf()addAll(this) throws IAE
try {
DelayQueue q = populatedQueue(SIZE);
q.addAll(q);
shouldThrow();
}
catch (IllegalArgumentException success) {}
|
public void | testAddNull()add(null) throws NPE
try {
DelayQueue q = new DelayQueue();
q.add(null);
shouldThrow();
} catch (NullPointerException success) { }
|
public void | testBlockingTake()Take removes existing elements until empty, then blocks interruptibly
Thread t = new Thread(new Runnable() {
public void run() {
try {
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
threadAssertEquals(new PDelay(i), ((PDelay)q.take()));
}
q.take();
threadShouldThrow();
} catch (InterruptedException success){
}
}});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
}
catch (InterruptedException ie) {
unexpectedException();
}
|
public void | testClear()clear removes all elements
DelayQueue q = populatedQueue(SIZE);
q.clear();
assertTrue(q.isEmpty());
assertEquals(0, q.size());
assertEquals(NOCAP, q.remainingCapacity());
q.add(new PDelay(1));
assertFalse(q.isEmpty());
q.clear();
assertTrue(q.isEmpty());
|
public void | testConstructor1()A new queue has unbounded capacity
assertEquals(NOCAP, new DelayQueue().remainingCapacity());
|
public void | testConstructor3()Initializing from null Collection throws NPE
try {
DelayQueue q = new DelayQueue(null);
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testConstructor4()Initializing from Collection of null elements throws NPE
try {
PDelay[] ints = new PDelay[SIZE];
DelayQueue q = new DelayQueue(Arrays.asList(ints));
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testConstructor5()Initializing from Collection with some null elements throws NPE
try {
PDelay[] ints = new PDelay[SIZE];
for (int i = 0; i < SIZE-1; ++i)
ints[i] = new PDelay(i);
DelayQueue q = new DelayQueue(Arrays.asList(ints));
shouldThrow();
}
catch (NullPointerException success) {}
|
public void | testConstructor6()Queue contains all elements of collection used to initialize
try {
PDelay[] ints = new PDelay[SIZE];
for (int i = 0; i < SIZE; ++i)
ints[i] = new PDelay(i);
DelayQueue q = new DelayQueue(Arrays.asList(ints));
for (int i = 0; i < SIZE; ++i)
assertEquals(ints[i], q.poll());
}
finally {}
|
public void | testContains()contains(x) reports true when elements added but not yet removed
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertTrue(q.contains(new PDelay(i)));
q.poll();
assertFalse(q.contains(new PDelay(i)));
}
|
public void | testContainsAll()containsAll(c) is true when c contains a subset of elements
DelayQueue q = populatedQueue(SIZE);
DelayQueue p = new DelayQueue();
for (int i = 0; i < SIZE; ++i) {
assertTrue(q.containsAll(p));
assertFalse(p.containsAll(q));
p.add(new PDelay(i));
}
assertTrue(p.containsAll(q));
|
public void | testDelay()Delayed actions do not occur until their delay elapses
DelayQueue q = new DelayQueue();
NanoDelay[] elements = new NanoDelay[SIZE];
for (int i = 0; i < SIZE; ++i) {
elements[i] = new NanoDelay(1000000000L + 1000000L * (SIZE - i));
}
for (int i = 0; i < SIZE; ++i) {
q.add(elements[i]);
}
try {
long last = 0;
for (int i = 0; i < SIZE; ++i) {
NanoDelay e = (NanoDelay)(q.take());
long tt = e.getTriggerTime();
assertTrue(tt <= System.nanoTime());
if (i != 0)
assertTrue(tt >= last);
last = tt;
}
}
catch(InterruptedException ie) {
unexpectedException();
}
|
public void | testDrainTo()drainTo(c) empties queue into another collection c
DelayQueue q = populatedQueue(SIZE);
ArrayList l = new ArrayList();
q.drainTo(l);
assertEquals(q.size(), 0);
assertEquals(l.size(), SIZE);
|
public void | testDrainToN()drainTo(c, n) empties first max {n, size} elements of queue into c
for (int i = 0; i < SIZE + 2; ++i) {
DelayQueue q = populatedQueue(SIZE);
ArrayList l = new ArrayList();
q.drainTo(l, i);
int k = (i < SIZE)? i : SIZE;
assertEquals(q.size(), SIZE-k);
assertEquals(l.size(), k);
}
|
public void | testDrainToNull()drainTo(null) throws NPE
DelayQueue q = populatedQueue(SIZE);
try {
q.drainTo(null);
shouldThrow();
} catch(NullPointerException success) {
}
|
public void | testDrainToNullN()drainTo(null, n) throws NPE
DelayQueue q = populatedQueue(SIZE);
try {
q.drainTo(null, 0);
shouldThrow();
} catch(NullPointerException success) {
}
|
public void | testDrainToSelf()drainTo(this) throws IAE
DelayQueue q = populatedQueue(SIZE);
try {
q.drainTo(q);
shouldThrow();
} catch(IllegalArgumentException success) {
}
|
public void | testDrainToSelfN()drainTo(this, n) throws IAE
DelayQueue q = populatedQueue(SIZE);
try {
q.drainTo(q, 0);
shouldThrow();
} catch(IllegalArgumentException success) {
}
|
public void | testDrainToWithActivePut()drainTo empties queue
final DelayQueue q = populatedQueue(SIZE);
Thread t = new Thread(new Runnable() {
public void run() {
q.put(new PDelay(SIZE+1));
}
});
try {
t.start();
ArrayList l = new ArrayList();
q.drainTo(l);
assertTrue(l.size() >= SIZE);
t.join();
assertTrue(q.size() + l.size() >= SIZE);
} catch(Exception e){
unexpectedException();
}
|
public void | testElement()element returns next element, or throws NSEE if empty
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.element()));
q.poll();
}
try {
q.element();
shouldThrow();
}
catch (NoSuchElementException success) {}
|
public void | testEmpty()isEmpty is true before add, false after
DelayQueue q = new DelayQueue();
assertTrue(q.isEmpty());
assertEquals(NOCAP, q.remainingCapacity());
q.add(new PDelay(1));
assertFalse(q.isEmpty());
q.add(new PDelay(2));
q.remove();
q.remove();
assertTrue(q.isEmpty());
|
public void | testInterruptedTimedPoll()Interrupted timed poll throws InterruptedException instead of
returning timeout status
Thread t = new Thread(new Runnable() {
public void run() {
try {
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
threadAssertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)));
}
threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
} catch (InterruptedException success){
}
}});
t.start();
try {
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
}
catch (InterruptedException ie) {
unexpectedException();
}
|
public void | testIterator()iterator iterates through all elements
DelayQueue q = populatedQueue(SIZE);
int i = 0;
Iterator it = q.iterator();
while(it.hasNext()) {
assertTrue(q.contains(it.next()));
++i;
}
assertEquals(i, SIZE);
|
public void | testIteratorRemove()iterator.remove removes current element
final DelayQueue q = new DelayQueue();
q.add(new PDelay(2));
q.add(new PDelay(1));
q.add(new PDelay(3));
Iterator it = q.iterator();
it.next();
it.remove();
it = q.iterator();
assertEquals(it.next(), new PDelay(2));
assertEquals(it.next(), new PDelay(3));
assertFalse(it.hasNext());
|
public void | testOffer()offer non-null succeeds
DelayQueue q = new DelayQueue();
assertTrue(q.offer(new PDelay(0)));
assertTrue(q.offer(new PDelay(1)));
|
public void | testOfferNull()offer(null) throws NPE
try {
DelayQueue q = new DelayQueue();
q.offer(null);
shouldThrow();
} catch (NullPointerException success) { }
|
public void | testPeek()peek returns next element, or null if empty
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.peek()));
q.poll();
assertTrue(q.peek() == null ||
i != ((PDelay)q.peek()).intValue());
}
assertNull(q.peek());
|
public void | testPoll()poll succeeds unless empty
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.poll()));
}
assertNull(q.poll());
|
public void | testPollInExecutor()offer transfers elements across Executor tasks
final DelayQueue q = new DelayQueue();
ExecutorService executor = Executors.newFixedThreadPool(2);
executor.execute(new Runnable() {
public void run() {
threadAssertNull(q.poll());
try {
threadAssertTrue(null != q.poll(MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS));
threadAssertTrue(q.isEmpty());
}
catch (InterruptedException e) {
threadUnexpectedException();
}
}
});
executor.execute(new Runnable() {
public void run() {
try {
Thread.sleep(SHORT_DELAY_MS);
q.put(new PDelay(1));
}
catch (InterruptedException e) {
threadUnexpectedException();
}
}
});
joinPool(executor);
|
public void | testPut()all elements successfully put are contained
try {
DelayQueue q = new DelayQueue();
for (int i = 0; i < SIZE; ++i) {
PDelay I = new PDelay(i);
q.put(I);
assertTrue(q.contains(I));
}
assertEquals(SIZE, q.size());
}
finally {
}
|
public void | testPutNull()put(null) throws NPE
try {
DelayQueue q = new DelayQueue();
q.put(null);
shouldThrow();
}
catch (NullPointerException success){
}
|
public void | testPutWithTake()put doesn't block waiting for take
final DelayQueue q = new DelayQueue();
Thread t = new Thread(new Runnable() {
public void run() {
int added = 0;
try {
q.put(new PDelay(0));
++added;
q.put(new PDelay(0));
++added;
q.put(new PDelay(0));
++added;
q.put(new PDelay(0));
++added;
threadAssertTrue(added == 4);
} finally {
}
}
});
try {
t.start();
Thread.sleep(SHORT_DELAY_MS);
q.take();
t.interrupt();
t.join();
} catch (Exception e){
unexpectedException();
}
|
public void | testRemainingCapacity()remainingCapacity does not change when elementa added or removed,
but size does
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(NOCAP, q.remainingCapacity());
assertEquals(SIZE-i, q.size());
q.remove();
}
for (int i = 0; i < SIZE; ++i) {
assertEquals(NOCAP, q.remainingCapacity());
assertEquals(i, q.size());
q.add(new PDelay(i));
}
|
public void | testRemove()remove removes next element, or throws NSEE if empty
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.remove()));
}
try {
q.remove();
shouldThrow();
} catch (NoSuchElementException success){
}
|
public void | testRemoveAll()removeAll(c) removes only those elements of c and reports true if changed
for (int i = 1; i < SIZE; ++i) {
DelayQueue q = populatedQueue(SIZE);
DelayQueue p = populatedQueue(i);
assertTrue(q.removeAll(p));
assertEquals(SIZE-i, q.size());
for (int j = 0; j < i; ++j) {
PDelay I = (PDelay)(p.remove());
assertFalse(q.contains(I));
}
}
|
public void | testRemoveElement()remove(x) removes x and returns true if present
DelayQueue q = populatedQueue(SIZE);
for (int i = 1; i < SIZE; i+=2) {
assertTrue(q.remove(new PDelay(i)));
}
for (int i = 0; i < SIZE; i+=2) {
assertTrue(q.remove(new PDelay(i)));
assertFalse(q.remove(new PDelay(i+1)));
}
assertTrue(q.isEmpty());
|
public void | testRetainAll()retainAll(c) retains only those elements of c and reports true if changed
DelayQueue q = populatedQueue(SIZE);
DelayQueue p = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
boolean changed = q.retainAll(p);
if (i == 0)
assertFalse(changed);
else
assertTrue(changed);
assertTrue(q.containsAll(p));
assertEquals(SIZE-i, q.size());
p.remove();
}
|
public void | testTake()take retrieves elements in priority order
try {
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.take()));
}
} catch (InterruptedException e){
unexpectedException();
}
|
public void | testTakeFromEmpty()take blocks interruptibly when empty
final DelayQueue q = new DelayQueue();
Thread t = new Thread(new Runnable() {
public void run() {
try {
q.take();
threadShouldThrow();
} catch (InterruptedException success){ }
}
});
try {
t.start();
Thread.sleep(SHORT_DELAY_MS);
t.interrupt();
t.join();
} catch (Exception e){
unexpectedException();
}
|
public void | testTimedOffer()timed offer does not time out
final DelayQueue q = new DelayQueue();
Thread t = new Thread(new Runnable() {
public void run() {
try {
q.put(new PDelay(0));
q.put(new PDelay(0));
threadAssertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
threadAssertTrue(q.offer(new PDelay(0), LONG_DELAY_MS, TimeUnit.MILLISECONDS));
} finally { }
}
});
try {
t.start();
Thread.sleep(SMALL_DELAY_MS);
t.interrupt();
t.join();
} catch (Exception e){
unexpectedException();
}
|
public void | testTimedPoll()timed pool with nonzero timeout succeeds when non-empty, else times out
try {
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS)));
}
assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
} catch (InterruptedException e){
unexpectedException();
}
|
public void | testTimedPoll0()timed pool with zero timeout succeeds when non-empty, else times out
try {
DelayQueue q = populatedQueue(SIZE);
for (int i = 0; i < SIZE; ++i) {
assertEquals(new PDelay(i), ((PDelay)q.poll(0, TimeUnit.MILLISECONDS)));
}
assertNull(q.poll(0, TimeUnit.MILLISECONDS));
} catch (InterruptedException e){
unexpectedException();
}
|
public void | testTimedPollWithOffer()timed poll before a delayed offer fails; after offer succeeds;
on interruption throws
final DelayQueue q = new DelayQueue();
Thread t = new Thread(new Runnable() {
public void run() {
try {
threadAssertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
q.poll(LONG_DELAY_MS, TimeUnit.MILLISECONDS);
threadFail("Should block");
} catch (InterruptedException success) { }
}
});
try {
t.start();
Thread.sleep(SMALL_DELAY_MS);
assertTrue(q.offer(new PDelay(0), SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
t.interrupt();
t.join();
} catch (Exception e){
unexpectedException();
}
|
public void | testToArray()toArray contains all elements
DelayQueue q = populatedQueue(SIZE);
Object[] o = q.toArray();
Arrays.sort(o);
try {
for(int i = 0; i < o.length; i++)
assertEquals(o[i], q.take());
} catch (InterruptedException e){
unexpectedException();
}
|
public void | testToArray1_BadArg()toArray with incompatible array type throws CCE
try {
DelayQueue q = populatedQueue(SIZE);
Object o[] = q.toArray(new String[10] );
shouldThrow();
} catch(ArrayStoreException success){}
|
public void | testToArray2()toArray(a) contains all elements
DelayQueue q = populatedQueue(SIZE);
PDelay[] ints = new PDelay[SIZE];
ints = (PDelay[])q.toArray(ints);
Arrays.sort(ints);
try {
for(int i = 0; i < ints.length; i++)
assertEquals(ints[i], q.take());
} catch (InterruptedException e){
unexpectedException();
}
|
public void | testToArray_BadArg()toArray(null) throws NPE
try {
DelayQueue q = populatedQueue(SIZE);
Object o[] = q.toArray(null);
shouldThrow();
} catch(NullPointerException success){}
|
public void | testToString()toString contains toStrings of elements
DelayQueue q = populatedQueue(SIZE);
String s = q.toString();
for (int i = 0; i < SIZE; ++i) {
assertTrue(s.indexOf(String.valueOf(Integer.MIN_VALUE+i)) >= 0);
}
|