forked from netty/netty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reset markers when obtain PooledByteBuf.
Motivation: When allocate a PooledByteBuf we need to ensure to also reset the markers for the readerIndex and writerIndex. Modifications: - Correct reset the markers - Add test-case for it Result: Correctly reset markers.
- Loading branch information
1 parent
04a9b83
commit ff29517
Showing
7 changed files
with
90 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
buffer/src/test/java/io/netty/buffer/AbstractPooledByteBufTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2015 The Netty Project | ||
* | ||
* The Netty Project licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package io.netty.buffer; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
public abstract class AbstractPooledByteBufTest extends AbstractByteBufTest { | ||
|
||
private ByteBuf buffer; | ||
|
||
protected abstract ByteBuf alloc(int length); | ||
|
||
@Override | ||
protected ByteBuf newBuffer(int length) { | ||
buffer = alloc(length); | ||
assertEquals(0, buffer.writerIndex()); | ||
assertEquals(0, buffer.readerIndex()); | ||
return buffer; | ||
} | ||
|
||
@Override | ||
protected ByteBuf[] components() { | ||
return new ByteBuf[] { buffer }; | ||
} | ||
|
||
@Test | ||
public void testDiscardMarks() { | ||
ByteBuf buf = newBuffer(4); | ||
buf.writeShort(1); | ||
|
||
buf.skipBytes(1); | ||
|
||
buf.markReaderIndex(); | ||
buf.markWriterIndex(); | ||
assertTrue(buf.release()); | ||
|
||
ByteBuf buf2 = newBuffer(4); | ||
|
||
assertSame(unwrapIfNeeded(buf), unwrapIfNeeded(buf2)); | ||
|
||
buf2.writeShort(1); | ||
|
||
buf2.resetReaderIndex(); | ||
buf2.resetWriterIndex(); | ||
|
||
assertEquals(0, buf2.readerIndex()); | ||
assertEquals(0, buf2.writerIndex()); | ||
assertTrue(buf2.release()); | ||
} | ||
|
||
private static ByteBuf unwrapIfNeeded(ByteBuf buf) { | ||
if (buf instanceof AdvancedLeakAwareByteBuf || buf instanceof SimpleLeakAwareByteBuf) { | ||
return buf.unwrap(); | ||
} | ||
return buf; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters