ConsolidationTest.java — netty Source File
Architecture documentation for ConsolidationTest.java, a java file in the netty codebase.
Entity Profile
Relationship Graph
Source Code
/*
* Copyright 2012 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:
*
* https://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 io.netty.util.CharsetUtil;
import org.junit.jupiter.api.Test;
import static io.netty.buffer.Unpooled.*;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* Tests buffer consolidation
*/
public class ConsolidationTest {
@Test
public void shouldWrapInSequence() {
ByteBuf currentBuffer = wrappedBuffer(wrappedBuffer("a".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("1".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
ByteBuf copy = currentBuffer.copy();
String s = copy.toString(CharsetUtil.US_ASCII);
assertEquals("a=1&", s);
currentBuffer.release();
copy.release();
}
@Test
public void shouldConsolidationInSequence() {
ByteBuf currentBuffer = wrappedBuffer(wrappedBuffer("a".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("1".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("b".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("2".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("c".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("3".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("d".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("4".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("e".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("=".getBytes(CharsetUtil.US_ASCII)));
currentBuffer = wrappedBuffer(currentBuffer, wrappedBuffer("5".getBytes(CharsetUtil.US_ASCII)),
wrappedBuffer("&".getBytes(CharsetUtil.US_ASCII)));
ByteBuf copy = currentBuffer.copy();
String s = copy.toString(CharsetUtil.US_ASCII);
assertEquals("a=1&b=2&c=3&d=4&e=5&", s);
currentBuffer.release();
copy.release();
}
}
Domain
Subdomains
Classes
Source
Frequently Asked Questions
What does ConsolidationTest.java do?
ConsolidationTest.java is a source file in the netty codebase, written in java. It belongs to the Buffer domain, Telemetry subdomain.
Where is ConsolidationTest.java in the architecture?
ConsolidationTest.java is located at buffer/src/test/java/io/netty/buffer/ConsolidationTest.java (domain: Buffer, subdomain: Telemetry, directory: buffer/src/test/java/io/netty/buffer).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free