use of io.netty.handler.codec.http.HttpHeaders in project ambry by linkedin.
the class PublicAccessLogHandlerTest method doRequestHandleWithKeepAliveTest.
/**
* Does a test to see that two consecutive request handling results in expected entries in public access log
* with keep alive
* @param httpMethod the {@link HttpMethod} for the request.
* @param uri Uri to be used during the request
* @param useSSL {@code true} to test SSL logging.
* @throws Exception
*/
private void doRequestHandleWithKeepAliveTest(HttpMethod httpMethod, String uri, boolean useSSL) throws Exception {
EmbeddedChannel channel = createChannel(useSSL);
// contains one logged request header
HttpHeaders headers = new DefaultHttpHeaders();
headers.add(HttpHeaderNames.CONTENT_LENGTH, new Random().nextLong());
HttpRequest request = RestTestUtils.createRequest(httpMethod, uri, headers);
HttpUtil.setKeepAlive(request, true);
sendRequestCheckResponse(channel, request, uri, headers, false, false, useSSL);
Assert.assertTrue("Channel should not be closed ", channel.isOpen());
// contains one logged and not logged header
headers = new DefaultHttpHeaders();
headers.add(NOT_LOGGED_HEADER_KEY + "1", "headerValue1");
headers.add(HttpHeaderNames.CONTENT_LENGTH, new Random().nextLong());
request = RestTestUtils.createRequest(httpMethod, uri, headers);
HttpUtil.setKeepAlive(request, true);
sendRequestCheckResponse(channel, request, uri, headers, false, false, useSSL);
Assert.assertTrue("Channel should not be closed ", channel.isOpen());
channel.close();
}
use of io.netty.handler.codec.http.HttpHeaders in project ambry by linkedin.
the class PublicAccessLogHandlerTest method doRequestHandleTest.
// requestHandleTest() helpers
/**
* Does a test to see that request handling results in expected entries in public access log
* @param httpMethod the {@link HttpMethod} for the request.
* @param uri Uri to be used during the request
* @param testErrorCase true if error case has to be tested, false otherwise
* @param useSSL {@code true} to test SSL logging.
* @throws Exception
*/
private void doRequestHandleTest(HttpMethod httpMethod, String uri, boolean testErrorCase, boolean useSSL) throws Exception {
EmbeddedChannel channel = createChannel(useSSL);
List<HttpHeaders> httpHeadersList = getHeadersList();
for (HttpHeaders headers : httpHeadersList) {
HttpRequest request = RestTestUtils.createRequest(httpMethod, uri, headers);
HttpUtil.setKeepAlive(request, true);
sendRequestCheckResponse(channel, request, uri, headers, testErrorCase, false, useSSL);
if (!testErrorCase) {
Assert.assertTrue("Channel should not be closed ", channel.isOpen());
} else {
Assert.assertFalse("Channel should have been closed ", channel.isOpen());
channel = createChannel(useSSL);
}
}
channel.close();
}
use of io.netty.handler.codec.http.HttpHeaders in project ambry by linkedin.
the class PublicAccessLogHandlerTest method doRequestHandleWithMultipleRequest.
/**
* Does a test to see that two consecutive requests without sending last http content for first request fails
* @param httpMethod the {@link HttpMethod} for the request.
* @param uri Uri to be used during the request
* @param useSSL {@code true} to test SSL logging.
* @throws Exception
*/
private void doRequestHandleWithMultipleRequest(HttpMethod httpMethod, String uri, boolean useSSL) throws Exception {
EmbeddedChannel channel = createChannel(useSSL);
// contains one logged request header
HttpHeaders headers1 = new DefaultHttpHeaders();
headers1.add(HttpHeaderNames.CONTENT_LENGTH, new Random().nextLong());
HttpRequest request = RestTestUtils.createRequest(httpMethod, uri, headers1);
HttpUtil.setKeepAlive(request, true);
channel.writeInbound(request);
// contains one logged and not logged header
HttpHeaders headers2 = new DefaultHttpHeaders();
headers2.add(NOT_LOGGED_HEADER_KEY + "1", "headerValue1");
headers2.add(HttpHeaderNames.CONTENT_LENGTH, new Random().nextLong());
// sending another request w/o sending last http content
request = RestTestUtils.createRequest(httpMethod, uri, headers2);
HttpUtil.setKeepAlive(request, true);
sendRequestCheckResponse(channel, request, uri, headers2, false, false, useSSL);
Assert.assertTrue("Channel should not be closed ", channel.isOpen());
// verify that headers from first request is not found in public access log
String lastLogEntry = publicAccessLogger.getLastPublicAccessLogEntry();
// verify request headers
verifyPublicAccessLogEntryForRequestHeaders(lastLogEntry, headers1, request.method(), false);
channel.close();
}
use of io.netty.handler.codec.http.HttpHeaders in project ambry by linkedin.
the class FrontendIntegrationTest method getBlobInfoAndVerify.
/**
* Gets the blob info of the blob with blob ID {@code blobId} and verifies them against what is expected.
* @param blobId the blob ID of the blob to HEAD.
* @param getOption the options to use while getting the blob.
* @param expectedHeaders the expected headers in the response.
* @param isPrivate {@code true} if the blob is expected to be private
* @param accountName the expected account name in the response.
* @param containerName the expected container name in response.
* @param usermetadata if non-null, this is expected to come as the body.
* @throws ExecutionException
* @throws InterruptedException
*/
private void getBlobInfoAndVerify(String blobId, GetOption getOption, HttpHeaders expectedHeaders, boolean isPrivate, String accountName, String containerName, byte[] usermetadata) throws ExecutionException, InterruptedException {
HttpHeaders headers = new DefaultHttpHeaders();
if (getOption != null) {
headers.add(RestUtils.Headers.GET_OPTION, getOption.toString());
}
FullHttpRequest httpRequest = buildRequest(HttpMethod.GET, blobId + "/" + RestUtils.SubResource.BlobInfo, headers, null);
ResponseParts responseParts = nettyClient.sendRequest(httpRequest, null, null).get();
HttpResponse response = getHttpResponse(responseParts);
assertEquals("Unexpected response status", HttpResponseStatus.OK, response.status());
checkCommonGetHeadHeaders(response.headers());
verifyBlobProperties(expectedHeaders, isPrivate, response);
verifyAccountAndContainerHeaders(accountName, containerName, response);
verifyUserMetadata(expectedHeaders, response, usermetadata, responseParts.queue);
assertTrue("Channel should be active", HttpUtil.isKeepAlive(response));
}
use of io.netty.handler.codec.http.HttpHeaders in project ambry by linkedin.
the class FrontendIntegrationTest method doPostGetHeadDeleteTest.
// postGetHeadDeleteTest() and multipartPostGetHeadTest() helpers
/**
* Utility to test blob POST, GET, HEAD and DELETE operations for a specified size
* @param contentSize the size of the blob to be tested
* @param toPostAccount the {@link Account} to use in post headers. Can be {@code null} if only using service ID.
* @param toPostContainer the {@link Container} to use in post headers. Can be {@code null} if only using service ID.
* @param serviceId the serviceId to use for the POST
* @param isPrivate the isPrivate flag to pass as part of the POST
* @param expectedAccountName the expected account name in some response.
* @param expectedContainerName the expected container name in some responses.
* @param multipartPost {@code true} if multipart POST is desired, {@code false} otherwise.
* @throws Exception
*/
private void doPostGetHeadDeleteTest(int contentSize, Account toPostAccount, Container toPostContainer, String serviceId, boolean isPrivate, String expectedAccountName, String expectedContainerName, boolean multipartPost) throws Exception {
ByteBuffer content = ByteBuffer.wrap(TestUtils.getRandomBytes(contentSize));
String contentType = "application/octet-stream";
String ownerId = "postGetHeadDeleteOwnerID";
String accountNameInPost = toPostAccount != null ? toPostAccount.getName() : null;
String containerNameInPost = toPostContainer != null ? toPostContainer.getName() : null;
HttpHeaders headers = new DefaultHttpHeaders();
setAmbryHeadersForPut(headers, 7200, isPrivate, serviceId, contentType, ownerId, accountNameInPost, containerNameInPost);
String blobId;
byte[] usermetadata = null;
if (multipartPost) {
usermetadata = UtilsTest.getRandomString(32).getBytes();
blobId = multipartPostBlobAndVerify(headers, content, ByteBuffer.wrap(usermetadata));
} else {
headers.add(RestUtils.Headers.USER_META_DATA_HEADER_PREFIX + "key1", "value1");
headers.add(RestUtils.Headers.USER_META_DATA_HEADER_PREFIX + "key2", "value2");
blobId = postBlobAndVerify(headers, content);
}
headers.add(RestUtils.Headers.BLOB_SIZE, content.capacity());
getBlobAndVerify(blobId, null, null, headers, isPrivate, content);
getHeadAndVerify(blobId, null, null, headers, isPrivate, expectedAccountName, expectedContainerName);
getBlobAndVerify(blobId, null, GetOption.None, headers, isPrivate, content);
getHeadAndVerify(blobId, null, GetOption.None, headers, isPrivate, expectedAccountName, expectedContainerName);
ByteRange range = ByteRange.fromLastNBytes(ThreadLocalRandom.current().nextLong(content.capacity() + 1));
getBlobAndVerify(blobId, range, null, headers, isPrivate, content);
getHeadAndVerify(blobId, range, null, headers, isPrivate, expectedAccountName, expectedContainerName);
if (contentSize > 0) {
range = ByteRange.fromStartOffset(ThreadLocalRandom.current().nextLong(content.capacity()));
getBlobAndVerify(blobId, range, null, headers, isPrivate, content);
getHeadAndVerify(blobId, range, null, headers, isPrivate, expectedAccountName, expectedContainerName);
long random1 = ThreadLocalRandom.current().nextLong(content.capacity());
long random2 = ThreadLocalRandom.current().nextLong(content.capacity());
range = ByteRange.fromOffsetRange(Math.min(random1, random2), Math.max(random1, random2));
getBlobAndVerify(blobId, range, null, headers, isPrivate, content);
getHeadAndVerify(blobId, range, null, headers, isPrivate, expectedAccountName, expectedContainerName);
}
getNotModifiedBlobAndVerify(blobId, null, isPrivate);
getUserMetadataAndVerify(blobId, null, headers, usermetadata);
getBlobInfoAndVerify(blobId, null, headers, isPrivate, expectedAccountName, expectedContainerName, usermetadata);
deleteBlobAndVerify(blobId);
// check GET, HEAD and DELETE after delete.
verifyOperationsAfterDelete(blobId, headers, isPrivate, expectedAccountName, expectedContainerName, content, usermetadata);
}
Aggregations