All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jayway.restassured.internal.AuthenticationSpecificationImpl.groovy Maven / Gradle / Ivy

/*
 * Copyright 2010 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 com.jayway.restassured.internal

import com.jayway.restassured.internal.filter.FormAuthFilter
import com.jayway.restassured.specification.AuthenticationSpecification
import com.jayway.restassured.specification.PreemptiveAuthSpec
import com.jayway.restassured.specification.RequestSpecification
import com.jayway.restassured.spi.AuthFilter
import static com.jayway.restassured.assertion.AssertParameter.notNull
import com.jayway.restassured.authentication.*

/**
 * Specify an authentication scheme to use when sending a request.
 */
class AuthenticationSpecificationImpl implements AuthenticationSpecification {
  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 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
  }

  /**
   * Sets a certificate to be used for SSL authentication. See {@link java.lang.Class#getResource(String)}
   * for how to get a URL from a resource on the classpath.
   *
   * @param certURL URL to a JKS keystore where the certificate is stored.
   * @param password  password to decrypt the keystore
   * @return The request com.jayway.restassured.specification
   */
  def RequestSpecification certificate(String certURL, String password) {
    notNull certURL, "certURL"
    notNull password, "password"

    requestSpecification.authenticationScheme = new CertAuthScheme(certURL: certURL, password: password)
    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 * @return The request com.jayway.restassured.specification */ 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 } def RequestSpecification none() { requestSpecification.authenticationScheme = new ExplicitNoAuthScheme(); requestSpecification.filters.removeAll { it instanceof AuthFilter } 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(); requestSpecification.filters.removeAll { AuthFilter.class.isAssignableFrom(it.getClass()) } requestSpecification.filter(new FormAuthFilter(userName: userName,password: password, config: config)) return requestSpecification } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy