guava

Форк
0
/
ConcurrentMapReplaceTester.java 
109 строк · 3.8 Кб
1
/*
2
 * Copyright (C) 2015 The Guava Authors
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 * http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16

17
package com.google.common.collect.testing.testers;
18

19
import static com.google.common.collect.testing.features.CollectionSize.ZERO;
20
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEY_QUERIES;
21
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
22
import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUE_QUERIES;
23
import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT;
24

25
import com.google.common.annotations.GwtCompatible;
26
import com.google.common.collect.testing.AbstractMapTester;
27
import com.google.common.collect.testing.features.CollectionSize;
28
import com.google.common.collect.testing.features.MapFeature;
29
import java.util.concurrent.ConcurrentMap;
30
import org.junit.Ignore;
31

32
/**
33
 * A generic JUnit test which tests {@code replace(K, V)} operations on a concurrent map. Can't be
34
 * invoked directly; please see {@link
35
 * com.google.common.collect.testing.ConcurrentMapTestSuiteBuilder}.
36
 *
37
 * @author Louis Wasserman
38
 */
39
@GwtCompatible
40
@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
41
@ElementTypesAreNonnullByDefault
42
public class ConcurrentMapReplaceTester<K, V> extends AbstractMapTester<K, V> {
43
  @Override
44
  protected ConcurrentMap<K, V> getMap() {
45
    return (ConcurrentMap<K, V>) super.getMap();
46
  }
47

48
  @MapFeature.Require(SUPPORTS_PUT)
49
  @CollectionSize.Require(absent = ZERO)
50
  public void testReplace_supportedPresent() {
51
    assertEquals(v0(), getMap().replace(k0(), v3()));
52
    expectReplacement(entry(k0(), v3()));
53
  }
54

55
  @MapFeature.Require(SUPPORTS_PUT)
56
  @CollectionSize.Require(absent = ZERO)
57
  public void testReplace_supportedPresentNoChange() {
58
    assertEquals(v0(), getMap().replace(k0(), v0()));
59
    expectUnchanged();
60
  }
61

62
  @MapFeature.Require(SUPPORTS_PUT)
63
  public void testReplace_supportedAbsent() {
64
    assertNull(getMap().replace(k3(), v3()));
65
    expectUnchanged();
66
  }
67

68
  @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
69
  @CollectionSize.Require(absent = ZERO)
70
  public void testReplace_presentNullValueUnsupported() {
71
    try {
72
      getMap().replace(k0(), null);
73
      fail("Expected NullPointerException");
74
    } catch (NullPointerException expected) {
75
    }
76
    expectUnchanged();
77
  }
78

79
  @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUE_QUERIES)
80
  public void testReplace_absentNullValueUnsupported() {
81
    try {
82
      getMap().replace(k3(), null);
83
    } catch (NullPointerException tolerated) {
84
      // permitted not to throw because it would be a no-op
85
    }
86
    expectUnchanged();
87
  }
88

89
  @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_KEY_QUERIES)
90
  public void testReplace_absentNullKeyUnsupported() {
91
    try {
92
      getMap().replace(null, v3());
93
    } catch (NullPointerException tolerated) {
94
      // permitted not to throw because it would be a no-op
95
    }
96
    expectUnchanged();
97
  }
98

99
  @MapFeature.Require(absent = SUPPORTS_PUT)
100
  @CollectionSize.Require(absent = ZERO)
101
  public void testReplace_unsupportedPresent() {
102
    try {
103
      getMap().replace(k0(), v3());
104
      fail("Expected UnsupportedOperationException");
105
    } catch (UnsupportedOperationException expected) {
106
    }
107
    expectUnchanged();
108
  }
109
}
110

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.