-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix add message tip when OutOfMemory occurred for issue #2323
- Loading branch information
1 parent
8b03d70
commit 988e6cd
Showing
4 changed files
with
54 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
51 changes: 51 additions & 0 deletions
51
core/src/test/java/com/alibaba/fastjson2/issues_2300/Issue2323.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,51 @@ | ||
package com.alibaba.fastjson2.issues_2300; | ||
|
||
import com.alibaba.fastjson.JSONObject; | ||
import com.alibaba.fastjson2.JSON; | ||
import com.alibaba.fastjson2.JSONWriter; | ||
import com.google.common.collect.Lists; | ||
import com.google.common.collect.Maps; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class Issue2323 { | ||
String errMsg = "try enabling LargeObject feature instead"; | ||
|
||
@Test | ||
public void test() throws Exception { | ||
int size = 50; | ||
|
||
List<JSONObject> dataList2 = Lists.newArrayList(); | ||
for (int rowIndex = 1; rowIndex <= 50000; rowIndex++) { | ||
JSONObject data = new JSONObject(); | ||
for (int i = 0; i < size; i++) { | ||
data.put("test" + i, "testdata"); | ||
} | ||
dataList2.add(data); | ||
} | ||
|
||
Map<String, String> params = Maps.newHashMap(); | ||
params.put("dataListStr", JSON.toJSONString(dataList2)); | ||
|
||
try { | ||
JSONWriter.ofUTF16().write(params); | ||
} catch (OutOfMemoryError error) { | ||
Assertions.assertEquals(errMsg, error.getMessage()); | ||
} | ||
|
||
try { | ||
JSONWriter.ofUTF8().write(params); | ||
} catch (OutOfMemoryError error) { | ||
Assertions.assertEquals(errMsg, error.getMessage()); | ||
} | ||
|
||
try { | ||
JSONWriter.ofJSONB().write(params); | ||
} catch (OutOfMemoryError error) { | ||
Assertions.assertEquals(errMsg, error.getMessage()); | ||
} | ||
} | ||
} |