/apis/deltacloud/src/test/java/org/jclouds/deltacloud/handlers/DeltacloudRedirectionRetryHandlerTest.java
https://github.com/regularfry/jclouds · Java · 106 lines · 60 code · 23 blank · 23 comment · 0 complexity · 7af5ba9089532ae47f3194931e53b114 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.deltacloud.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 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.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 DeltacloudRedirectionRetry}
- *
- * @author Adrian Cole
- */
- @Test(groups = "unit")
- public class DeltacloudRedirectionRetryHandlerTest {
- 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 test302DoesNotRetryOnDelete() {
- HttpCommand command = createMock(HttpCommand.class);
- HttpRequest request = HttpRequest.builder().method("DELETE").endpoint(URI.create("http://localhost")).build();
- HttpResponse response = new HttpResponse(302, "HTTP/1.1 302 Found", null);
- expect(command.getCurrentRequest()).andReturn(request).atLeastOnce();
- replay(command);
- DeltacloudRedirectionRetryHandler retry = injector.getInstance(
- DeltacloudRedirectionRetryHandler.class);
- assert !retry.shouldRetryRequest(command, response);
- verify(command);
- }
- @Test
- public void test302DoesRetryOnGET() {
- HttpCommand command = createMock(HttpCommand.class);
- HttpRequest request = HttpRequest.builder().method("GET").endpoint(URI.create("http://localhost")).build();
- HttpResponse response = new HttpResponse(302, "HTTP/1.1 302 Found", null);
- expect(command.getCurrentRequest()).andReturn(request).atLeastOnce();
- expect(command.incrementRedirectCount()).andReturn(1);
- replay(command);
- DeltacloudRedirectionRetryHandler retry = injector.getInstance(
- DeltacloudRedirectionRetryHandler.class);
- assert !retry.shouldRetryRequest(command, response);
- verify(command);
- }
- }