forked from JodaOrg/joda-time
-
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.
Fix StackOverflowError on resolving recursive types by collapsing cha…
…ins of type bounds (#1075) * Fixes StackOverflowError on resolving recursive types. See Issue JodaOrg#440, Issue JodaOrg#603, tests. * fix 'codacy' coding style warnings * added copyright header
- Loading branch information
Showing
2 changed files
with
103 additions
and
2 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
89 changes: 89 additions & 0 deletions
89
gson/src/test/java/com/google/gson/internal/bind/RecursiveTypesResolveTest.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,89 @@ | ||
/* | ||
* Copyright (C) 2017 Gson 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.gson.internal.bind; | ||
|
||
import com.google.gson.Gson; | ||
import com.google.gson.TypeAdapter; | ||
import com.google.gson.internal.$Gson$Types; | ||
import junit.framework.TestCase; | ||
|
||
import java.io.PrintStream; | ||
import java.lang.ref.WeakReference; | ||
|
||
/** | ||
* Test fixes for infinite recursion on {@link $Gson$Types#resolve(java.lang.reflect.Type, Class, | ||
* java.lang.reflect.Type)}, described at <a href="https://github.com/google/gson/issues/440">Issue #440</a> | ||
* and similar issues. | ||
* <p> | ||
* These tests originally caused {@link StackOverflowError} because of infinite recursion on attempts to | ||
* resolve generics on types, with an intermediate types like 'Foo2<? extends ? super ? extends ... ? extends A>' | ||
*/ | ||
public class RecursiveTypesResolveTest extends TestCase { | ||
|
||
private static class Foo1<A> { | ||
public Foo2<? extends A> foo2; | ||
} | ||
|
||
private static class Foo2<B> { | ||
public Foo1<? super B> foo1; | ||
} | ||
|
||
/** | ||
* Test simplest case of recursion. | ||
*/ | ||
public void testRecursiveResolveSimple() { | ||
TypeAdapter<Foo1> adapter = new Gson().getAdapter(Foo1.class); | ||
assertNotNull(adapter); | ||
} | ||
|
||
// | ||
// Real-world samples, found in Issues #603 and #440. | ||
// | ||
public void testIssue603PrintStream() { | ||
TypeAdapter<PrintStream> adapter = new Gson().getAdapter(PrintStream.class); | ||
assertNotNull(adapter); | ||
} | ||
|
||
public void testIssue440WeakReference() throws Exception { | ||
TypeAdapter<WeakReference> adapter = new Gson().getAdapter(WeakReference.class); | ||
assertNotNull(adapter); | ||
} | ||
|
||
// | ||
// Tests belows check the behaviour of the methods changed for the fix | ||
// | ||
|
||
public void testDoubleSupertype() { | ||
assertEquals($Gson$Types.supertypeOf(Number.class), | ||
$Gson$Types.supertypeOf($Gson$Types.supertypeOf(Number.class))); | ||
} | ||
|
||
public void testDoubleSubtype() { | ||
assertEquals($Gson$Types.subtypeOf(Number.class), | ||
$Gson$Types.subtypeOf($Gson$Types.subtypeOf(Number.class))); | ||
} | ||
|
||
public void testSuperSubtype() { | ||
assertEquals($Gson$Types.subtypeOf(Object.class), | ||
$Gson$Types.supertypeOf($Gson$Types.subtypeOf(Number.class))); | ||
} | ||
|
||
public void testSubSupertype() { | ||
assertEquals($Gson$Types.subtypeOf(Object.class), | ||
$Gson$Types.subtypeOf($Gson$Types.supertypeOf(Number.class))); | ||
} | ||
} |