/* * 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 and Martin Buchholz 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/
*/
publicstatic Test suite() { class Implementation implements CollectionImplementation { publicClass<?> klazz() { return Vector.class; } public List emptyCollection() { returnnew Vector(); } public Object makeElement(int i) { return JSR166TestCase.itemFor(i); } publicboolean isConcurrent() { returnfalse; } publicboolean permitsNulls() { returntrue; }
} class SubListImplementation extends Implementation {
@SuppressWarnings("unchecked") public List emptyCollection() {
List list = super.emptyCollection();
ThreadLocalRandom rnd = ThreadLocalRandom.current(); if (rnd.nextBoolean())
list.add(makeElement(rnd.nextInt())); int i = rnd.nextInt(list.size() + 1); return list.subList(i, i);
}
} return newTestSuite(
VectorTest.class,
CollectionTest.testSuite(new Implementation()),
CollectionTest.testSuite(new SubListImplementation()));
}
static Vector<Item> populatedList(int n) {
Vector<Item> list = new Vector<>();
assertTrue(list.isEmpty()); for (int i = 0; i < n; i++)
mustAdd(list, i);
mustEqual(n <= 0, list.isEmpty());
mustEqual(n, list.size()); return list;
}
/** * addAll adds each element from the given collection, including duplicates
*/ publicvoid testAddAll() {
List<Item> list = populatedList(3);
assertTrue(list.addAll(Arrays.asList(three, four, five)));
mustEqual(6, list.size());
assertTrue(list.addAll(Arrays.asList(three, four, five)));
mustEqual(9, list.size());
}
/** * clear removes all elements from the list
*/ publicvoid testClear() {
List<Item> list = populatedList(SIZE);
list.clear();
mustEqual(0, list.size());
}
/** * contains is true for added elements
*/ publicvoid testContains() {
List<Item> list = populatedList(3);
mustContain(list, one);
mustNotContain(list, five);
}
/** * adding at an index places it in the indicated index
*/ publicvoid testAddIndex() {
List<Item> list = populatedList(3);
list.add(0, minusOne);
mustEqual(4, list.size());
mustEqual(minusOne, list.get(0));
mustEqual(zero, list.get(1));
/** * lists with same elements are equal and have same hashCode
*/ publicvoid testEquals() {
List<Item> a = populatedList(3);
List<Item> b = populatedList(3);
assertTrue(a.equals(b));
assertTrue(b.equals(a));
assertTrue(a.containsAll(b));
assertTrue(b.containsAll(a));
mustEqual(a.hashCode(), b.hashCode());
a.add(minusOne);
assertFalse(a.equals(b));
assertFalse(b.equals(a));
assertTrue(a.containsAll(b));
assertFalse(b.containsAll(a));
b.add(minusOne);
assertTrue(a.equals(b));
assertTrue(b.equals(a));
assertTrue(a.containsAll(b));
assertTrue(b.containsAll(a));
mustEqual(a.hashCode(), b.hashCode());
assertFalse(a.equals(null));
}
/** * containsAll returns true for collections with subset of elements
*/ publicvoid testContainsAll() {
List<Item> list = populatedList(3);
assertTrue(list.containsAll(Arrays.asList()));
assertTrue(list.containsAll(Arrays.asList(one)));
assertTrue(list.containsAll(Arrays.asList(one, two)));
assertFalse(list.containsAll(Arrays.asList(one, two, six)));
assertFalse(list.containsAll(Arrays.asList(six)));
/** * get returns the value at the given index
*/ publicvoid testGet() {
List<Item> list = populatedList(3);
mustEqual(0, list.get(0));
}
/** * indexOf(Object) returns the index of the first occurrence of the * specified element in this list, or -1 if this list does not * contain the element
*/ publicvoid testIndexOf() {
List<Item> list = populatedList(3);
mustEqual(-1, list.indexOf(minusTen)); int size = list.size(); for (int i = 0; i < size; i++) {
Item I = itemFor(i);
mustEqual(i, list.indexOf(I));
mustEqual(i, list.subList(0, size).indexOf(I));
mustEqual(i, list.subList(0, i + 1).indexOf(I));
mustEqual(-1, list.subList(0, i).indexOf(I));
mustEqual(0, list.subList(i, size).indexOf(I));
mustEqual(-1, list.subList(i + 1, size).indexOf(I));
}
/** * indexOf(E, int) returns the index of the first occurrence of the * specified element in this list, searching forwards from index, * or returns -1 if the element is not found
*/ publicvoid testIndexOf2() {
Vector<Item> list = populatedList(3); int size = list.size();
mustEqual(-1, list.indexOf(minusTen, 0));
// we might expect IOOBE, but spec says otherwise
mustEqual(-1, list.indexOf(zero, size));
mustEqual(-1, list.indexOf(zero, Integer.MAX_VALUE));
List<Item> full = populatedList(SIZE);
assertFalse(full.isEmpty());
assertTrue(full.subList(0, 0).isEmpty());
assertTrue(full.subList(SIZE, SIZE).isEmpty());
}
/** * iterator of empty collection has no elements
*/ publicvoid testEmptyIterator() {
Collection<Item> c = new Vector<>();
assertIteratorExhausted(c.iterator());
}
/** * lastIndexOf(Object) returns the index of the last occurrence of * the specified element in this list, or -1 if this list does not * contain the element
*/ publicvoid testLastIndexOf1() {
List<Item> list = populatedList(3);
mustEqual(-1, list.lastIndexOf(minusTen)); int size = list.size(); for (int i = 0; i < size; i++) {
Item I = itemFor(i);
mustEqual(i, list.lastIndexOf(I));
mustEqual(i, list.subList(0, size).lastIndexOf(I));
mustEqual(i, list.subList(0, i + 1).lastIndexOf(I));
mustEqual(-1, list.subList(0, i).lastIndexOf(I));
mustEqual(0, list.subList(i, size).lastIndexOf(I));
mustEqual(-1, list.subList(i + 1, size).lastIndexOf(I));
}
/** * lastIndexOf(E, int) returns the index of the last occurrence of the * specified element in this list, searching backwards from index, or * returns -1 if the element is not found
*/ publicvoid testLastIndexOf2() {
Vector<Item> list = populatedList(3);
// we might expect IOOBE, but spec says otherwise
mustEqual(-1, list.lastIndexOf(zero, -1));
for (int i = 0; i < size; i++) {
Item I = itemFor(i);
mustEqual(i, list.lastIndexOf(I, i));
mustEqual(list.indexOf(I), list.lastIndexOf(I, i)); if (i > 0)
mustEqual(-1, list.lastIndexOf(I, i - 1));
}
list.add(one);
list.add(three);
mustEqual(1, list.lastIndexOf(one, 1));
mustEqual(1, list.lastIndexOf(one, 2));
mustEqual(3, list.lastIndexOf(one, 3));
mustEqual(3, list.lastIndexOf(one, 4));
mustEqual(-1, list.lastIndexOf(three, 3));
}
/** * size returns the number of elements
*/ publicvoid testSize() {
List<Item> empty = new Vector<>();
mustEqual(0, empty.size());
mustEqual(0, empty.subList(0, 0).size());
/** * sublists contains elements at indexes offset from their base
*/ publicvoid testSubList() {
List<Item> a = populatedList(10);
assertTrue(a.subList(1,1).isEmpty()); for (int j = 0; j < 9; ++j) { for (int i = j ; i < 10; ++i) {
List<Item> b = a.subList(j,i); for (int k = j; k < i; ++k) {
mustEqual(k, b.get(k-j));
}
}
}
/** * toArray throws an ArrayStoreException when the given array * can not store the objects inside the list
*/
@SuppressWarnings("CollectionToArraySafeParameter") publicvoid testToArray_ArrayStoreException() {
List<Item> list = new Vector<>(); // Items are not auto-converted to Longs
list.add(eightysix);
list.add(ninetynine);
assertThrows(
ArrayStoreException.class,
() -> list.toArray(newLong[0]),
() -> list.toArray(newLong[5]));
}
/** * a deserialized/reserialized list equals original
*/ publicvoid testSerialization() throws Exception {
List<Item> x = populatedList(SIZE);
List<Item> y = serialClone(x);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.