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

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

There is a newer version: 2.9.0
Show newest version
/*
 * Copyright 2013 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.filter.log.LogDetail
import com.jayway.restassured.filter.log.ResponseLoggingFilter
import com.jayway.restassured.specification.ResponseLogSpecification
import com.jayway.restassured.specification.ResponseSpecification
import org.hamcrest.Matcher

import static org.hamcrest.Matchers.equalTo
import static org.hamcrest.Matchers.greaterThanOrEqualTo

class ResponseLogSpecificationImpl extends LogSpecificationImpl implements ResponseLogSpecification {
  private ResponseSpecification responseSpecification

  ResponseSpecification body() {
    body(shouldPrettyPrint())
  }

  ResponseSpecification body(boolean shouldPrettyPrint) {
    return logWith(LogDetail.BODY, shouldPrettyPrint)
  }

  ResponseSpecification all() {
    all(shouldPrettyPrint())
  }

  ResponseSpecification all(boolean shouldPrettyPrint) {
    return logWith(LogDetail.ALL, shouldPrettyPrint)
  }

  ResponseSpecification everything() {
    all()
  }

  ResponseSpecification everything(boolean shouldPrettyPrint) {
    all(shouldPrettyPrint);
  }

  ResponseSpecification headers() {
    logWith(LogDetail.HEADERS)
  }

  ResponseSpecification cookies() {
    logWith(LogDetail.COOKIES)
  }

  ResponseSpecification status() {
    logWith(LogDetail.STATUS)
  }

  ResponseSpecification ifError() {
    logWith(new ResponseLoggingFilter(getPrintStream(), greaterThanOrEqualTo(400)))
  }

  ResponseSpecification ifStatusCodeIsEqualTo(int statusCode) {
    logWith(new ResponseLoggingFilter(getPrintStream(), equalTo(statusCode)))
  }

  ResponseSpecification ifStatusCodeMatches(Matcher matcher) {
    logWith(new ResponseLoggingFilter(getPrintStream(), matcher))
  }

  private def logWith(LogDetail logDetail) {
    logWith(new ResponseLoggingFilter(logDetail, getPrintStream()))
  }

  private def logWith(LogDetail logDetail, boolean prettyPrintingEnabled) {
    logWith(new ResponseLoggingFilter(logDetail, prettyPrintingEnabled, getPrintStream()))
  }

  private def logWith(ResponseLoggingFilter filter) {
    responseSpecification.request().filter(filter)
    responseSpecification
  }

  private def getPrintStream() {
    super.getPrintStream(responseSpecification.request())
  }

  private def shouldPrettyPrint() {
    super.shouldPrettyPrint(responseSpecification.request())
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy