View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  package org.apache.hc.client5.testing.async;
28  
29  import java.util.ArrayList;
30  import java.util.Arrays;
31  import java.util.Collection;
32  import java.util.List;
33  import java.util.concurrent.Future;
34  
35  import org.apache.hc.client5.http.async.methods.SimpleHttpRequests;
36  import org.apache.hc.client5.http.async.methods.SimpleHttpResponse;
37  import org.apache.hc.client5.http.config.RequestConfig;
38  import org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient;
39  import org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder;
40  import org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManager;
41  import org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManagerBuilder;
42  import org.apache.hc.client5.http.protocol.HttpClientContext;
43  import org.apache.hc.client5.http.ssl.DefaultClientTlsStrategy;
44  import org.apache.hc.client5.testing.OldPathRedirectResolver;
45  import org.apache.hc.client5.testing.SSLTestContexts;
46  import org.apache.hc.client5.testing.redirect.Redirect;
47  import org.apache.hc.core5.function.Decorator;
48  import org.apache.hc.core5.http.Header;
49  import org.apache.hc.core5.http.HttpHeaders;
50  import org.apache.hc.core5.http.HttpHost;
51  import org.apache.hc.core5.http.HttpRequest;
52  import org.apache.hc.core5.http.HttpResponse;
53  import org.apache.hc.core5.http.HttpStatus;
54  import org.apache.hc.core5.http.HttpVersion;
55  import org.apache.hc.core5.http.URIScheme;
56  import org.apache.hc.core5.http.message.BasicHeader;
57  import org.apache.hc.core5.http.nio.AsyncServerExchangeHandler;
58  import org.junit.Assert;
59  import org.junit.Rule;
60  import org.junit.Test;
61  import org.junit.rules.ExternalResource;
62  import org.junit.runner.RunWith;
63  import org.junit.runners.Parameterized;
64  
65  /**
66   * Redirection test cases.
67   */
68  @RunWith(Parameterized.class)
69  public class TestHttp1AsyncRedirects extends AbstractHttpAsyncRedirectsTest<CloseableHttpAsyncClient> {
70  
71      @Parameterized.Parameters(name = "HTTP/1.1 {0}")
72      public static Collection<Object[]> protocols() {
73          return Arrays.asList(new Object[][]{
74                  {URIScheme.HTTP},
75                  {URIScheme.HTTPS},
76          });
77      }
78  
79      protected HttpAsyncClientBuilder clientBuilder;
80      protected PoolingAsyncClientConnectionManager connManager;
81  
82      public TestHttp1AsyncRedirects(final URIScheme scheme) {
83          super(HttpVersion.HTTP_1_1, scheme);
84      }
85  
86      @Rule
87      public ExternalResource connManagerResource = new ExternalResource() {
88  
89          @Override
90          protected void before() throws Throwable {
91              connManager = PoolingAsyncClientConnectionManagerBuilder.create()
92                      .setTlsStrategy(new DefaultClientTlsStrategy(SSLTestContexts.createClientSSLContext()))
93                      .build();
94          }
95  
96          @Override
97          protected void after() {
98              if (connManager != null) {
99                  connManager.close();
100                 connManager = null;
101             }
102         }
103 
104     };
105 
106     @Rule
107     public ExternalResource clientBuilderResource = new ExternalResource() {
108 
109         @Override
110         protected void before() throws Throwable {
111             clientBuilder = HttpAsyncClientBuilder.create()
112                     .setDefaultRequestConfig(RequestConfig.custom()
113                             .setConnectionRequestTimeout(TIMEOUT)
114                             .setConnectTimeout(TIMEOUT)
115                             .build())
116                     .setConnectionManager(connManager);
117         }
118 
119     };
120 
121     @Override
122     protected CloseableHttpAsyncClient createClient() throws Exception {
123         return clientBuilder.build();
124     }
125 
126     @Test
127     public void testBasicRedirect300NoKeepAlive() throws Exception {
128         final HttpHost target = start(new Decorator<AsyncServerExchangeHandler>() {
129 
130             @Override
131             public AsyncServerExchangeHandler decorate(final AsyncServerExchangeHandler exchangeHandler) {
132                 return new RedirectingAsyncDecorator(
133                         exchangeHandler,
134                         new OldPathRedirectResolver("/oldlocation", "/random", HttpStatus.SC_MULTIPLE_CHOICES,
135                                 Redirect.ConnControl.CLOSE));
136             }
137 
138         });
139         final HttpClientContext context = HttpClientContext.create();
140         final Future<SimpleHttpResponse> future = httpclient.execute(
141                 SimpleHttpRequests.get(target, "/oldlocation/"), context, null);
142         final HttpResponse response = future.get();
143         Assert.assertNotNull(response);
144 
145         final HttpRequest request = context.getRequest();
146 
147         Assert.assertEquals(HttpStatus.SC_MULTIPLE_CHOICES, response.getCode());
148         Assert.assertEquals("/oldlocation/", request.getRequestUri());
149     }
150 
151     @Test
152     public void testBasicRedirect301NoKeepAlive() throws Exception {
153         final HttpHost target = start(new Decorator<AsyncServerExchangeHandler>() {
154 
155             @Override
156             public AsyncServerExchangeHandler decorate(final AsyncServerExchangeHandler exchangeHandler) {
157                 return new RedirectingAsyncDecorator(
158                         exchangeHandler,
159                         new OldPathRedirectResolver("/oldlocation", "/random", HttpStatus.SC_MOVED_PERMANENTLY,
160                                 Redirect.ConnControl.CLOSE));
161             }
162 
163         });
164         final HttpClientContext context = HttpClientContext.create();
165         final Future<SimpleHttpResponse> future = httpclient.execute(
166                 SimpleHttpRequests.get(target, "/oldlocation/100"), context, null);
167         final HttpResponse response = future.get();
168         Assert.assertNotNull(response);
169 
170         final HttpRequest request = context.getRequest();
171 
172         Assert.assertEquals(HttpStatus.SC_OK, response.getCode());
173         Assert.assertEquals("/random/100", request.getRequestUri());
174         Assert.assertEquals(target, new HttpHost(request.getScheme(), request.getAuthority()));
175     }
176 
177     @Test
178     public void testDefaultHeadersRedirect() throws Exception {
179         final List<Header> defaultHeaders = new ArrayList<>(1);
180         defaultHeaders.add(new BasicHeader(HttpHeaders.USER_AGENT, "my-test-client"));
181         clientBuilder.setDefaultHeaders(defaultHeaders);
182 
183         final HttpHost target = start(new Decorator<AsyncServerExchangeHandler>() {
184 
185             @Override
186             public AsyncServerExchangeHandler decorate(final AsyncServerExchangeHandler exchangeHandler) {
187                 return new RedirectingAsyncDecorator(
188                         exchangeHandler,
189                         new OldPathRedirectResolver("/oldlocation", "/random", HttpStatus.SC_MOVED_PERMANENTLY,
190                                 Redirect.ConnControl.CLOSE));
191             }
192 
193         });
194 
195         final HttpClientContext context = HttpClientContext.create();
196 
197         final Future<SimpleHttpResponse> future = httpclient.execute(
198                 SimpleHttpRequests.get(target, "/oldlocation/123"), context, null);
199         final HttpResponse response = future.get();
200         Assert.assertNotNull(response);
201 
202         final HttpRequest request = context.getRequest();
203 
204         Assert.assertEquals(HttpStatus.SC_OK, response.getCode());
205         Assert.assertEquals("/random/123", request.getRequestUri());
206 
207         final Header header = request.getFirstHeader(HttpHeaders.USER_AGENT);
208         Assert.assertEquals("my-test-client", header.getValue());
209     }
210 
211 }