forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for CopyBytesSocketChannel (elastic#45873)
Currently we use a custom CopyBytesSocketChannel for interfacing with netty. We have integration tests that use this channel, however we never verify the read and write behavior in the face of potential partial writes. This commit adds a test for this behavior.
- Loading branch information
1 parent
dd6c13f
commit b87017c
Showing
2 changed files
with
198 additions
and
3 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
185 changes: 185 additions & 0 deletions
185
...ansport-netty4/src/test/java/org/elasticsearch/transport/CopyBytesSocketChannelTests.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,185 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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 org.elasticsearch.transport; | ||
|
||
import io.netty.bootstrap.Bootstrap; | ||
import io.netty.bootstrap.ServerBootstrap; | ||
import io.netty.buffer.ByteBuf; | ||
import io.netty.buffer.Unpooled; | ||
import io.netty.buffer.UnpooledByteBufAllocator; | ||
import io.netty.channel.Channel; | ||
import io.netty.channel.ChannelFuture; | ||
import io.netty.channel.ChannelHandlerContext; | ||
import io.netty.channel.ChannelInitializer; | ||
import io.netty.channel.ChannelOption; | ||
import io.netty.channel.SimpleChannelInboundHandler; | ||
import io.netty.channel.nio.NioEventLoopGroup; | ||
import org.elasticsearch.common.SuppressForbidden; | ||
import org.elasticsearch.test.ESTestCase; | ||
|
||
import java.io.IOException; | ||
import java.net.InetAddress; | ||
import java.net.InetSocketAddress; | ||
import java.nio.ByteBuffer; | ||
import java.nio.channels.SocketChannel; | ||
import java.nio.charset.StandardCharsets; | ||
import java.util.concurrent.ConcurrentLinkedQueue; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
|
||
public class CopyBytesSocketChannelTests extends ESTestCase { | ||
|
||
private final UnpooledByteBufAllocator alloc = new UnpooledByteBufAllocator(false); | ||
private final AtomicReference<CopyBytesSocketChannel> accepted = new AtomicReference<>(); | ||
private final AtomicInteger serverBytesReceived = new AtomicInteger(); | ||
private final AtomicInteger clientBytesReceived = new AtomicInteger(); | ||
private final ConcurrentLinkedQueue<ByteBuf> serverReceived = new ConcurrentLinkedQueue<>(); | ||
private final ConcurrentLinkedQueue<ByteBuf> clientReceived = new ConcurrentLinkedQueue<>(); | ||
private NioEventLoopGroup eventLoopGroup; | ||
private InetSocketAddress serverAddress; | ||
private Channel serverChannel; | ||
|
||
@Override | ||
@SuppressForbidden(reason = "calls getLocalHost") | ||
public void setUp() throws Exception { | ||
super.setUp(); | ||
eventLoopGroup = new NioEventLoopGroup(1); | ||
ServerBootstrap serverBootstrap = new ServerBootstrap(); | ||
serverBootstrap.channel(CopyBytesServerSocketChannel.class); | ||
serverBootstrap.group(eventLoopGroup); | ||
serverBootstrap.option(ChannelOption.ALLOCATOR, alloc); | ||
serverBootstrap.childOption(ChannelOption.ALLOCATOR, alloc); | ||
serverBootstrap.childHandler(new ChannelInitializer<>() { | ||
@Override | ||
protected void initChannel(Channel ch) { | ||
accepted.set((CopyBytesSocketChannel) ch); | ||
ch.pipeline().addLast(new SimpleChannelInboundHandler<>() { | ||
@Override | ||
protected void channelRead0(ChannelHandlerContext ctx, Object msg) { | ||
ByteBuf buffer = (ByteBuf) msg; | ||
serverBytesReceived.addAndGet(buffer.readableBytes()); | ||
serverReceived.add(buffer.retain()); | ||
} | ||
}); | ||
} | ||
}); | ||
|
||
ChannelFuture bindFuture = serverBootstrap.bind(new InetSocketAddress(InetAddress.getLocalHost(), 0)); | ||
assertTrue(bindFuture.await(10, TimeUnit.SECONDS)); | ||
serverAddress = (InetSocketAddress) bindFuture.channel().localAddress(); | ||
bindFuture.isSuccess(); | ||
serverChannel = bindFuture.channel(); | ||
} | ||
|
||
@Override | ||
public void tearDown() throws Exception { | ||
super.tearDown(); | ||
try { | ||
assertTrue(serverChannel.close().await(10, TimeUnit.SECONDS)); | ||
} finally { | ||
eventLoopGroup.shutdownGracefully().await(10, TimeUnit.SECONDS); | ||
} | ||
} | ||
|
||
public void testSendAndReceive() throws Exception { | ||
final Bootstrap bootstrap = new Bootstrap(); | ||
bootstrap.group(eventLoopGroup); | ||
bootstrap.channel(VerifyingCopyChannel.class); | ||
bootstrap.option(ChannelOption.ALLOCATOR, alloc); | ||
bootstrap.handler(new ChannelInitializer<>() { | ||
@Override | ||
protected void initChannel(Channel ch) { | ||
ch.pipeline().addLast(new SimpleChannelInboundHandler<>() { | ||
@Override | ||
protected void channelRead0(ChannelHandlerContext ctx, Object msg) { | ||
ByteBuf buffer = (ByteBuf) msg; | ||
clientBytesReceived.addAndGet(buffer.readableBytes()); | ||
clientReceived.add(buffer.retain()); | ||
} | ||
}); | ||
} | ||
}); | ||
|
||
ChannelFuture connectFuture = bootstrap.connect(serverAddress); | ||
connectFuture.await(10, TimeUnit.SECONDS); | ||
assertTrue(connectFuture.isSuccess()); | ||
CopyBytesSocketChannel copyChannel = (CopyBytesSocketChannel) connectFuture.channel(); | ||
ByteBuf clientData = generateData(); | ||
ByteBuf serverData = generateData(); | ||
|
||
try { | ||
assertBusy(() -> assertNotNull(accepted.get())); | ||
int clientBytesToWrite = clientData.readableBytes(); | ||
ChannelFuture clientWriteFuture = copyChannel.writeAndFlush(clientData.retainedSlice()); | ||
clientWriteFuture.await(10, TimeUnit.SECONDS); | ||
assertBusy(() -> assertEquals(clientBytesToWrite, serverBytesReceived.get())); | ||
|
||
int serverBytesToWrite = serverData.readableBytes(); | ||
ChannelFuture serverWriteFuture = accepted.get().writeAndFlush(serverData.retainedSlice()); | ||
assertTrue(serverWriteFuture.await(10, TimeUnit.SECONDS)); | ||
assertBusy(() -> assertEquals(serverBytesToWrite, clientBytesReceived.get())); | ||
|
||
ByteBuf compositeServerReceived = Unpooled.wrappedBuffer(serverReceived.toArray(new ByteBuf[0])); | ||
assertEquals(clientData, compositeServerReceived); | ||
ByteBuf compositeClientReceived = Unpooled.wrappedBuffer(clientReceived.toArray(new ByteBuf[0])); | ||
assertEquals(serverData, compositeClientReceived); | ||
} finally { | ||
clientData.release(); | ||
serverData.release(); | ||
serverReceived.forEach(ByteBuf::release); | ||
clientReceived.forEach(ByteBuf::release); | ||
assertTrue(copyChannel.close().await(10, TimeUnit.SECONDS)); | ||
} | ||
} | ||
|
||
private ByteBuf generateData() { | ||
return Unpooled.wrappedBuffer(randomAlphaOfLength(randomIntBetween(1 << 22, 1 << 23)).getBytes(StandardCharsets.UTF_8)); | ||
} | ||
|
||
public static class VerifyingCopyChannel extends CopyBytesSocketChannel { | ||
|
||
public VerifyingCopyChannel() { | ||
super(); | ||
} | ||
|
||
@Override | ||
protected int writeToSocketChannel(SocketChannel socketChannel, ByteBuffer ioBuffer) throws IOException { | ||
assertTrue("IO Buffer must be a direct byte buffer", ioBuffer.isDirect()); | ||
int remaining = ioBuffer.remaining(); | ||
int originalLimit = ioBuffer.limit(); | ||
// If greater than a KB, possibly invoke a partial write. | ||
if (remaining > 1024) { | ||
if (randomBoolean()) { | ||
int bytes = randomIntBetween(remaining / 2, remaining); | ||
ioBuffer.limit(ioBuffer.position() + bytes); | ||
} | ||
} | ||
int written = socketChannel.write(ioBuffer); | ||
ioBuffer.limit(originalLimit); | ||
return written; | ||
} | ||
|
||
@Override | ||
protected int readFromSocketChannel(SocketChannel socketChannel, ByteBuffer ioBuffer) throws IOException { | ||
assertTrue("IO Buffer must be a direct byte buffer", ioBuffer.isDirect()); | ||
return socketChannel.read(ioBuffer); | ||
} | ||
} | ||
} |