Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
Back port #13 test; 2.5 does not have this bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Aug 19, 2015
1 parent d9c97bc commit 8166462
Showing 1 changed file with 49 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
package com.fasterxml.jackson.dataformat.cbor;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.Test;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.SequenceInputStream;

public class ParserInputStreamTest extends CBORTestBase {

@Test
public void testInpuStream() throws Exception {
CBORFactory f = new CBORFactory();
ObjectMapper cborMapper = new ObjectMapper(new CBORFactory());
byte[] buffer = generateHugeCBOR(f);

// split the buffer in two smaller buffer
int len = 160;
byte[] buf1 = new byte[len];
byte[] buf2 = new byte[buffer.length - len];
System.arraycopy(buffer, 0, buf1, 0, len);
System.arraycopy(buffer, len, buf2, 0, buffer.length - len);

// aggregate the two buffers via a SequenceInputStream
ByteArrayInputStream in1 = new ByteArrayInputStream(buf1);
ByteArrayInputStream in2 = new ByteArrayInputStream(buf2);
SequenceInputStream inputStream = new SequenceInputStream(in1, in2);

JsonNode jsonNode = cborMapper.readTree(inputStream);
assertNotNull(jsonNode);
}

private byte[] generateHugeCBOR(CBORFactory f) throws IOException {
String hugeJson = "{";
for (char c='a'; c <= 'z'; c++) {
for (char cc='a'; cc <= 'z'; cc++) {
hugeJson += "\"" + c + cc + "\":0,";
}
for (int i = 0; i < 50; i++) {
hugeJson += "\"" + c + i + "\":" + i + ",";
}
}
hugeJson += "\"name\":123";
hugeJson += "}";
return cborDoc(f, hugeJson);
}
}

0 comments on commit 8166462

Please sign in to comment.