HADOOP-15869. BlockDecompressorStream#decompress should not return -1 in case of IOException. Contributed by Surendra Singh Lilhore
This commit is contained in:
parent
e7b63baca1
commit
75291e6d53
|
@ -72,7 +72,7 @@ public class BlockDecompressorStream extends DecompressorStream {
|
||||||
// Get original data size
|
// Get original data size
|
||||||
try {
|
try {
|
||||||
originalBlockSize = rawReadInt();
|
originalBlockSize = rawReadInt();
|
||||||
} catch (IOException ioe) {
|
} catch (EOFException e) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
noUncompressedBytes = 0;
|
noUncompressedBytes = 0;
|
||||||
|
|
|
@ -18,11 +18,15 @@
|
||||||
package org.apache.hadoop.io.compress;
|
package org.apache.hadoop.io.compress;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
@ -74,4 +78,29 @@ public class TestBlockDecompressorStream {
|
||||||
fail("unexpected IOException : " + e);
|
fail("unexpected IOException : " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testReadWhenIoExceptionOccure() throws IOException {
|
||||||
|
File file = new File("testReadWhenIOException");
|
||||||
|
try {
|
||||||
|
file.createNewFile();
|
||||||
|
InputStream io = new FileInputStream(file) {
|
||||||
|
@Override
|
||||||
|
public int read() throws IOException {
|
||||||
|
throw new IOException("File blocks missing");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
try (BlockDecompressorStream blockDecompressorStream =
|
||||||
|
new BlockDecompressorStream(io, new FakeDecompressor(), 1024)) {
|
||||||
|
int byteRead = blockDecompressorStream.read();
|
||||||
|
fail("Should not return -1 in case of IOException. Byte read "
|
||||||
|
+ byteRead);
|
||||||
|
} catch (IOException e) {
|
||||||
|
assertTrue(e.getMessage().contains("File blocks missing"));
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue