b5e1615c00
Reviewed-by: gli, liach, pminborg
195 lines
7.5 KiB
Java
195 lines
7.5 KiB
Java
/*
|
|
* Copyright (c) 2003, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* @test
|
|
* @bug 4904067 5023830 7129185 8072015 8292955
|
|
* @summary Unit test for Collections.checkedMap
|
|
* @author Josh Bloch
|
|
* @run testng CheckedMapBash
|
|
* @key randomness
|
|
*/
|
|
|
|
import org.testng.Assert;
|
|
import org.testng.annotations.DataProvider;
|
|
import org.testng.annotations.Test;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.Iterator;
|
|
import java.util.Map;
|
|
import java.util.Random;
|
|
import java.util.Set;
|
|
import java.util.TreeMap;
|
|
import java.util.function.Supplier;
|
|
|
|
import static org.testng.Assert.fail;
|
|
|
|
public class CheckedMapBash {
|
|
static final Random rnd = new Random();
|
|
static final Object nil = new Integer(0);
|
|
static final int numItr = 100;
|
|
static final int mapSize = 100;
|
|
|
|
@Test(dataProvider = "Bash.Supplier<Map<Integer,Integer>>")
|
|
public static void testCheckedMap(String description, Supplier<Map<Integer,Integer>> supplier) {
|
|
Map m = supplier.get();
|
|
Object head = nil;
|
|
|
|
for (int j=0; j<mapSize; j++) {
|
|
Object newHead;
|
|
do {
|
|
newHead = new Integer(rnd.nextInt());
|
|
} while (m.containsKey(newHead) || newHead.equals(nil));
|
|
m.put(newHead, head);
|
|
head = newHead;
|
|
}
|
|
if (m.size() != mapSize)
|
|
fail("Size not as expected.");
|
|
|
|
{
|
|
HashMap hm = new HashMap(m);
|
|
if (! (hm.hashCode() == m.hashCode() &&
|
|
hm.entrySet().hashCode() == m.entrySet().hashCode() &&
|
|
hm.keySet().hashCode() == m.keySet().hashCode()))
|
|
fail("Incorrect hashCode computation.");
|
|
|
|
if (! (hm.equals(m) &&
|
|
hm.entrySet().equals(m.entrySet()) &&
|
|
hm.keySet().equals(m.keySet()) &&
|
|
m.equals(hm) &&
|
|
m.entrySet().equals(hm.entrySet()) &&
|
|
m.keySet().equals(hm.keySet())))
|
|
fail("Incorrect equals computation.");
|
|
}
|
|
|
|
Map m2 = supplier.get(); m2.putAll(m);
|
|
m2.values().removeAll(m.keySet());
|
|
if (m2.size()!= 1 || !m2.containsValue(nil))
|
|
fail("Collection views test failed.");
|
|
|
|
int j=0;
|
|
while (head != nil) {
|
|
if (!m.containsKey(head))
|
|
fail("Linked list doesn't contain a link.");
|
|
Object newHead = m.get(head);
|
|
if (newHead == null)
|
|
fail("Could not retrieve a link.");
|
|
m.remove(head);
|
|
head = newHead;
|
|
j++;
|
|
}
|
|
if (!m.isEmpty())
|
|
fail("Map nonempty after removing all links.");
|
|
if (j != mapSize)
|
|
fail("Linked list size not as expected.");
|
|
}
|
|
|
|
@Test(dataProvider = "Supplier<Map<Integer,Integer>>")
|
|
public static void testCheckedMap2(String description, Supplier<Map<Integer,Integer>> supplier) {
|
|
Map m = supplier.get();
|
|
for (int i=0; i<mapSize; i++)
|
|
if (m.put(new Integer(i), new Integer(2*i)) != null)
|
|
fail("put returns a non-null value erroneously.");
|
|
for (int i=0; i<2*mapSize; i++)
|
|
if (m.containsValue(new Integer(i)) != (i%2==0))
|
|
fail("contains value "+i);
|
|
if (m.put(nil, nil) == null)
|
|
fail("put returns a null value erroneously.");
|
|
Map m2 = supplier.get(); m2.putAll(m);
|
|
if (!m.equals(m2))
|
|
fail("Clone not equal to original. (1)");
|
|
if (!m2.equals(m))
|
|
fail("Clone not equal to original. (2)");
|
|
Set s = m.entrySet(), s2 = m2.entrySet();
|
|
if (!s.equals(s2))
|
|
fail("Clone not equal to original. (3)");
|
|
if (!s2.equals(s))
|
|
fail("Clone not equal to original. (4)");
|
|
if (!s.containsAll(s2))
|
|
fail("Original doesn't contain clone!");
|
|
if (!s2.containsAll(s))
|
|
fail("Clone doesn't contain original!");
|
|
|
|
s2.removeAll(s);
|
|
if (!m2.isEmpty())
|
|
fail("entrySet().removeAll failed.");
|
|
|
|
m2.putAll(m);
|
|
m2.clear();
|
|
if (!m2.isEmpty())
|
|
fail("clear failed.");
|
|
|
|
Iterator i = m.entrySet().iterator();
|
|
while (i.hasNext()) {
|
|
i.next();
|
|
i.remove();
|
|
}
|
|
if (!m.isEmpty())
|
|
fail("Iterator.remove() failed");
|
|
}
|
|
|
|
@DataProvider(name = "Bash.Supplier<Map<Integer,Integer>>", parallel = true)
|
|
public static Iterator<Object[]> bashNavigableMapProvider() {
|
|
ArrayList<Object[]> iters = new ArrayList<>(makeCheckedMaps());
|
|
iters.ensureCapacity(numItr * iters.size());
|
|
for (int each=1; each < numItr; each++) {
|
|
iters.addAll(makeCheckedMaps());
|
|
}
|
|
return iters.iterator();
|
|
}
|
|
|
|
@DataProvider(name = "Supplier<Map<Integer,Integer>>", parallel = true)
|
|
public static Iterator<Object[]> navigableMapProvider() {
|
|
return makeCheckedMaps().iterator();
|
|
}
|
|
|
|
public static Collection<Object[]> makeCheckedMaps() {
|
|
Object[][] params = {
|
|
{"Collections.checkedMap(HashMap)",
|
|
(Supplier) () -> Collections.checkedMap(new HashMap(), Integer.class, Integer.class)},
|
|
{"Collections.checkedMap(TreeMap(reverseOrder))",
|
|
(Supplier) () -> Collections.checkedMap(new TreeMap(Collections.reverseOrder()), Integer.class, Integer.class)},
|
|
{"Collections.checkedMap(TreeMap.descendingMap())",
|
|
(Supplier) () -> Collections.checkedMap(new TreeMap().descendingMap(), Integer.class, Integer.class)},
|
|
{"Collections.checkedNavigableMap(TreeMap)",
|
|
(Supplier) () -> Collections.checkedNavigableMap(new TreeMap(), Integer.class, Integer.class)},
|
|
{"Collections.checkedNavigableMap(TreeMap(reverseOrder))",
|
|
(Supplier) () -> Collections.checkedNavigableMap(new TreeMap(Collections.reverseOrder()), Integer.class, Integer.class)},
|
|
{"Collections.checkedNavigableMap(TreeMap.descendingMap())",
|
|
(Supplier) () -> Collections.checkedNavigableMap(new TreeMap().descendingMap(), Integer.class, Integer.class)},
|
|
};
|
|
return Arrays.asList(params);
|
|
}
|
|
|
|
@Test(groups = "type_check")
|
|
public static void testCheckedMapMerge() {
|
|
Map m = Collections.checkedMap(new HashMap<>(), Integer.class, Integer.class);
|
|
Assert.assertThrows(ClassCastException.class, () -> m.merge("key", "value", (v1, v2) -> null));
|
|
Assert.assertThrows(ClassCastException.class, () -> m.merge("key", 3, (v1, v2) -> v2));
|
|
}
|
|
}
|