blob: a0c773b4e9bad61ac161c09074fd607a51e41fb9 [file] [log] [blame]
/*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/
package org.apache.http.nio.client.integration;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.apache.http.HttpAsyncTestBase;
import org.apache.http.HttpConnection;
import org.apache.http.HttpException;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.concurrent.FutureCallback;
import org.apache.http.entity.ContentType;
import org.apache.http.nio.ContentEncoder;
import org.apache.http.nio.IOControl;
import org.apache.http.nio.entity.NStringEntity;
import org.apache.http.nio.protocol.BasicAsyncRequestConsumer;
import org.apache.http.nio.protocol.BasicAsyncResponseProducer;
import org.apache.http.nio.protocol.HttpAsyncExchange;
import org.apache.http.nio.protocol.HttpAsyncRequestConsumer;
import org.apache.http.nio.protocol.HttpAsyncRequestHandler;
import org.apache.http.protocol.HttpContext;
import org.apache.http.protocol.HttpCoreContext;
import org.junit.Assert;
import org.junit.Test;
public class TestHttpAsyncPrematureTermination extends HttpAsyncTestBase {
@Test
public void testConnectionTerminatedProcessingRequest() throws Exception {
this.serverBootstrap.registerHandler("*", new HttpAsyncRequestHandler<HttpRequest>() {
public HttpAsyncRequestConsumer<HttpRequest> processRequest(
final HttpRequest request,
final HttpContext context) throws HttpException, IOException {
final HttpConnection conn = (HttpConnection) context.getAttribute(
HttpCoreContext.HTTP_CONNECTION);
conn.shutdown();
return new BasicAsyncRequestConsumer();
}
public void handle(
final HttpRequest request,
final HttpAsyncExchange httpExchange,
final HttpContext context) throws HttpException, IOException {
final HttpResponse response = httpExchange.getResponse();
response.setEntity(new NStringEntity("all is well", ContentType.TEXT_PLAIN));
httpExchange.submitResponse();
}
});
final HttpHost target = start();
final HttpGet httpget = new HttpGet("/");
final CountDownLatch latch = new CountDownLatch(1);
final FutureCallback<HttpResponse> callback = new FutureCallback<HttpResponse>() {
public void cancelled() {
latch.countDown();
}
public void failed(final Exception ex) {
latch.countDown();
}
public void completed(final HttpResponse response) {
Assert.fail();
}
};
this.httpclient.execute(target, httpget, callback);
Assert.assertTrue(latch.await(5, TimeUnit.SECONDS));
}
@Test
public void testConnectionTerminatedHandlingRequest() throws Exception {
this.serverBootstrap.registerHandler("*", new HttpAsyncRequestHandler<HttpRequest>() {
public HttpAsyncRequestConsumer<HttpRequest> processRequest(
final HttpRequest request,
final HttpContext context) throws HttpException, IOException {
return new BasicAsyncRequestConsumer();
}
public void handle(
final HttpRequest request,
final HttpAsyncExchange httpExchange,
final HttpContext context) throws HttpException, IOException {
final HttpConnection conn = (HttpConnection) context.getAttribute(
HttpCoreContext.HTTP_CONNECTION);
conn.shutdown();
final HttpResponse response = httpExchange.getResponse();
response.setEntity(new NStringEntity("all is well", ContentType.TEXT_PLAIN));
httpExchange.submitResponse();
}
});
final HttpHost target = start();
final HttpGet httpget = new HttpGet("/");
final CountDownLatch latch = new CountDownLatch(1);
final FutureCallback<HttpResponse> callback = new FutureCallback<HttpResponse>() {
public void cancelled() {
latch.countDown();
}
public void failed(final Exception ex) {
latch.countDown();
}
public void completed(final HttpResponse response) {
Assert.fail();
}
};
this.httpclient.execute(target, httpget, callback);
Assert.assertTrue(latch.await(5, TimeUnit.SECONDS));
}
@Test
public void testConnectionTerminatedSendingResponse() throws Exception {
this.serverBootstrap.registerHandler("*", new HttpAsyncRequestHandler<HttpRequest>() {
public HttpAsyncRequestConsumer<HttpRequest> processRequest(
final HttpRequest request,
final HttpContext context) throws HttpException, IOException {
return new BasicAsyncRequestConsumer();
}
public void handle(
final HttpRequest request,
final HttpAsyncExchange httpExchange,
final HttpContext context) throws HttpException, IOException {
final HttpResponse response = httpExchange.getResponse();
response.setEntity(new NStringEntity("all is well", ContentType.TEXT_PLAIN));
httpExchange.submitResponse(new BasicAsyncResponseProducer(response) {
@Override
public synchronized void produceContent(
final ContentEncoder encoder,
final IOControl ioctrl) throws IOException {
ioctrl.shutdown();
}
});
}
});
final HttpHost target = start();
final HttpGet httpget = new HttpGet("/");
final CountDownLatch latch = new CountDownLatch(1);
final FutureCallback<HttpResponse> callback = new FutureCallback<HttpResponse>() {
public void cancelled() {
latch.countDown();
}
public void failed(final Exception ex) {
latch.countDown();
}
public void completed(final HttpResponse response) {
Assert.fail();
}
};
this.httpclient.execute(target, httpget, callback);
Assert.assertTrue(latch.await(5, TimeUnit.SECONDS));
}
}