Integrate @timboudreau's SnappyIntegrationTest improvements

This commit is contained in:
Trustin Lee 2013-02-21 18:38:58 -08:00
parent 273948055a
commit 17641d52fb

View File

@ -18,6 +18,7 @@ package io.netty.handler.codec.compression;
import io.netty.buffer.ByteBuf;
import io.netty.channel.embedded.EmbeddedByteChannel;
import io.netty.util.CharsetUtil;
import org.junit.Ignore;
import org.junit.Test;
import java.util.Random;
@ -27,6 +28,16 @@ import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
public class SnappyIntegrationTest {
/**
* The number of random regression tests run by testRandom() runs. Whenever testRandom() finds the case that
* the snappy codec can't encode/decode, it will print the generated source code of the offending test case.
* You can always reproduce the problem using it rather than relying on testRandom().
*
* The default is 1, but you can increase it to increase the chance of finding any unusual cases.
**/
private static final int RANDOM_RUNS = 1;
@Test
public void testText() throws Exception {
testIdentity(copiedBuffer(
@ -36,7 +47,7 @@ public class SnappyIntegrationTest {
}
@Test
public void test1002() throws Exception {
public void test1002() throws Throwable {
// Data from https://github.com/netty/netty/issues/1002
testIdentity(wrappedBuffer(new byte[] {
11, 0, 0, 0, 0, 0, 16, 65, 96, 119, -22, 79, -43, 76, -75, -93,
@ -60,24 +71,217 @@ public class SnappyIntegrationTest {
}));
}
// These tests were found using testRandom() with large RANDOM_RUNS.
// FIXME: Fix and unignore these failing test.
// Fixing one test might fix other tests, too. In such a case, please remove the redundant tests
// to shorten the test duration.
@Test
public void testRandom() throws Exception {
@Ignore
public void test7088170877360183401() {
testWithSeed(7088170877360183401L);
}
@Test
@Ignore
public void test7354134887958970957() {
testWithSeed(7354134887958970957L);
}
@Test
@Ignore
public void test265123194979327191() {
testWithSeed(265123194979327191L);
}
@Test
@Ignore
public void test4730809278569396315() {
testWithSeed(4730809278569396315L);
}
@Test
@Ignore
public void test2048930638087468368() {
testWithSeed(2048930638087468368L);
}
@Test
@Ignore
public void test7896596325568044047() {
testWithSeed(7896596325568044047L);
}
@Test
@Ignore
public void test3397027453071844468() {
testWithSeed(3397027453071844468L);
}
@Test
@Ignore
public void test4157969824584948251() {
testWithSeed(4157969824584948251L);
}
@Test
@Ignore
public void test4753934068873093038(){
testWithSeed(4753934068873093038L);
}
@Test
@Ignore
public void test5925569922155870475(){
testWithSeed(5925569922155870475L);
}
@Test
@Ignore
public void test7269843964854027868(){
testWithSeed(7269843964854027868L);
}
@Test
@Ignore
public void test3588069159611484749(){
testWithSeed(3588069159611484749L);
}
@Test
@Ignore
public void test6779187833722801305(){
testWithSeed(6779187833722801305L);
}
@Test
@Ignore
public void test4686313400062453552(){
testWithSeed(4686313400062453552L);
}
@Test
@Ignore
public void test2991001407882611338(){
testWithSeed(2991001407882611338L);
}
@Test
@Ignore
public void test4943660132286394340(){
testWithSeed(4943660132286394340L);
}
@Test
@Ignore
public void test1922387899411087229(){
testWithSeed(1922387899411087229L);
}
@Test
@Ignore
public void test1224584698616862175(){
testWithSeed(1224584698616862175L);
}
@Test
@Ignore
public void test985619956074250243(){
testWithSeed(985619956074250243L);
}
@Test
@Ignore
public void test930789503984237252(){
testWithSeed(930789503984237252L);
}
@Test
@Ignore
public void test1480332326718517164(){
testWithSeed(1480332326718517164L);
}
@Test
@Ignore
public void test8997827733405782755(){
testWithSeed(8997827733405782755L);
}
@Test
@Ignore
public void test7059191520894204311(){
testWithSeed(7059191520894204311L);
}
@Test
@Ignore
public void test4484339162540496103(){
testWithSeed(4484339162540496103L);
}
@Test
@Ignore
public void test1939623429893866631(){
testWithSeed(1939623429893866631L);
}
@Test
public void testRandom() throws Throwable {
Random rnd = new Random();
for (int i = 0; i < RANDOM_RUNS; i++) {
long seed = rnd.nextLong();
if (seed < 0) {
// Use only positive seed to get prettier test name. :-)
continue;
}
try {
testWithSeed(seed);
} catch (Throwable t) {
System.out.println("Failed with random seed " + seed + ". Here is a test for it:\n");
printSeedAsTest(seed);
//throw t;
}
}
}
private static void testWithSeed(long seed) {
byte[] data = new byte[16 * 1048576];
new Random().nextBytes(data);
new Random(seed).nextBytes(data);
testIdentity(data);
}
private static void testIdentity(byte[] data) {
testIdentity(wrappedBuffer(data));
}
private static void testIdentity(ByteBuf in) {
EmbeddedByteChannel encoder = new EmbeddedByteChannel(new SnappyFramedEncoder());
EmbeddedByteChannel decoder = new EmbeddedByteChannel(new SnappyFramedDecoder());
try {
encoder.writeOutbound(in.copy());
ByteBuf compressed = encoder.readOutbound();
assertThat(compressed, is(notNullValue()));
assertThat(compressed, is(not(in)));
decoder.writeInbound(compressed);
assertFalse(compressed.isReadable());
compressed.discardReadBytes();
ByteBuf decompressed = (ByteBuf) decoder.readInbound();
assertEquals(in, decompressed);
} finally {
// Avoids memory leak through AbstractChannel.allChannels
encoder.close();
decoder.close();
}
}
private static void printSeedAsTest(long l) {
System.out.println("@Test");
System.out.println("@Ignore");
System.out.println("public void test" + l + "(){");
System.out.println(" testWithSeed(" + l + "L);");
System.out.println("}");
}
}