blob: 583ebf71e49cb558202475192b6aabf41d5fa141 [file] [log] [blame]
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
* Other contributors include Andrew Wright, Jeffrey Hayes,
* Pat Fisher, Mike Judd.
*/
import java.util.AbstractQueue;
import java.util.Arrays;
import java.util.Iterator;
import java.util.NoSuchElementException;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AbstractQueueTest extends JSR166TestCase {
public static void main(String[] args) {
main(suite(), args);
}
public static Test suite() {
return new TestSuite(AbstractQueueTest.class);
}
static class Succeed extends AbstractQueue<Integer> {
public boolean offer(Integer x) {
if (x == null) throw new NullPointerException();
return true;
}
public Integer peek() { return one; }
public Integer poll() { return one; }
public int size() { return 0; }
public Iterator iterator() { return null; } // not needed
}
static class Fail extends AbstractQueue<Integer> {
public boolean offer(Integer x) {
if (x == null) throw new NullPointerException();
return false;
}
public Integer peek() { return null; }
public Integer poll() { return null; }
public int size() { return 0; }
public Iterator iterator() { return null; } // not needed
}
/**
* add returns true if offer succeeds
*/
public void testAddS() {
Succeed q = new Succeed();
assertTrue(q.add(two));
}
/**
* add throws IllegalStateException if offer fails
*/
public void testAddF() {
Fail q = new Fail();
try {
q.add(one);
shouldThrow();
} catch (IllegalStateException success) {}
}
/**
* add throws NullPointerException if offer does
*/
public void testAddNPE() {
Succeed q = new Succeed();
try {
q.add(null);
shouldThrow();
} catch (NullPointerException success) {}
}
/**
* remove returns normally if poll succeeds
*/
public void testRemoveS() {
Succeed q = new Succeed();
assertSame(one, q.remove());
}
/**
* remove throws NSEE if poll returns null
*/
public void testRemoveF() {
Fail q = new Fail();
try {
q.remove();
shouldThrow();
} catch (NoSuchElementException success) {}
}
/**
* element returns normally if peek succeeds
*/
public void testElementS() {
Succeed q = new Succeed();
assertSame(one, q.element());
}
/**
* element throws NSEE if peek returns null
*/
public void testElementF() {
Fail q = new Fail();
try {
q.element();
shouldThrow();
} catch (NoSuchElementException success) {}
}
/**
* addAll(null) throws NullPointerException
*/
public void testAddAll1() {
Succeed q = new Succeed();
try {
q.addAll(null);
shouldThrow();
} catch (NullPointerException success) {}
}
/**
* addAll(this) throws IllegalArgumentException
*/
public void testAddAllSelf() {
Succeed q = new Succeed();
try {
q.addAll(q);
shouldThrow();
} catch (IllegalArgumentException success) {}
}
/**
* addAll of a collection with null elements throws NullPointerException
*/
public void testAddAll2() {
Succeed q = new Succeed();
Integer[] ints = new Integer[SIZE];
try {
q.addAll(Arrays.asList(ints));
shouldThrow();
} catch (NullPointerException success) {}
}
/**
* addAll of a collection with any null elements throws NPE after
* possibly adding some elements
*/
public void testAddAll3() {
Succeed q = new Succeed();
Integer[] ints = new Integer[SIZE];
for (int i = 0; i < SIZE - 1; ++i)
ints[i] = new Integer(i);
try {
q.addAll(Arrays.asList(ints));
shouldThrow();
} catch (NullPointerException success) {}
}
/**
* addAll throws IllegalStateException if an add fails
*/
public void testAddAll4() {
Fail q = new Fail();
Integer[] ints = new Integer[SIZE];
for (int i = 0; i < SIZE; ++i)
ints[i] = new Integer(i);
try {
q.addAll(Arrays.asList(ints));
shouldThrow();
} catch (IllegalStateException success) {}
}
}