Skip to content

Commit

Permalink
Merge branch '2.18'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 21, 2024
2 parents 8dcc39f + c86b438 commit 03327f8
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package tools.jackson.dataformat.csv.failing;

import java.nio.charset.StandardCharsets;

import tools.jackson.databind.*;

import tools.jackson.dataformat.csv.*;

// [dataformats-text#497]: 3-byte UTF-8 character at end of content
public class UnicodeRead497Test extends ModuleTestBase
{
private final CsvMapper MAPPER = mapperForCsv();

// [dataformats-text#497]
public void testUnicodeAtEnd() throws Exception
{
StringBuilder sb = new StringBuilder(4001);
for (int i = 0; i < 4000; ++i) {
sb.append('a');
}
sb.append('\u5496');
String doc = sb.toString();
JsonNode o = MAPPER.reader() //.with(schema)
.readTree(doc.getBytes(StandardCharsets.UTF_8));
assertNotNull(o);
}
}

0 comments on commit 03327f8

Please sign in to comment.