|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package io.netty.buffer; |
|
|
|
import io.netty.util.internal.PlatformDependent; |
|
import org.junit.Assert; |
|
import org.junit.Test; |
|
|
|
import java.io.ByteArrayInputStream; |
|
import java.io.File; |
|
import java.io.IOException; |
|
import java.io.RandomAccessFile; |
|
import java.nio.ByteBuffer; |
|
import java.nio.ReadOnlyBufferException; |
|
import java.nio.channels.FileChannel; |
|
|
|
public class ReadOnlyDirectByteBufferBufTest { |
|
|
|
protected ByteBuf buffer(ByteBuffer buffer) { |
|
return new ReadOnlyByteBufferBuf(UnpooledByteBufAllocator.DEFAULT, buffer); |
|
} |
|
|
|
protected ByteBuffer allocate(int size) { |
|
return ByteBuffer.allocateDirect(size); |
|
} |
|
|
|
@Test |
|
public void testIsContiguous() { |
|
ByteBuf buf = buffer(allocate(4).asReadOnlyBuffer()); |
|
Assert.assertTrue(buf.isContiguous()); |
|
buf.release(); |
|
} |
|
|
|
@Test(expected = IllegalArgumentException.class) |
|
public void testConstructWithWritable() { |
|
buffer(allocate(1)); |
|
} |
|
|
|
@Test |
|
public void shouldIndicateNotWritable() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()).clear(); |
|
try { |
|
Assert.assertFalse(buf.isWritable()); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test |
|
public void shouldIndicateNotWritableAnyNumber() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()).clear(); |
|
try { |
|
Assert.assertFalse(buf.isWritable(1)); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test |
|
public void ensureWritableIntStatusShouldFailButNotThrow() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()).clear(); |
|
try { |
|
int result = buf.ensureWritable(1, false); |
|
Assert.assertEquals(1, result); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test |
|
public void ensureWritableForceIntStatusShouldFailButNotThrow() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()).clear(); |
|
try { |
|
int result = buf.ensureWritable(1, true); |
|
Assert.assertEquals(1, result); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void ensureWritableShouldThrow() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()).clear(); |
|
try { |
|
buf.ensureWritable(1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetByte() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setByte(0, 1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetInt() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setInt(0, 1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetShort() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setShort(0, 1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetMedium() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setMedium(0, 1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetLong() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setLong(0, 1); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetBytesViaArray() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setBytes(0, "test".getBytes()); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetBytesViaBuffer() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
ByteBuf copy = Unpooled.copyInt(1); |
|
try { |
|
buf.setBytes(0, copy); |
|
} finally { |
|
buf.release(); |
|
copy.release(); |
|
} |
|
} |
|
|
|
@Test(expected = ReadOnlyBufferException.class) |
|
public void testSetBytesViaStream() throws IOException { |
|
ByteBuf buf = buffer(ByteBuffer.allocateDirect(8).asReadOnlyBuffer()); |
|
try { |
|
buf.setBytes(0, new ByteArrayInputStream("test".getBytes()), 2); |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
|
|
@Test |
|
public void testGetReadByte() { |
|
ByteBuf buf = buffer( |
|
((ByteBuffer) allocate(2).put(new byte[] { (byte) 1, (byte) 2 }).flip()).asReadOnlyBuffer()); |
|
|
|
Assert.assertEquals(1, buf.getByte(0)); |
|
Assert.assertEquals(2, buf.getByte(1)); |
|
|
|
Assert.assertEquals(1, buf.readByte()); |
|
Assert.assertEquals(2, buf.readByte()); |
|
Assert.assertFalse(buf.isReadable()); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test |
|
public void testGetReadInt() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(8).putInt(1).putInt(2).flip()).asReadOnlyBuffer()); |
|
|
|
Assert.assertEquals(1, buf.getInt(0)); |
|
Assert.assertEquals(2, buf.getInt(4)); |
|
|
|
Assert.assertEquals(1, buf.readInt()); |
|
Assert.assertEquals(2, buf.readInt()); |
|
Assert.assertFalse(buf.isReadable()); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test |
|
public void testGetReadShort() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(8) |
|
.putShort((short) 1).putShort((short) 2).flip()).asReadOnlyBuffer()); |
|
|
|
Assert.assertEquals(1, buf.getShort(0)); |
|
Assert.assertEquals(2, buf.getShort(2)); |
|
|
|
Assert.assertEquals(1, buf.readShort()); |
|
Assert.assertEquals(2, buf.readShort()); |
|
Assert.assertFalse(buf.isReadable()); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test |
|
public void testGetReadLong() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(16) |
|
.putLong(1).putLong(2).flip()).asReadOnlyBuffer()); |
|
|
|
Assert.assertEquals(1, buf.getLong(0)); |
|
Assert.assertEquals(2, buf.getLong(8)); |
|
|
|
Assert.assertEquals(1, buf.readLong()); |
|
Assert.assertEquals(2, buf.readLong()); |
|
Assert.assertFalse(buf.isReadable()); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test(expected = IndexOutOfBoundsException.class) |
|
public void testGetBytesByteBuffer() { |
|
byte[] bytes = {'a', 'b', 'c', 'd', 'e', 'f', 'g'}; |
|
|
|
ByteBuffer nioBuffer = ByteBuffer.allocate(bytes.length + 1); |
|
ByteBuf buffer = buffer(((ByteBuffer) allocate(bytes.length) |
|
.put(bytes).flip()).asReadOnlyBuffer()); |
|
try { |
|
buffer.getBytes(buffer.readerIndex(), nioBuffer); |
|
} finally { |
|
buffer.release(); |
|
} |
|
} |
|
|
|
@Test |
|
public void testCopy() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(16).putLong(1).putLong(2).flip()).asReadOnlyBuffer()); |
|
ByteBuf copy = buf.copy(); |
|
|
|
Assert.assertEquals(buf, copy); |
|
|
|
buf.release(); |
|
copy.release(); |
|
} |
|
|
|
@Test |
|
public void testCopyWithOffset() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(16).putLong(1).putLong(2).flip()).asReadOnlyBuffer()); |
|
ByteBuf copy = buf.copy(1, 9); |
|
|
|
Assert.assertEquals(buf.slice(1, 9), copy); |
|
|
|
buf.release(); |
|
copy.release(); |
|
} |
|
|
|
|
|
@Test |
|
public void testWrapBufferWithNonZeroPosition() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(16) |
|
.putLong(1).flip().position(1)).asReadOnlyBuffer()); |
|
|
|
ByteBuf slice = buf.slice(); |
|
Assert.assertEquals(buf, slice); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test |
|
public void testWrapBufferRoundTrip() { |
|
ByteBuf buf = buffer(((ByteBuffer) allocate(16).putInt(1).putInt(2).flip()).asReadOnlyBuffer()); |
|
|
|
Assert.assertEquals(1, buf.readInt()); |
|
|
|
ByteBuffer nioBuffer = buf.nioBuffer(); |
|
|
|
|
|
Assert.assertEquals(2, nioBuffer.getInt()); |
|
|
|
buf.release(); |
|
} |
|
|
|
@Test |
|
public void testWrapMemoryMapped() throws Exception { |
|
|
|
|
|
|
|
File file = PlatformDependent.createTempFile("netty-test", "tmp", null); |
|
FileChannel output = null; |
|
FileChannel input = null; |
|
ByteBuf b1 = null; |
|
ByteBuf b2 = null; |
|
|
|
try { |
|
output = new RandomAccessFile(file, "rw").getChannel(); |
|
byte[] bytes = new byte[1024]; |
|
PlatformDependent.threadLocalRandom().nextBytes(bytes); |
|
output.write(ByteBuffer.wrap(bytes)); |
|
|
|
input = new RandomAccessFile(file, "r").getChannel(); |
|
ByteBuffer m = input.map(FileChannel.MapMode.READ_ONLY, 0, input.size()); |
|
|
|
b1 = buffer(m); |
|
|
|
ByteBuffer dup = m.duplicate(); |
|
dup.position(2); |
|
dup.limit(4); |
|
|
|
b2 = buffer(dup); |
|
|
|
Assert.assertEquals(b2, b1.slice(2, 2)); |
|
} finally { |
|
if (b1 != null) { |
|
b1.release(); |
|
} |
|
if (b2 != null) { |
|
b2.release(); |
|
} |
|
if (output != null) { |
|
output.close(); |
|
} |
|
if (input != null) { |
|
input.close(); |
|
} |
|
file.delete(); |
|
} |
|
} |
|
|
|
@Test |
|
public void testMemoryAddress() { |
|
ByteBuf buf = buffer(allocate(8).asReadOnlyBuffer()); |
|
try { |
|
Assert.assertFalse(buf.hasMemoryAddress()); |
|
try { |
|
buf.memoryAddress(); |
|
Assert.fail(); |
|
} catch (UnsupportedOperationException expected) { |
|
|
|
} |
|
} finally { |
|
buf.release(); |
|
} |
|
} |
|
} |
|
|