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

io.restassured.module.webtestclient.internal.WebTestClientRequestLogSpecificationImpl Maven / Gradle / Ivy

There is a newer version: 5.5.2
Show newest version
/*
 * Copyright 2018 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.module.webtestclient.internal;

import io.restassured.authentication.NoAuthScheme;
import io.restassured.filter.Filter;
import io.restassured.filter.log.LogDetail;
import io.restassured.filter.log.RequestLoggingFilter;
import io.restassured.internal.LogSpecificationImpl;
import io.restassured.internal.RequestSpecificationImpl;
import io.restassured.module.webtestclient.specification.WebTestClientRequestLogSpecification;
import io.restassured.module.webtestclient.specification.WebTestClientRequestSpecification;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.util.Collections;

public class WebTestClientRequestLogSpecificationImpl extends LogSpecificationImpl implements WebTestClientRequestLogSpecification {

	private final WebTestClientRequestSpecificationImpl requestSpecification;

	public WebTestClientRequestLogSpecificationImpl(WebTestClientRequestSpecificationImpl requestSpecification) {
		this.requestSpecification = requestSpecification;
	}

	@Override
	public WebTestClientRequestSpecification body() {
		return body(shouldPrettyPrint(toRequestSpecification()));
	}

	@Override
	public WebTestClientRequestSpecification body(boolean shouldPrettyPrint) {
		return logWith(LogDetail.BODY, shouldPrettyPrint);
	}

	@Override
	public WebTestClientRequestSpecification all() {
		return all(shouldPrettyPrint(toRequestSpecification()));
	}

	@Override
	public WebTestClientRequestSpecification all(boolean shouldPrettyPrint) {
		return logWith(LogDetail.ALL, shouldPrettyPrint);
	}

	@Override
	public WebTestClientRequestSpecification everything() {
		return all();
	}

	@Override
	public WebTestClientRequestSpecification everything(boolean shouldPrettyPrint) {
		return all(shouldPrettyPrint);
	}

	@Override
	public WebTestClientRequestSpecification headers() {
		return logWith(LogDetail.HEADERS);
	}

	@Override
	public WebTestClientRequestSpecification cookies() {
		return logWith(LogDetail.COOKIES);
	}

	@Override
	public WebTestClientRequestSpecification ifValidationFails() {
		return ifValidationFails(LogDetail.ALL);
	}

	@Override
	public WebTestClientRequestSpecification ifValidationFails(LogDetail logDetail) {
		return ifValidationFails(logDetail, shouldPrettyPrint(toRequestSpecification()));
	}

	@Override
	public WebTestClientRequestSpecification ifValidationFails(LogDetail logDetail, boolean shouldPrettyPrint) {
		ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
		PrintStream printStream = new PrintStream(byteArrayOutputStream);
		requestSpecification.getLogRepository().registerRequestLog(byteArrayOutputStream);
		return logWith(logDetail, shouldPrettyPrint, printStream);
	}

	public WebTestClientRequestSpecification params() {
		return logWith(LogDetail.PARAMS);
	}

	private WebTestClientRequestSpecification logWith(LogDetail logDetail, boolean prettyPrintingEnabled,
													  PrintStream printStream) {
		boolean shouldUrlEncodeRequestUri = requestSpecification.getRestAssuredWebTestClientConfig()
				.getLogConfig().shouldUrlEncodeRequestUri();
		requestSpecification.setRequestLoggingFilter(new RequestLoggingFilter(logDetail, prettyPrintingEnabled, printStream, shouldUrlEncodeRequestUri));
		return requestSpecification;
	}

	private WebTestClientRequestSpecification logWith(LogDetail logDetail) {
		RequestSpecificationImpl reqSpec = toRequestSpecification();
		return logWith(logDetail, shouldPrettyPrint(reqSpec));
	}

	private RequestSpecificationImpl toRequestSpecification() {
		return new RequestSpecificationImpl("", 8080, "", new NoAuthScheme(),
				Collections.emptyList(), null, true,
				requestSpecification.getRestAssuredConfig(), requestSpecification.getLogRepository(), null
		);
	}

	private WebTestClientRequestSpecification logWith(LogDetail logDetail, boolean prettyPrintingEnabled) {
		return logWith(logDetail, prettyPrintingEnabled, getPrintStream(toRequestSpecification()));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy