Integration tests for the minimal HttpClient

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1430866 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2013-01-09 14:05:38 +00:00
parent 4136406ac8
commit aa92e0e96d
2 changed files with 115 additions and 3 deletions

View File

@ -144,9 +144,18 @@ public class MinimalClientExec implements ClientExecChain {
}
}
int timeout = config.getSocketTimeout();
if (timeout >= 0) {
managedConn.setSocketTimeout(timeout);
if (!managedConn.isOpen()) {
int timeout = config.getConnectTimeout();
this.connManager.connect(
managedConn,
route.getTargetHost(), route.getLocalAddress(),
timeout > 0 ? timeout : 0,
context);
} else {
int timeout = config.getSocketTimeout();
if (timeout >= 0) {
managedConn.setSocketTimeout(timeout);
}
}
HttpHost target = null;

View File

@ -0,0 +1,103 @@
/*
* ====================================================================
* 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.impl.client.integration;
import java.io.IOException;
import java.util.HashSet;
import java.util.Locale;
import java.util.Set;
import org.apache.http.Header;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.protocol.HttpClientContext;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.protocol.HttpContext;
import org.apache.http.protocol.HttpRequestHandler;
import org.apache.http.util.EntityUtils;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
/**
* Client protocol handling tests.
*/
public class TestMinimalClientRequestExecution extends IntegrationTestBase {
@Before
public void setUp() throws Exception {
startServer();
}
private static class SimpleService implements HttpRequestHandler {
public SimpleService() {
super();
}
public void handle(
final HttpRequest request,
final HttpResponse response,
final HttpContext context) throws HttpException, IOException {
response.setStatusCode(HttpStatus.SC_OK);
StringEntity entity = new StringEntity("Whatever");
response.setEntity(entity);
}
}
@Test
public void testNonCompliantURI() throws Exception {
this.localServer.register("*", new SimpleService());
this.httpclient = HttpClients.createMinimal();
HttpClientContext context = HttpClientContext.create();
for (int i = 0; i < 10; i++) {
HttpGet request = new HttpGet("/");
HttpResponse response = this.httpclient.execute(getServerHttp(), request, context);
EntityUtils.consume(response.getEntity());
Assert.assertEquals(HttpStatus.SC_OK, response.getStatusLine().getStatusCode());
HttpRequest reqWrapper = context.getRequest();
Assert.assertNotNull(reqWrapper);
Header[] headers = reqWrapper.getAllHeaders();
Set<String> headerSet = new HashSet<String>();
for (Header header: headers) {
headerSet.add(header.getName().toLowerCase(Locale.US));
}
Assert.assertEquals(3, headerSet.size());
Assert.assertTrue(headerSet.contains("connection"));
Assert.assertTrue(headerSet.contains("host"));
Assert.assertTrue(headerSet.contains("user-agent"));
}
}
}