/core/src/test/java/org/jclouds/http/handlers/RedirectionRetryHandlerTest.java
Java | 184 lines | 118 code | 43 blank | 23 comment | 0 complexity | 97644819bd9d01334e9c80413b83d949 MD5 | raw file
- /**
- * Licensed to jclouds, Inc. (jclouds) under one or more
- * contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. jclouds 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.
- */
- package org.jclouds.http.handlers;
- import static org.easymock.EasyMock.expect;
- import static org.easymock.classextension.EasyMock.createMock;
- import static org.easymock.classextension.EasyMock.replay;
- import static org.easymock.classextension.EasyMock.verify;
- import java.net.URI;
- import javax.inject.Named;
- import javax.inject.Singleton;
- import javax.ws.rs.core.HttpHeaders;
- import org.jclouds.http.HttpCommand;
- import org.jclouds.http.HttpRequest;
- import org.jclouds.http.HttpResponse;
- import org.jclouds.rest.BaseRestClientTest.MockModule;
- import org.jclouds.rest.config.RestModule;
- import org.testng.annotations.Test;
- import com.google.common.collect.ImmutableMultimap;
- import com.google.common.collect.LinkedHashMultimap;
- import com.google.common.collect.Multimap;
- import com.google.inject.AbstractModule;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.Provides;
- /**
- * Tests behavior of {@code RedirectionRetryHandler}
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class RedirectionRetryHandlerTest {
- Injector injector = Guice.createInjector(new MockModule(), new RestModule(), new AbstractModule() {
- @SuppressWarnings("unused")
- @Provides
- @Singleton
- @Named("CONSTANTS")
- protected Multimap<String, String> constants() {
- return LinkedHashMultimap.create();
- }
- @Override
- protected void configure() {
- }
- });
- @Test
- public void test302DoesNotRetry() {
- HttpCommand command = createMock(HttpCommand.class);
- HttpResponse response = new HttpResponse(302, "HTTP/1.1 302 Found", null);
- expect(command.incrementRedirectCount()).andReturn(0);
- replay(command);
- RedirectionRetryHandler retry = injector.getInstance(RedirectionRetryHandler.class);
- assert !retry.shouldRetryRequest(command, response);
- verify(command);
- }
- @Test
- public void test302DoesNotRetryAfterLimit() {
- HttpCommand command = createMock(HttpCommand.class);
- HttpResponse response = new HttpResponse(302, "HTTP/1.1 302 Found", null, ImmutableMultimap.of(
- HttpHeaders.LOCATION, "/api/v0.8b-ext2.5/Error.aspx?aspxerrorpath=/api/v0.8b-ext2.5/org.svc/1906645"));
- expect(command.incrementRedirectCount()).andReturn(5);
- replay(command);
- RedirectionRetryHandler retry = injector.getInstance(RedirectionRetryHandler.class);
- assert !retry.shouldRetryRequest(command, response);
- verify(command);
- }
- @Test
- public void test302WithPathOnlyHeader() {
- verifyRedirectRoutes(
- new HttpRequest("GET", URI
- .create("https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),
- new HttpResponse(302, "HTTP/1.1 302 Found", null, ImmutableMultimap.of(HttpHeaders.LOCATION,
- "/api/v0.8b-ext2.5/Error.aspx?aspxerrorpath=/api/v0.8b-ext2.5/org.svc/1906645")),
- new HttpRequest(
- "GET",
- URI
- .create("https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/Error.aspx?aspxerrorpath=/api/v0.8b-ext2.5/org.svc/1906645")));
- }
- @Test
- public void test302ToHttps() {
- verifyRedirectRoutes(new HttpRequest("GET", URI
- .create("http://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),
- new HttpResponse(302, "HTTP/1.1 302 Found", null, ImmutableMultimap.of(HttpHeaders.LOCATION,
- "https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),//
- new HttpRequest("GET", URI
- .create("https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")));
- }
- @Test
- public void test302ToDifferentPort() {
- verifyRedirectRoutes(new HttpRequest("GET", URI
- .create("http://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),
- new HttpResponse(302, "HTTP/1.1 302 Found", null, ImmutableMultimap.of(HttpHeaders.LOCATION,
- "http://services.enterprisecloud.terremark.com:3030/api/v0.8b-ext2.5/org/1906645")),//
- new HttpRequest("GET", URI
- .create("http://services.enterprisecloud.terremark.com:3030/api/v0.8b-ext2.5/org/1906645")));
- }
- @Test
- public void test302WithHeader() {
- verifyRedirectRoutes(new HttpRequest("GET", URI
- .create("https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),
- new HttpResponse(302, "HTTP/1.1 302 Found", null, ImmutableMultimap.of(HttpHeaders.LOCATION,
- "https://services1.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),
- new HttpRequest("GET", URI
- .create("https://services1.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")));
- }
- @Test
- public void test302WithHeaderReplacesHostHeader() {
- verifyRedirectRoutes(new HttpRequest("GET", URI
- .create("https://services.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645"),
- ImmutableMultimap.of(HttpHeaders.HOST, "services.enterprisecloud.terremark.com")), new HttpResponse(302,
- "HTTP/1.1 302 Found", null, ImmutableMultimap.of(HttpHeaders.LOCATION,
- "https://services1.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645")),//
- new HttpRequest("GET", URI
- .create("https://services1.enterprisecloud.terremark.com/api/v0.8b-ext2.5/org/1906645"),
- ImmutableMultimap.of(HttpHeaders.HOST, "services1.enterprisecloud.terremark.com")));
- }
- protected void verifyRedirectRoutes(HttpRequest request, HttpResponse response, HttpRequest expected) {
- HttpCommand command = createMock(HttpCommand.class);
- expect(command.incrementRedirectCount()).andReturn(0);
- expect(command.getCurrentRequest()).andReturn(request);
- command.setCurrentRequest(expected);
- replay(command);
- RedirectionRetryHandler retry = injector.getInstance(RedirectionRetryHandler.class);
- assert retry.shouldRetryRequest(command, response);
- verify(command);
- }
- }