forked from gwtproject/gwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
210 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
user/test/com/google/gwt/emultest/java10/util/ListTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* 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.gwt.emultest.java10.util; | ||
|
||
import static com.google.gwt.emultest.java9.util.ListTest.assertIsImmutableListOf; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
/** | ||
* Tests for java.util.List Java 10 API emulation. | ||
*/ | ||
public class ListTest extends EmulTestBase { | ||
public void testCopyOf() { | ||
assertIsImmutableListOf(List.copyOf(List.of("a", "b")), "a", "b"); | ||
assertIsImmutableListOf(List.copyOf(Arrays.asList("a", "b")), "a", "b"); | ||
|
||
ArrayList<String> arrayList = new ArrayList<>(); | ||
arrayList.add("a"); | ||
arrayList.add("b"); | ||
List<String> copy = List.copyOf(arrayList); | ||
assertIsImmutableListOf(copy, "a", "b"); | ||
|
||
// verify that mutating the original doesn't affect the copy | ||
arrayList.add("c"); | ||
assertEquals(2, copy.size()); | ||
assertFalse(copy.contains("c")); | ||
|
||
arrayList.remove(0); | ||
assertEquals(2, copy.size()); | ||
assertTrue(copy.contains("a")); | ||
|
||
// ensure that null values in the collection result in a NPE | ||
try { | ||
List.copyOf(Arrays.asList("a", null)); | ||
fail("Expected NullPointerException passing copy a collection with a null value"); | ||
} catch (NullPointerException ignore) { | ||
// expected | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
user/test/com/google/gwt/emultest/java10/util/MapTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* 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.gwt.emultest.java10.util; | ||
|
||
import static com.google.gwt.emultest.java9.util.MapTest.assertIsImmutableMapOf; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* Tests for java.util.Map Java 10 API emulation. | ||
*/ | ||
public class MapTest extends EmulTestBase { | ||
public void testCopyOf() { | ||
assertIsImmutableMapOf(Map.copyOf(Map.of("a", 1)), "a"); | ||
|
||
HashMap<String, Integer> hashMap = new HashMap<>(); | ||
hashMap.put("a", 1); | ||
Map<String, Integer> copy = Map.copyOf(hashMap); | ||
assertIsImmutableMapOf(copy, "a"); | ||
|
||
// verify that mutating the original has no effect on the copy | ||
hashMap.put("b", 2); | ||
assertFalse(copy.containsKey("b")); | ||
assertEquals(1, copy.size()); | ||
|
||
hashMap.put("a", 5); | ||
assertEquals(1, (int) copy.get("a")); | ||
|
||
// ensure that null values result in a NPE | ||
HashMap<String, Integer> mapWithNullKey = new HashMap<>(); | ||
mapWithNullKey.put(null, 1); | ||
try { | ||
Map.copyOf(mapWithNullKey); | ||
fail("expected NullPointerException from copyOf with a null key"); | ||
} catch (NullPointerException ignored) { | ||
// expected | ||
} | ||
|
||
HashMap<String, Integer> mapWithNullValue = new HashMap<>(); | ||
mapWithNullValue.put("key", null); | ||
try { | ||
Map.copyOf(mapWithNullValue); | ||
fail("expected NullPointerException from copyOf with a null value"); | ||
} catch (NullPointerException ignored) { | ||
// expected | ||
} | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
user/test/com/google/gwt/emultest/java10/util/SetTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright 2023 Google Inc. | ||
* | ||
* 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.gwt.emultest.java10.util; | ||
|
||
import static com.google.gwt.emultest.java9.util.SetTest.assertIsImmutableSetOf; | ||
|
||
import com.google.gwt.emultest.java.util.EmulTestBase; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
/** | ||
* Tests for java.util.Set Java 10 API emulation. | ||
*/ | ||
public class SetTest extends EmulTestBase { | ||
public void testCopyOf() { | ||
assertIsImmutableSetOf(Set.copyOf(Set.of("a", "b")), "a", "b"); | ||
assertIsImmutableSetOf(Set.copyOf(Arrays.asList("a", "b")), "a", "b"); | ||
|
||
HashSet<String> hashSet = new HashSet<>(); | ||
hashSet.add("a"); | ||
hashSet.add("b"); | ||
Set<String> copy = Set.copyOf(hashSet); | ||
assertIsImmutableSetOf(copy, "a", "b"); | ||
|
||
// verify that mutating the original has no effect on the copy | ||
hashSet.add("c"); | ||
assertEquals(2, copy.size()); | ||
assertFalse(copy.contains("c")); | ||
|
||
hashSet.remove("a"); | ||
assertEquals(2, copy.size()); | ||
assertTrue(copy.contains("a")); | ||
|
||
// ensure that null value result in a NPE | ||
try { | ||
Set.copyOf(Arrays.asList("a", null)); | ||
fail("Expected NullPointerException from null item in collection passed to copyOf"); | ||
} catch (NullPointerException ignored) { | ||
// expected | ||
} | ||
|
||
// ensure that duplicate values result in smaller output | ||
assertIsImmutableSetOf(Set.copyOf(Arrays.asList("a", "a")), "a"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters