Merge
This commit is contained in:
commit
c5ca4409e0
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -21,111 +21,148 @@
|
|||||||
* questions.
|
* questions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @test
|
* @test
|
||||||
* @bug 4327164
|
* @bug 4327164 8229338
|
||||||
* @summary Basic test for new RandomAccess interface
|
* @summary Basic test for new RandomAccess interface
|
||||||
|
* @run testng Basic
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import org.testng.annotations.DataProvider;
|
||||||
import java.util.Arrays;
|
import org.testng.annotations.Test;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.LinkedList;
|
import static org.testng.Assert.assertEquals;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
import java.util.*;
|
||||||
import java.util.RandomAccess;
|
import java.util.concurrent.CopyOnWriteArrayList;
|
||||||
import java.util.Vector;
|
import java.util.function.Function;
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
public class Basic {
|
public class Basic {
|
||||||
public static void main(String[] args) throws Exception {
|
|
||||||
List a0 = Arrays.asList(new String[] { "a", "b", "c" });
|
|
||||||
List a[] = { a0, new ArrayList(a0), new LinkedList(a0),
|
|
||||||
new Vector(a0) };
|
|
||||||
|
|
||||||
if (!(a[0] instanceof RandomAccess))
|
/*
|
||||||
throw new Exception("Arrays.asList doesn't implement RandomAccess");
|
* Lists which implement Random Access interface
|
||||||
if (!(a[1] instanceof RandomAccess))
|
*/
|
||||||
throw new Exception("ArrayList doesn't implement RandomAccess");
|
@DataProvider(name = "testLists")
|
||||||
if (a[2] instanceof RandomAccess)
|
public Object[][] testData() {
|
||||||
throw new Exception("LinkedList implements RandomAccess");
|
var intArray = new Integer[100];
|
||||||
if (!(a[3] instanceof RandomAccess))
|
var stack = new Stack<>();
|
||||||
throw new Exception("Vector doesn't implement RandomAccess");
|
var random = new Random();
|
||||||
|
|
||||||
for (int i = 0; i < a.length; i++) {
|
|
||||||
List t = a[i];
|
|
||||||
List ut = Collections.unmodifiableList(t);
|
|
||||||
List st = Collections.synchronizedList(t);
|
|
||||||
|
|
||||||
boolean random = t instanceof RandomAccess;
|
|
||||||
if ((ut instanceof RandomAccess) != random)
|
|
||||||
throw new Exception(
|
|
||||||
"Unmodifiable fails to preserve RandomAccess: " + i);
|
|
||||||
if ((st instanceof RandomAccess) != random)
|
|
||||||
throw new Exception(
|
|
||||||
"Synchronized fails to preserve RandomAccess: " + i);
|
|
||||||
|
|
||||||
while (t.size() > 0) {
|
|
||||||
t = t.subList(0, t.size() - 1);
|
|
||||||
if ((t instanceof RandomAccess) != random)
|
|
||||||
throw new Exception(
|
|
||||||
"SubList fails to preserve RandomAccess: " + i
|
|
||||||
+ ", " + t.size());
|
|
||||||
|
|
||||||
ut = ut.subList(0, ut.size() - 1);
|
|
||||||
if ((ut instanceof RandomAccess) != random)
|
|
||||||
throw new Exception(
|
|
||||||
"SubList(unmodifiable) fails to preserve RandomAccess: "
|
|
||||||
+ i + ", " + ut.size());
|
|
||||||
|
|
||||||
st = st.subList(0, st.size() - 1);
|
|
||||||
if ((st instanceof RandomAccess) != random)
|
|
||||||
throw new Exception(
|
|
||||||
"SubList(synchronized) fails to preserve RandomAccess: "
|
|
||||||
+ i + ", " + st.size());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Test that shuffle works the same on random and sequential access
|
|
||||||
List al = new ArrayList();
|
|
||||||
for (int j = 0; j < 100; j++)
|
|
||||||
al.add(Integer.valueOf(2 * j));
|
|
||||||
List ll = new LinkedList(al);
|
|
||||||
Random r1 = new Random(666), r2 = new Random(666);
|
|
||||||
for (int i = 0; i < 100; i++) {
|
for (int i = 0; i < 100; i++) {
|
||||||
Collections.shuffle(al, r1);
|
var r = random.nextInt(100);
|
||||||
Collections.shuffle(ll, r2);
|
stack.push(r);
|
||||||
if (!al.equals(ll))
|
intArray[i] = r;
|
||||||
throw new Exception("Shuffle failed: " + i);
|
|
||||||
}
|
}
|
||||||
|
List<Integer> list = Arrays.asList(intArray);
|
||||||
|
return new Object[][]{
|
||||||
|
{list, true, "Arrays.asList"},
|
||||||
|
{stack, true, "Stack"},
|
||||||
|
{new ArrayList<>(list), true, "ArrayList"},
|
||||||
|
{new LinkedList<>(list), false, "LinkedList"},
|
||||||
|
{new Vector<>(list), true, "Vector"},
|
||||||
|
{new CopyOnWriteArrayList<>(list), true, "CopyOnWriteArrayList"}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Test that fill works on random & sequential access
|
@Test(dataProvider = "testLists")
|
||||||
List gumbyParade = Collections.nCopies(100, "gumby");
|
public void testRandomAccess(List<Integer> list, boolean expectedRA, String failMsg) {
|
||||||
Collections.fill(al, "gumby");
|
|
||||||
if (!al.equals(gumbyParade))
|
|
||||||
throw new Exception("ArrayList fill failed");
|
|
||||||
Collections.fill(ll, "gumby");
|
|
||||||
if (!ll.equals(gumbyParade))
|
|
||||||
throw new Exception("LinkedList fill failed");
|
|
||||||
|
|
||||||
|
var actualRA = list instanceof RandomAccess;
|
||||||
|
assertEquals(actualRA, expectedRA, failMsg);
|
||||||
|
|
||||||
|
List<Integer> unmodList = Collections.unmodifiableList(list);
|
||||||
|
List<Integer> syncList = Collections.synchronizedList(list);
|
||||||
|
assertEquals((unmodList instanceof RandomAccess), actualRA,
|
||||||
|
"Unmodifiable fails to preserve RandomAccess");
|
||||||
|
assertEquals((syncList instanceof RandomAccess), actualRA,
|
||||||
|
"Synchronized fails to preserve RandomAccess");
|
||||||
|
|
||||||
|
while (list.size() > 0) {
|
||||||
|
list = list.subList(0, list.size() - 1);
|
||||||
|
assertEquals((list instanceof RandomAccess), actualRA,
|
||||||
|
"SubList fails to preserve RandomAccess: " + list.size());
|
||||||
|
|
||||||
|
unmodList = unmodList.subList(0, unmodList.size() - 1);
|
||||||
|
assertEquals((unmodList instanceof RandomAccess), actualRA,
|
||||||
|
"SubList(unmodifiable) fails to preserve RandomAccess: "
|
||||||
|
+ unmodList.size());
|
||||||
|
|
||||||
|
syncList = syncList.subList(0, syncList.size() - 1);
|
||||||
|
assertEquals((syncList instanceof RandomAccess), actualRA,
|
||||||
|
"SubList(synchronized) fails to preserve RandomAccess: "
|
||||||
|
+ syncList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dataProvider = "testLists")
|
||||||
|
public void testListCopy(List<Integer> list, boolean expectedRA, String failMsg) {
|
||||||
|
ArrayList testCollection = new ArrayList<>(Collections.nCopies(100, 0));
|
||||||
// Test that copy works on random & sequential access
|
// Test that copy works on random & sequential access
|
||||||
List pokeyParade = Collections.nCopies(100, "pokey");
|
Collections.copy(list, testCollection);
|
||||||
Collections.copy(al, pokeyParade);
|
assertEquals(list, testCollection, "Copy failed: " + failMsg);
|
||||||
if (!al.equals(pokeyParade))
|
}
|
||||||
throw new Exception("ArrayList copy failed");
|
|
||||||
Collections.copy(ll, pokeyParade);
|
|
||||||
if (!ll.equals(pokeyParade))
|
|
||||||
throw new Exception("LinkedList copy failed");
|
|
||||||
|
|
||||||
// Test that binarySearch works the same on random & sequential access
|
@Test(dataProvider = "testLists")
|
||||||
al = new ArrayList();
|
public void testListFill(List<Integer> list, boolean expectedRA, String failMsg) {
|
||||||
for (int i = 0; i < 10000; i++)
|
ArrayList testCollection = new ArrayList<>(Collections.nCopies(100, 0));
|
||||||
al.add(Integer.valueOf(2 * i));
|
// Test that copy works on random & sequential access
|
||||||
ll = new LinkedList(al);
|
Collections.fill(list, 0);
|
||||||
|
assertEquals(list, testCollection, "Fill failed: " + failMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Test that shuffle and binarySearch work the same on random and sequential access lists.
|
||||||
|
*/
|
||||||
|
@DataProvider(name = "testFactoryLists")
|
||||||
|
public Object[][] testDataFactory() {
|
||||||
|
return new Object[][]{
|
||||||
|
{"ArrayList -> LinkedList", supplier(ArrayList::new), copyCtor(LinkedList::new)},
|
||||||
|
{"CopyOnWriteArrayList -> Stack", supplier(CopyOnWriteArrayList::new),
|
||||||
|
copyCtor((list) -> { var s = new Stack();s.addAll(list);return s; })}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private Supplier<List<Integer>> supplier(Supplier<List<Integer>> supplier) {
|
||||||
|
return supplier;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Function<List<Integer>, List<Integer>> copyCtor(Function<List<Integer>, List<Integer>> ctor) {
|
||||||
|
return ctor;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dataProvider = "testFactoryLists")
|
||||||
|
public void testListShuffle(String description, Supplier<List<Integer>> randomAccessListSupplier,
|
||||||
|
Function<List<Integer>, List<Integer>> otherListFactory) {
|
||||||
|
|
||||||
|
//e.g: ArrayList<Integer> al = new ArrayList<>();
|
||||||
|
List<Integer> l1 = randomAccessListSupplier.get();
|
||||||
|
for (int j = 0; j < 100; j++) {
|
||||||
|
l1.add(Integer.valueOf(2 * j));
|
||||||
|
}
|
||||||
|
// e.g: List<Integer> ll = new LinkedList<>(al);
|
||||||
|
List<Integer> l2 = otherListFactory.apply(l1);
|
||||||
|
for (int i = 0; i < 100; i++) {
|
||||||
|
Collections.shuffle(l1, new Random(666));
|
||||||
|
Collections.shuffle(l2, new Random(666));
|
||||||
|
assertEquals(l1, l2, "Shuffle failed: " + description);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(dataProvider = "testFactoryLists")
|
||||||
|
public void testListBinarySearch(String description, Supplier<List<Integer>> randomAccessListSupplier,
|
||||||
|
Function<List<Integer>, List<Integer>> otherListFactory) {
|
||||||
|
|
||||||
|
//e.g: ArrayList<Integer> al = new ArrayList<>();
|
||||||
|
List<Integer> l1 = randomAccessListSupplier.get();
|
||||||
|
for (int i = 0; i < 10000; i++) {
|
||||||
|
l1.add(Integer.valueOf(2 * i));
|
||||||
|
}
|
||||||
|
// e.g: List<Integer> ll = new LinkedList<>(al);
|
||||||
|
List<Integer> l2 = otherListFactory.apply(l1);
|
||||||
for (int i = 0; i < 500; i++) {
|
for (int i = 0; i < 500; i++) {
|
||||||
Integer key = Integer.valueOf(r1.nextInt(20000));
|
Integer key = Integer.valueOf(new Random(666).nextInt(20000));
|
||||||
if (Collections.binarySearch(al, key) != Collections
|
assertEquals(Collections.binarySearch(l1, key), Collections
|
||||||
.binarySearch(ll, key))
|
.binarySearch(l2, key), "Binary search failed: " + description);
|
||||||
throw new Exception("Binary search failed: " + i);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user