io.restassured.config.RedirectConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
/*
* Copyright 2019 the original author or authors.
*
* 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.
*/
package io.restassured.config;
/**
* Configures the redirect settings that can be used with RestAssured.
*
* @see RestAssuredConfig
* @see org.apache.http.client.params.ClientPNames
*/
public class RedirectConfig implements Config {
private final boolean followRedirects;
private final boolean allowCircularRedirects;
private final boolean rejectRelativeRedirect;
private final int maxRedirects;
private final boolean isUserConfigured;
/**
* Create a new RedirectConfig instance with the following configuration by default:
*
* - followRedirects = true
* - allowCircularRedirects = false
* - rejectRelativeRedirect = false
* - maxRedirects = 100
*
*/
public RedirectConfig() {
this(true, false, false, 100, false);
}
/**
* Create a new instance of a RedirectConfig with the supplied settings.
*
* @param followRedirects Configure if REST Assured should follow redirects
* @param allowCircularRedirects Configure if REST Assured should allow circular redirects
* @param rejectRelativeRedirect Configure if REST Assured should reject relative redirects
* @param maxRedirects Configure the REST Assured maximum number of redirect
*/
public RedirectConfig(boolean followRedirects, boolean allowCircularRedirects,
boolean rejectRelativeRedirect, int maxRedirects) {
this(followRedirects, allowCircularRedirects, rejectRelativeRedirect, maxRedirects, true);
}
private RedirectConfig(boolean followRedirects, boolean allowCircularRedirects,
boolean rejectRelativeRedirect, int maxRedirects, boolean isUserConfigured) {
this.followRedirects = followRedirects;
this.allowCircularRedirects = allowCircularRedirects;
this.rejectRelativeRedirect = rejectRelativeRedirect;
this.maxRedirects = maxRedirects;
this.isUserConfigured = isUserConfigured;
}
/**
* Configure if REST Assured should follow redirects
*
* @param value true
if it should follow redirects, false
otherwise.
* @return An updated RedirectConfig
*/
public RedirectConfig followRedirects(boolean value) {
return new RedirectConfig(value, allowCircularRedirects, rejectRelativeRedirect, maxRedirects, true);
}
/**
* Configure if REST Assured should allow circular redirects
*
* @param value true
if it should allow circular redirects, false
otherwise.
* @return An updated RedirectConfig
*/
public RedirectConfig allowCircularRedirects(boolean value) {
return new RedirectConfig(followRedirects, value, rejectRelativeRedirect, maxRedirects, true);
}
/**
* Configure if REST Assured should reject relative redirects
*
* @param value true
if it should reject relative redirects, false
otherwise.
* @return An updated RedirectConfig
*/
public RedirectConfig rejectRelativeRedirect(boolean value) {
return new RedirectConfig(followRedirects, allowCircularRedirects, value, maxRedirects, true);
}
/**
* Configure the maximum number of redirects.
*
* @param value The maximum number of redirects
* @return An updated RedirectConfig
*/
public RedirectConfig maxRedirects(int value) {
return new RedirectConfig(followRedirects, allowCircularRedirects, rejectRelativeRedirect, value, true);
}
/**
* The same RedirectConfig instance. This method is only provided as syntactic sugar.
*/
public RedirectConfig and() {
return this;
}
/**
* @return true
if configured to follow redirects
*/
public boolean followsRedirects() {
return followRedirects;
}
/**
* @return true
if configured to allow circular redirects
*/
public boolean allowsCircularRedirects() {
return allowCircularRedirects;
}
/**
* @return true
if configured to reject relative redirects
*/
public boolean rejectRelativeRedirects() {
return rejectRelativeRedirect;
}
/**
* @return The maximum number of redirects.
*/
public int maxRedirects() {
return maxRedirects;
}
/**
* @return A static way to create a new RedirectConfig instance without calling "new" explicitly. Mainly for syntactic sugar.
*/
public static RedirectConfig redirectConfig() {
return new RedirectConfig();
}
/**
* {@inheritDoc}
*/
public boolean isUserConfigured() {
return isUserConfigured;
}
}