View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.collections4.set;
18  
19  import static org.junit.jupiter.api.Assertions.assertNull;
20  import static org.junit.jupiter.api.Assertions.assertSame;
21  import static org.junit.jupiter.api.Assertions.assertThrows;
22  
23  import java.util.ArrayList;
24  import java.util.Arrays;
25  import java.util.Comparator;
26  import java.util.NavigableSet;
27  import java.util.Set;
28  import java.util.TreeSet;
29  
30  import org.junit.jupiter.api.Test;
31  
32  /**
33   * Extension of {@link AbstractNavigableSetTest} for exercising the
34   * {@link UnmodifiableNavigableSet} implementation.
35   */
36  public class UnmodifiableNavigableSetTest<E> extends AbstractNavigableSetTest<E> {
37      protected UnmodifiableNavigableSet<E> set;
38      protected ArrayList<E> array;
39  
40      @Override
41      public String getCompatibilityVersion() {
42          return "4.1";
43      }
44  
45      @Override
46      public boolean isAddSupported() {
47          return false;
48      }
49  
50      @Override
51      public boolean isRemoveSupported() {
52          return false;
53      }
54  
55      @Override
56      public UnmodifiableNavigableSet<E> makeFullCollection() {
57          final TreeSet<E> set = new TreeSet<>(Arrays.asList(getFullElements()));
58          return (UnmodifiableNavigableSet<E>) UnmodifiableNavigableSet.unmodifiableNavigableSet(set);
59      }
60  
61      @Override
62      public NavigableSet<E> makeObject() {
63          return UnmodifiableNavigableSet.unmodifiableNavigableSet(new TreeSet<>());
64      }
65  
66      @SuppressWarnings("unchecked")
67      protected void setupSet() {
68          set = makeFullCollection();
69          array = new ArrayList<>();
70          array.add((E) Integer.valueOf(1));
71      }
72  
73      @Test
74      public void testComparator() {
75          setupSet();
76          final Comparator<? super E> c = set.comparator();
77          assertNull(c, "natural order, so comparator should be null");
78      }
79  
80      @Test
81      public void testDecorateFactory() {
82          final NavigableSet<E> set = makeFullCollection();
83          assertSame(set, UnmodifiableNavigableSet.unmodifiableNavigableSet(set));
84          assertThrows(NullPointerException.class, () -> UnmodifiableNavigableSet.unmodifiableNavigableSet(null));
85      }
86  
87      /**
88       * Verify that base set and subsets are not modifiable
89       */
90      @Test
91      @SuppressWarnings("unchecked")
92      public void testUnmodifiable() {
93          setupSet();
94          verifyUnmodifiable(set);
95          verifyUnmodifiable(set.descendingSet());
96          verifyUnmodifiable(set.headSet((E) Integer.valueOf(1)));
97          verifyUnmodifiable(set.headSet((E) Integer.valueOf(1), true));
98          verifyUnmodifiable(set.tailSet((E) Integer.valueOf(1)));
99          verifyUnmodifiable(set.tailSet((E) Integer.valueOf(1), false));
100         verifyUnmodifiable(set.subSet((E) Integer.valueOf(1), (E) Integer.valueOf(3)));
101         verifyUnmodifiable(set.subSet((E) Integer.valueOf(1), false, (E) Integer.valueOf(3), false));
102         verifyUnmodifiable(set.subSet((E) Integer.valueOf(1), true, (E) Integer.valueOf(3), true));
103     }
104 
105     /**
106      * Verifies that a set is not modifiable
107      */
108     @SuppressWarnings("unchecked")
109     public void verifyUnmodifiable(final Set<E> set) {
110         assertThrows(UnsupportedOperationException.class, () -> set.add((E) "value"));
111         assertThrows(UnsupportedOperationException.class, () -> set.addAll(new TreeSet<>()));
112         assertThrows(UnsupportedOperationException.class, () -> set.clear());
113         assertThrows(UnsupportedOperationException.class, () -> set.iterator().remove());
114         assertThrows(UnsupportedOperationException.class, () -> set.remove("x"));
115         assertThrows(UnsupportedOperationException.class, () -> set.removeAll(array));
116         assertThrows(UnsupportedOperationException.class, () -> set.removeIf(element -> true));
117         assertThrows(UnsupportedOperationException.class, () -> set.retainAll(array));
118 
119         if (set instanceof NavigableSet) {
120             final NavigableSet<E> navigableSet = (NavigableSet<E>) set;
121             assertThrows(UnsupportedOperationException.class, () -> navigableSet.pollFirst());
122             assertThrows(UnsupportedOperationException.class, () -> navigableSet.pollLast());
123         }
124     }
125 
126 //    public void testCreate() throws Exception {
127 //        resetEmpty();
128 //        writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableNavigableSet.emptyCollection.version4.1.obj");
129 //        resetFull();
130 //        writeExternalFormToDisk((java.io.Serializable) getCollection(), "src/test/resources/data/test/UnmodifiableNavigableSet.fullCollection.version4.1.obj");
131 //    }
132 
133 }