All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.restassured.module.webtestclient.internal.WebTestClientRequestLogSpecificationImpl Maven / Gradle / Ivy
/*
* 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.module.webtestclient.internal;
import io.restassured.authentication.NoAuthScheme;
import io.restassured.config.LogConfig;
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;
import java.util.Set;
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) {
LogConfig logConfig = requestSpecification.getRestAssuredWebTestClientConfig().getLogConfig();
boolean shouldUrlEncodeRequestUri = logConfig.shouldUrlEncodeRequestUri();
Set blacklistedHeaders = logConfig.blacklistedHeaders();
requestSpecification.setRequestLoggingFilter(new RequestLoggingFilter(logDetail, prettyPrintingEnabled, printStream, shouldUrlEncodeRequestUri, blacklistedHeaders));
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, true, true
);
}
private WebTestClientRequestSpecification logWith(LogDetail logDetail, boolean prettyPrintingEnabled) {
return logWith(logDetail, prettyPrintingEnabled, getPrintStream(toRequestSpecification()));
}
}