use of io.netty.handler.codec.http.HttpContent in project ambry by linkedin.
the class CopyForcingByteBuf method closeTest.
/**
* Tests that {@link NettyRequest#close()} leaves any added {@link HttpContent} the way it was before it was added.
* (i.e no reference count changes).
* @throws RestServiceException
*/
@Test
public void closeTest() throws RestServiceException {
Channel channel = new MockChannel();
NettyRequest nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
Queue<HttpContent> httpContents = new LinkedBlockingQueue<HttpContent>();
for (int i = 0; i < 5; i++) {
ByteBuffer content = ByteBuffer.wrap(TestUtils.getRandomBytes(1024));
HttpContent httpContent = new DefaultHttpContent(Unpooled.wrappedBuffer(content));
nettyRequest.addContent(httpContent);
httpContents.add(httpContent);
}
closeRequestAndValidate(nettyRequest, channel);
while (httpContents.peek() != null) {
assertEquals("Reference count of http content has changed", 1, httpContents.poll().refCnt());
}
}
use of io.netty.handler.codec.http.HttpContent in project ambry by linkedin.
the class CopyForcingByteBuf method setBadAlgorithmTest.
/**
* Tests for failure when {@link NettyRequest#setDigestAlgorithm(String)} is called with an unrecognized algorithm.
* @throws RestServiceException
*/
private void setBadAlgorithmTest() throws RestServiceException {
List<HttpContent> httpContents = new ArrayList<HttpContent>();
generateContent(httpContents);
Channel channel = new MockChannel();
NettyRequest nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
try {
nettyRequest.setDigestAlgorithm("NonExistentAlgorithm");
fail("Setting a digest algorithm should have failed because the algorithm isn't valid");
} catch (NoSuchAlgorithmException e) {
// expected. Nothing to do.
}
closeRequestAndValidate(nettyRequest, channel);
}
use of io.netty.handler.codec.http.HttpContent in project ambry by linkedin.
the class CopyForcingByteBuf method setDigestAfterReadTest.
// digestIncorrectUsageTest() helpers.
/**
* Tests for failure when {@link NettyRequest#setDigestAlgorithm(String)} after
* {@link NettyRequest#readInto(AsyncWritableChannel, Callback)} is called.
* @throws NoSuchAlgorithmException
* @throws RestServiceException
*/
private void setDigestAfterReadTest() throws NoSuchAlgorithmException, RestServiceException {
List<HttpContent> httpContents = new ArrayList<HttpContent>();
generateContent(httpContents);
Channel channel = new MockChannel();
NettyRequest nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
ByteBufferAsyncWritableChannel writeChannel = new ByteBufferAsyncWritableChannel();
ReadIntoCallback callback = new ReadIntoCallback();
nettyRequest.readInto(writeChannel, callback);
try {
nettyRequest.setDigestAlgorithm("MD5");
fail("Setting a digest algorithm should have failed because readInto() has already been called");
} catch (IllegalStateException e) {
// expected. Nothing to do.
}
writeChannel.close();
closeRequestAndValidate(nettyRequest, channel);
}
use of io.netty.handler.codec.http.HttpContent in project ambry by linkedin.
the class CopyForcingByteBuf method doHeaderAndContentSizeMismatchTest.
/**
* Tests reaction of NettyRequest when content size is different from the size specified in the headers.
* @param httpHeaders {@link HttpHeaders} that need to be a part of the request.
* @param httpContents the {@link List<HttpContent>} that needs to be added to {@code nettyRequest}.
* @throws Exception
*/
private void doHeaderAndContentSizeMismatchTest(HttpHeaders httpHeaders, List<HttpContent> httpContents) throws Exception {
Channel channel = new MockChannel();
NettyRequest nettyRequest = createNettyRequest(HttpMethod.POST, "/", httpHeaders, channel);
AsyncWritableChannel writeChannel = new ByteBufferAsyncWritableChannel();
ReadIntoCallback callback = new ReadIntoCallback();
Future<Long> future = nettyRequest.readInto(writeChannel, callback);
int bytesAdded = 0;
HttpContent httpContentToAdd = null;
for (HttpContent httpContent : httpContents) {
httpContentToAdd = httpContent;
int contentBytes = httpContentToAdd.content().readableBytes();
if (!(httpContentToAdd instanceof LastHttpContent) && (bytesAdded + contentBytes <= nettyRequest.getSize())) {
nettyRequest.addContent(httpContentToAdd);
assertEquals("Reference count is not as expected", 2, httpContentToAdd.refCnt());
bytesAdded += contentBytes;
} else {
break;
}
}
// the addition of the next content should throw an exception.
try {
nettyRequest.addContent(httpContentToAdd);
fail("Adding content should have failed because there was a mismatch in size");
} catch (RestServiceException e) {
assertEquals("Unexpected RestServiceErrorCode", RestServiceErrorCode.BadRequest, e.getErrorCode());
}
closeRequestAndValidate(nettyRequest, channel);
writeChannel.close();
verifyRefCnts(httpContents);
callback.awaitCallback();
assertNotNull("There should be a RestServiceException in the callback", callback.exception);
assertEquals("Unexpected RestServiceErrorCode", RestServiceErrorCode.BadRequest, ((RestServiceException) callback.exception).getErrorCode());
try {
future.get();
fail("Should have thrown exception because the future is expected to have been given one");
} catch (ExecutionException e) {
RestServiceException restServiceException = (RestServiceException) Utils.getRootCause(e);
assertNotNull("There should be a RestServiceException in the future", restServiceException);
assertEquals("Unexpected RestServiceErrorCode", RestServiceErrorCode.BadRequest, restServiceException.getErrorCode());
}
}
use of io.netty.handler.codec.http.HttpContent in project ambry by linkedin.
the class CopyForcingByteBuf method readIntoExceptionsTest.
/**
* Tests exception scenarios of {@link NettyRequest#readInto(AsyncWritableChannel, Callback)} and behavior of
* {@link NettyRequest} when {@link AsyncWritableChannel} instances fail.
* @throws Exception
*/
@Test
public void readIntoExceptionsTest() throws Exception {
Channel channel = new MockChannel();
// try to call readInto twice.
NettyRequest nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
AsyncWritableChannel writeChannel = new ByteBufferAsyncWritableChannel();
nettyRequest.readInto(writeChannel, null);
try {
nettyRequest.readInto(writeChannel, null);
fail("Calling readInto twice should have failed");
} catch (IllegalStateException e) {
// expected. Nothing to do.
}
closeRequestAndValidate(nettyRequest, channel);
// write into a channel that throws exceptions
// non RuntimeException
nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
List<HttpContent> httpContents = new ArrayList<HttpContent>();
generateContent(httpContents);
assertTrue("Not enough content has been generated", httpContents.size() > 2);
String expectedMsg = "@@expectedMsg@@";
Exception exception = new Exception(expectedMsg);
writeChannel = new BadAsyncWritableChannel(exception);
ReadIntoCallback callback = new ReadIntoCallback();
// add content initially
int addedCount = 0;
for (; addedCount < httpContents.size() / 2; addedCount++) {
HttpContent httpContent = httpContents.get(addedCount);
nettyRequest.addContent(httpContent);
assertEquals("Reference count is not as expected", 2, httpContent.refCnt());
}
Future<Long> future = nettyRequest.readInto(writeChannel, callback);
// add some more content
for (; addedCount < httpContents.size(); addedCount++) {
HttpContent httpContent = httpContents.get(addedCount);
nettyRequest.addContent(httpContent);
}
writeChannel.close();
verifyRefCnts(httpContents);
callback.awaitCallback();
assertNotNull("Exception was not piped correctly", callback.exception);
assertEquals("Exception message mismatch (callback)", expectedMsg, callback.exception.getMessage());
try {
future.get();
fail("Future should have thrown exception");
} catch (ExecutionException e) {
assertEquals("Exception message mismatch (future)", expectedMsg, Utils.getRootCause(e).getMessage());
}
closeRequestAndValidate(nettyRequest, channel);
// RuntimeException
// during readInto
nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
httpContents = new ArrayList<HttpContent>();
generateContent(httpContents);
exception = new IllegalStateException(expectedMsg);
writeChannel = new BadAsyncWritableChannel(exception);
callback = new ReadIntoCallback();
for (HttpContent httpContent : httpContents) {
nettyRequest.addContent(httpContent);
assertEquals("Reference count is not as expected", 2, httpContent.refCnt());
}
try {
nettyRequest.readInto(writeChannel, callback);
fail("readInto did not throw expected exception");
} catch (Exception e) {
assertEquals("Exception caught does not match expected exception", expectedMsg, e.getMessage());
}
writeChannel.close();
closeRequestAndValidate(nettyRequest, channel);
verifyRefCnts(httpContents);
// after readInto
nettyRequest = createNettyRequest(HttpMethod.POST, "/", null, channel);
httpContents = new ArrayList<HttpContent>();
generateContent(httpContents);
exception = new IllegalStateException(expectedMsg);
writeChannel = new BadAsyncWritableChannel(exception);
callback = new ReadIntoCallback();
nettyRequest.readInto(writeChannel, callback);
// add content
HttpContent httpContent = httpContents.get(1);
try {
nettyRequest.addContent(httpContent);
fail("addContent did not throw expected exception");
} catch (Exception e) {
assertEquals("Exception caught does not match expected exception", expectedMsg, e.getMessage());
}
writeChannel.close();
closeRequestAndValidate(nettyRequest, channel);
verifyRefCnts(httpContents);
}
Aggregations