io.restassured.internal.AuthenticationSpecificationImpl.groovy 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 2016 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.internal
import io.restassured.authentication.*
import io.restassured.specification.AuthenticationSpecification
import io.restassured.specification.PreemptiveAuthSpec
import io.restassured.specification.RequestSpecification
import io.restassured.spi.AuthFilter
import static io.restassured.authentication.CertificateAuthSettings.certAuthSettings
import static io.restassured.internal.assertion.AssertParameter.notNull
/**
* Specify an authentication scheme to use when sending a request.
*/
class AuthenticationSpecificationImpl implements AuthenticationSpecification {
private static final String AUTHORIZATION_HEADER_NAME = "Authorization"
private RequestSpecification requestSpecification;
AuthenticationSpecificationImpl(RequestSpecification requestSpecification) {
this.requestSpecification = requestSpecification
}
/**
* Use http basic authentication.
*
* @param userName The user name.
* @param password The password.
* @return The request builder
*/
def RequestSpecification basic(String userName, String password) {
notNull userName, "userName"
notNull password, "password"
requestSpecification.authenticationScheme = new BasicAuthScheme(userName: userName, password: password)
return requestSpecification
}
/**
* Use NTLM authentication.
*
* @param userName The user name.
* @param password The password.
* @return The request builder
*/
def RequestSpecification ntlm(String userName, String password, String workstation, String domain) {
notNull userName, "userName"
notNull password, "password"
notNull workstation, "workstation"
notNull domain, "domain"
requestSpecification.authenticationScheme = new NTLMAuthScheme(userName: userName, password: password, workstation: workstation, domain: domain)
return requestSpecification
}
/**
* Use http digest authentication.
*
* @param userName The user name.
* @param password The password.
* @return The request builder
*/
def RequestSpecification digest(String userName, String password) {
notNull userName, "userName"
notNull password, "password"
requestSpecification.authenticationScheme = new BasicAuthScheme(userName: userName, password: password)
return requestSpecification
}
/**
* {@inheritDoc}
*/
def RequestSpecification certificate(String certURL, String password) {
return certificate(certURL, password, certAuthSettings())
}
/**
* {@inheritDoc}
*/
def RequestSpecification certificate(String certURL, String password, CertificateAuthSettings settings) {
notNull certURL, "certURL"
notNull password, "password"
notNull settings, CertificateAuthSettings.class
requestSpecification.authenticationScheme = new CertAuthScheme(
keystoreType: settings.keyStoreType, keyStore: settings.keyStore,
pathToTrustStore: certURL, trustStorePassword: password, trustStoreType: settings.trustStoreType, trustStore: settings.trustStore,
port: settings.port, x509HostnameVerifier: settings.getX509HostnameVerifier(),
sslSocketFactory: settings.getSSLSocketFactory(),)
return requestSpecification
}
/**
* {@inheritDoc}
*/
def RequestSpecification oauth(String consumerKey, String consumerSecret, String accessToken, String secretToken) {
notNull consumerKey, "consumerKey"
notNull consumerSecret, "consumerSecret"
notNull accessToken, "accessToken"
notNull secretToken, "secretToken"
requestSpecification.authenticationScheme = new OAuthScheme(consumerKey: consumerKey, consumerSecret: consumerSecret, accessToken: accessToken, secretToken: secretToken)
return requestSpecification
}
/**
* Excerpt from the HttpBuilder docs:
* OAuth sign the request. Note that this currently does not wait for a WWW-Authenticate challenge before sending the the OAuth header.
* All requests to all domains will be signed for this instance.
* This assumes you've already generated an accessToken and secretToken for the site you're targeting.
* For More information on how to achieve this, see the Signpost documentation.
*
* @param consumerKey
* @param consumerSecret
* @param accessToken
* @param secretToken
* @param signature
* @return The request io.restassured.specification
*/
def RequestSpecification oauth(String consumerKey, String consumerSecret, String accessToken, String secretToken, OAuthSignature signature) {
notNull consumerKey, "consumerKey"
notNull consumerSecret, "consumerSecret"
notNull accessToken, "accessToken"
notNull secretToken, "secretToken"
notNull signature, "signature"
requestSpecification.authenticationScheme = new OAuthScheme(consumerKey: consumerKey, consumerSecret: consumerSecret, accessToken: accessToken, secretToken: secretToken, signature: signature)
return requestSpecification
}
/**
* {@inheritDoc}
*/
def RequestSpecification oauth2(String accessToken) {
oauth2(accessToken, OAuthSignature.HEADER)
}
/**
* {@inheritDoc}
*/
def RequestSpecification oauth2(String accessToken, OAuthSignature signature) {
notNull accessToken, "accessToken"
if (signature == OAuthSignature.HEADER) {
requestSpecification.authenticationScheme = new PreemptiveOAuth2HeaderScheme(accessToken: accessToken)
} else {
requestSpecification.authenticationScheme = new OAuth2Scheme(accessToken: accessToken, signature: signature)
}
return requestSpecification
}
def RequestSpecification none() {
requestSpecification.authenticationScheme = new ExplicitNoAuthScheme();
requestSpecification.filters.removeAll { it instanceof AuthFilter }
requestSpecification.removeHeader(AUTHORIZATION_HEADER_NAME)
return requestSpecification
}
def PreemptiveAuthSpec preemptive() {
return new PreemptiveAuthSpecImpl(requestSpecification)
}
def RequestSpecification form(String userName, String password) {
form(userName, password, null)
}
def RequestSpecification form(String userName, String password, FormAuthConfig config) {
requestSpecification.authenticationScheme = new FormAuthScheme(userName: userName, password: password, config: config)
return requestSpecification
}
}