-
-
Notifications
You must be signed in to change notification settings - Fork 801
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
1 parent
18b4634
commit 3740a93
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/test/java/com/fasterxml/jackson/failing/JsonPointerOOME736Test.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,27 @@ | ||
package com.fasterxml.jackson.failing; | ||
|
||
import com.fasterxml.jackson.core.*; | ||
import com.fasterxml.jackson.core.exc.StreamReadException; | ||
|
||
public class JsonPointerOOME736Test extends BaseTest | ||
{ | ||
// such as https://github.com/nst/JSONTestSuite/blob/master/test_parsing/n_structure_100000_opening_arrays.json | ||
public void testDeepJsonPointer() throws Exception { | ||
int MAX_DEPTH = 100000; | ||
String INPUT = new String(new char[MAX_DEPTH]).replace("\0", "["); | ||
JsonParser parser = createParser(MODE_READER, INPUT); | ||
try { | ||
while (true) { | ||
parser.nextToken(); | ||
} | ||
} catch (StreamReadException e) { | ||
verifyException(e, "Unexpected end"); | ||
JsonStreamContext parsingContext = parser.getParsingContext(); | ||
JsonPointer jsonPointer = parsingContext.pathAsPointer(); // OOME | ||
String pointer = jsonPointer.toString(); | ||
String expected = new String(new char[MAX_DEPTH - 1]).replace("\0", "/0"); | ||
assertEquals(expected, pointer); | ||
} | ||
parser.close(); | ||
} | ||
} |