From: Tomasz Gwozdecki Date: Wed, 8 Aug 2018 07:25:10 +0000 (-0400) Subject: junits for HttpClientRedirectStrategy X-Git-Tag: 1.3.1~292^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c49efd3c6f9f5977dc2ebf61488b2d8b93c698e9;p=so.git junits for HttpClientRedirectStrategy -Added new test class for HttpClientRedirectStrategy -Test for method isRedirectable Change-Id: I631ba978262316799fa10ddab4af4cfbb35dafd9 Issue-ID: SO-814 Signed-off-by: Tomasz Gwozdecki --- diff --git a/cloudify-client/src/test/java/org/onap/so/cloudify/connector/http/HttpClientRedirectStrategyTest.java b/cloudify-client/src/test/java/org/onap/so/cloudify/connector/http/HttpClientRedirectStrategyTest.java new file mode 100644 index 0000000000..bfe7f164b2 --- /dev/null +++ b/cloudify-client/src/test/java/org/onap/so/cloudify/connector/http/HttpClientRedirectStrategyTest.java @@ -0,0 +1,53 @@ +/* + * ============LICENSE_START======================================================= + * ONAP : SO + * ================================================================================ + * Copyright (C) 2018 Nokia. + * ============================================================================= + * Licensed 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. + * ============LICENSE_END========================================================= + */ +package org.onap.so.cloudify.connector.http; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.apache.http.client.methods.HttpDelete; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpHead; +import org.apache.http.client.methods.HttpOptions; +import org.apache.http.client.methods.HttpPatch; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.methods.HttpPut; +import org.apache.http.client.methods.HttpTrace; +import org.junit.Test; + +public class HttpClientRedirectStrategyTest { + + private HttpClientRedirectStrategy httpClientRedirectStrategy = new HttpClientRedirectStrategy(); + + @Test + public void isRedirectable_shouldReturnFalse_forNonRedirectableHttpMethods() { + assertThat(httpClientRedirectStrategy.isRedirectable(HttpPost.METHOD_NAME)).isFalse(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpPatch.METHOD_NAME)).isFalse(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpPut.METHOD_NAME)).isFalse(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpOptions.METHOD_NAME)).isFalse(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpTrace.METHOD_NAME)).isFalse(); + } + + @Test + public void isRedirectable_shouldReturnTrue_forRedirectableHttpMethods() { + assertThat(httpClientRedirectStrategy.isRedirectable(HttpGet.METHOD_NAME)).isTrue(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpDelete.METHOD_NAME)).isTrue(); + assertThat(httpClientRedirectStrategy.isRedirectable(HttpHead.METHOD_NAME)).isTrue(); + } +} \ No newline at end of file