com.google.common.collect.testing.google.MultimapRemoveEntryTester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guava-testlib-jdk5 Show documentation
Show all versions of guava-testlib-jdk5 Show documentation
Guava testlib is a set of java classes used for more convenient
unit testing - particularly to assist the tests for Guava itself.
/*
* Copyright (C) 2012 The Guava Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.common.collect.testing.google;
import static com.google.common.collect.testing.features.CollectionSize.ZERO;
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
import static org.truth0.Truth.ASSERT;
import com.google.common.annotations.GwtCompatible;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Multimap;
import com.google.common.collect.testing.Helpers;
import com.google.common.collect.testing.features.CollectionSize;
import com.google.common.collect.testing.features.MapFeature;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map.Entry;
/**
* Tests for {@link Multimap#remove(Object, Object)}.
*
* @author Louis Wasserman
*/
@GwtCompatible
public class MultimapRemoveEntryTester extends AbstractMultimapTester> {
@MapFeature.Require(SUPPORTS_REMOVE)
public void testRemoveAbsent() {
assertFalse(multimap().remove(sampleKeys().e0, sampleValues().e1));
expectUnchanged();
}
@CollectionSize.Require(absent = ZERO)
@MapFeature.Require(SUPPORTS_REMOVE)
public void testRemovePresent() {
assertTrue(multimap().remove(sampleKeys().e0, sampleValues().e0));
expectMissing(samples.e0);
assertGet(sampleKeys().e0, ImmutableList.of());
}
@CollectionSize.Require(absent = ZERO)
@MapFeature.Require({ SUPPORTS_REMOVE, ALLOWS_NULL_KEYS })
public void testRemoveNullKeyPresent() {
initMultimapWithNullKey();
assertTrue(multimap().remove(null, getValueForNullKey()));
expectMissing(Helpers.mapEntry((K) null, getValueForNullKey()));
assertGet(getKeyForNullValue(), ImmutableList.of());
}
@CollectionSize.Require(absent = ZERO)
@MapFeature.Require({ SUPPORTS_REMOVE, ALLOWS_NULL_VALUES })
public void testRemoveNullValuePresent() {
initMultimapWithNullValue();
assertTrue(multimap().remove(getKeyForNullValue(), null));
expectMissing(Helpers.mapEntry(getKeyForNullValue(), (V) null));
assertGet(getKeyForNullValue(), ImmutableList.of());
}
@MapFeature.Require({ SUPPORTS_REMOVE, ALLOWS_NULL_QUERIES})
public void testRemoveNullKeyAbsent() {
assertFalse(multimap().remove(null, sampleValues().e0));
expectUnchanged();
}
@MapFeature.Require({ SUPPORTS_REMOVE, ALLOWS_NULL_QUERIES})
public void testRemoveNullValueAbsent() {
assertFalse(multimap().remove(sampleKeys().e0, null));
expectUnchanged();
}
@MapFeature.Require(value = SUPPORTS_REMOVE, absent = ALLOWS_NULL_QUERIES)
public void testRemoveNullValueForbidden() {
try {
multimap().remove(sampleKeys().e0, null);
fail("Expected NullPointerException");
} catch (NullPointerException expected) {
// success
}
expectUnchanged();
}
@MapFeature.Require(value = SUPPORTS_REMOVE, absent = ALLOWS_NULL_QUERIES)
public void testRemoveNullKeyForbidden() {
try {
multimap().remove(null, sampleValues().e0);
fail("Expected NullPointerException");
} catch (NullPointerException expected) {
// success
}
expectUnchanged();
}
@MapFeature.Require(SUPPORTS_REMOVE)
@CollectionSize.Require(absent = ZERO)
public void testRemovePropagatesToGet() {
List> entries = Helpers.copyToList(multimap().entries());
for (Entry entry : entries) {
resetContainer();
K key = entry.getKey();
V value = entry.getValue();
Collection collection = multimap().get(key);
assertNotNull(collection);
Collection expectedCollection = Helpers.copyToList(collection);
multimap().remove(key, value);
expectedCollection.remove(value);
ASSERT.>that(collection).has().allFrom(expectedCollection);
assertEquals(!expectedCollection.isEmpty(), multimap().containsKey(key));
}
}
@MapFeature.Require(SUPPORTS_REMOVE)
@CollectionSize.Require(absent = ZERO)
public void testRemovePropagatesToAsMap() {
List> entries = Helpers.copyToList(multimap().entries());
for (Entry entry : entries) {
resetContainer();
K key = entry.getKey();
V value = entry.getValue();
Collection collection = multimap().asMap().get(key);
assertNotNull(collection);
Collection expectedCollection = Helpers.copyToList(collection);
multimap().remove(key, value);
expectedCollection.remove(value);
ASSERT.>that(collection).has().allFrom(expectedCollection);
assertEquals(!expectedCollection.isEmpty(), multimap().containsKey(key));
}
}
@MapFeature.Require(SUPPORTS_REMOVE)
@CollectionSize.Require(absent = ZERO)
public void testRemovePropagatesToAsMapEntrySet() {
List> entries = Helpers.copyToList(multimap().entries());
for (Entry entry : entries) {
resetContainer();
K key = entry.getKey();
V value = entry.getValue();
Iterator>> asMapItr = multimap().asMap().entrySet().iterator();
Collection collection = null;
while (asMapItr.hasNext()) {
Entry> asMapEntry = asMapItr.next();
if (key.equals(asMapEntry.getKey())) {
collection = asMapEntry.getValue();
break;
}
}
assertNotNull(collection);
Collection expectedCollection = Helpers.copyToList(collection);
multimap().remove(key, value);
expectedCollection.remove(value);
ASSERT.>that(collection).has().allFrom(expectedCollection);
assertEquals(!expectedCollection.isEmpty(), multimap().containsKey(key));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy