How to use CarinaRequestBodyLoggingFilter method of com.qaprosoft.carina.core.foundation.api.log.CarinaRequestBodyLoggingFilter class

Best Carina code snippet using com.qaprosoft.carina.core.foundation.api.log.CarinaRequestBodyLoggingFilter.CarinaRequestBodyLoggingFilter

Source:AbstractApiMethod.java Github

copy

Full Screen

...44import com.qaprosoft.carina.core.foundation.api.http.ContentTypeEnum;45import com.qaprosoft.carina.core.foundation.api.http.HttpClient;46import com.qaprosoft.carina.core.foundation.api.http.HttpMethodType;47import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;48import com.qaprosoft.carina.core.foundation.api.log.CarinaRequestBodyLoggingFilter;49import com.qaprosoft.carina.core.foundation.api.log.CarinaResponseBodyLoggingFilter;50import com.qaprosoft.carina.core.foundation.api.log.LoggingOutputStream;51import com.qaprosoft.carina.core.foundation.api.ssl.NullHostnameVerifier;52import com.qaprosoft.carina.core.foundation.api.ssl.NullX509TrustManager;53import com.qaprosoft.carina.core.foundation.api.ssl.SSLContextBuilder;54import com.qaprosoft.carina.core.foundation.utils.Configuration;55import com.qaprosoft.carina.core.foundation.utils.Configuration.Parameter;56import com.qaprosoft.carina.core.foundation.utils.R;57import io.restassured.RestAssured;58import io.restassured.config.RestAssuredConfig;59import io.restassured.config.SSLConfig;60import io.restassured.filter.log.LogDetail;61import io.restassured.filter.log.RequestLoggingFilter;62import io.restassured.filter.log.ResponseLoggingFilter;63import io.restassured.response.Response;64import io.restassured.specification.RequestSpecification;65public abstract class AbstractApiMethod extends HttpClient {66 private static final Logger LOGGER = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());67 private StringBuilder bodyContent = null;68 protected String methodPath = null;69 protected HttpMethodType methodType = null;70 protected Object response;71 public RequestSpecification request;72 protected ContentTypeEnum contentTypeEnum;73 private boolean logRequest = Configuration.getBoolean(Parameter.LOG_ALL_JSON);74 private boolean logResponse = Configuration.getBoolean(Parameter.LOG_ALL_JSON);75 private boolean ignoreSSL = Configuration.getBoolean(Parameter.IGNORE_SSL);76 public AbstractApiMethod() {77 init(getClass());78 bodyContent = new StringBuilder();79 request = given();80 initContentTypeFromAnnotation();81 replaceUrlPlaceholders();82 }83 @SuppressWarnings({ "rawtypes" })84 private void init(Class clazz) {85 Endpoint e = this.getClass().getAnnotation(Endpoint.class);86 if (e != null) {87 methodType = e.methodType();88 methodPath = e.url();89 return;90 }91 String typePath = R.API.get(clazz.getSimpleName());92 if (typePath == null) {93 throw new RuntimeException("Method type and path are not specified for: " + clazz.getSimpleName());94 }95 if (typePath.contains(":")) {96 methodType = HttpMethodType.valueOf(typePath.split(":")[0]);97 methodPath = StringUtils.substringAfter(typePath, methodType + ":");98 } else {99 methodType = HttpMethodType.valueOf(typePath);100 }101 }102 private void initContentTypeFromAnnotation() {103 ContentType contentTypeA = this.getClass().getAnnotation(ContentType.class);104 if (contentTypeA == null) {105 contentTypeEnum = ContentTypeEnum.JSON;106 this.request.contentType(ContentTypeEnum.JSON.getStringValues()[0]);107 return;108 }109 if (ArrayUtils.contains(ContentTypeEnum.JSON.getStringValues(), contentTypeA.type())) {110 contentTypeEnum = ContentTypeEnum.JSON;111 } else if (ArrayUtils.contains(ContentTypeEnum.XML.getStringValues(), contentTypeA.type())) {112 contentTypeEnum = ContentTypeEnum.XML;113 } else {114 contentTypeEnum = ContentTypeEnum.NA;115 }116 this.request.contentType(contentTypeA.type());117 }118 private void replaceUrlPlaceholders() {119 final String envParam = "config.env.";120 final String configParam = "config.";121 List<String> params = getParamsFromUrl();122 for (String param : params) {123 if (param.startsWith(envParam)) {124 String newParam = StringUtils.substringAfter(param, envParam);125 replaceUrlPlaceholder(param, Configuration.getEnvArg(newParam));126 } else if (param.startsWith(configParam)) {127 String newParam = StringUtils.substringAfter(param, configParam);128 replaceUrlPlaceholder(param, R.CONFIG.get(newParam));129 }130 }131 }132 private List<String> getParamsFromUrl() {133 List<String> params = new ArrayList<>();134 String path = methodPath;135 while (path.contains("{")) {136 String param = StringUtils.substringBetween(path, "${", "}");137 params.add(param);138 path = StringUtils.substringAfter(path, "}");139 }140 return params;141 }142 public void setHeaders(String... headerKeyValues) {143 for (String headerKeyValue : headerKeyValues) {144 String key = headerKeyValue.split("=", 2)[0];145 String value = headerKeyValue.split("=", 2)[1];146 request.header(key, value);147 }148 }149 public void addUrlParameter(String key, String value) {150 if (value != null) {151 request.queryParam(key, value);152 }153 }154 public void addParameter(String key, String value) {155 request.param(key, value.replace(" ", "%20"));156 }157 public void addParameterIfNotNull(String key, String value) {158 if (value != null) {159 this.addParameter(key, value);160 }161 }162 public void addBodyParameter(String key, Object value) {163 if (bodyContent.length() != 0) {164 bodyContent.append("&");165 }166 bodyContent.append(key + "=" + value);167 }168 protected void addBodyParameterIfNotNull(String key, Object value) {169 if (value != null) {170 addBodyParameter(key, value);171 }172 }173 public void addCookie(String key, String value) {174 request.given().cookie(key, value);175 }176 public void addCookies(Map<String, String> cookies) {177 request.given().cookies(cookies);178 }179 public void replaceUrlPlaceholder(String placeholder, String value) {180 if (value != null) {181 methodPath = methodPath.replace("${" + placeholder + "}", value);182 } else {183 methodPath = methodPath.replace("${" + placeholder + "}", "");184 methodPath = StringUtils.removeEnd(methodPath, "/");185 }186 }187 public void expectResponseStatus(HttpResponseStatusType status) {188 request.expect().statusCode(status.getCode());189 request.expect().statusLine(Matchers.containsString(status.getMessage()));190 }191 public <T> void expectResponseContains(Matcher<T> key, Matcher<T> value) {192 request.expect().body(key, value);193 }194 public void expectValueByXpath(String xPath, String value) {195 request.expect().body(Matchers.hasXPath(xPath), Matchers.containsString(value));196 }197 public void expectValueByXpath(String xPath, String value1, String value2) {198 request.expect().body(Matchers.hasXPath(xPath), Matchers.anyOf(Matchers.containsString(value1), Matchers.containsString(value2)));199 }200 public <T> void expectResponseContains(Matcher<T> value) {201 request.expect().body(value);202 }203 public <T> void expectResponseContains(String key, Matcher<T> value) {204 request.expect().body(key, value);205 }206 public <T> void expectResponseContainsXpath(String xPath) {207 request.expect().body(HasXPath.hasXPath(xPath));208 }209 private void initLogging(PrintStream ps) {210 if (logRequest) {211 HideRequestHeadersInLogs hideHeaders = this.getClass().getAnnotation(HideRequestHeadersInLogs.class);212 RequestLoggingFilter fHeaders = new RequestLoggingFilter(LogDetail.HEADERS, true, ps, true,213 hideHeaders == null ? Collections.emptySet() : new HashSet<String>(Arrays.asList(hideHeaders.headers())));214 RequestLoggingFilter fCookies = new RequestLoggingFilter(LogDetail.COOKIES, ps);215 RequestLoggingFilter fParams = new RequestLoggingFilter(LogDetail.PARAMS, ps);216 RequestLoggingFilter fMethod = new RequestLoggingFilter(LogDetail.METHOD, ps);217 RequestLoggingFilter fUri = new RequestLoggingFilter(LogDetail.URI, ps);218 RequestLoggingFilter fBody;219 HideRequestBodyPartsInLogs hideRqBody = this.getClass().getAnnotation(HideRequestBodyPartsInLogs.class);220 if (hideRqBody != null) {221 fBody = new CarinaRequestBodyLoggingFilter(true, ps, new HashSet<String>(Arrays.asList(hideRqBody.paths())), contentTypeEnum);222 } else {223 fBody = new RequestLoggingFilter(LogDetail.BODY, ps);224 }225 request.filters(fMethod, fUri, fParams, fCookies, fHeaders, fBody);226 }227 if (logResponse) {228 ResponseLoggingFilter fStatus = new ResponseLoggingFilter(LogDetail.STATUS, ps);229 ResponseLoggingFilter fHeaders = new ResponseLoggingFilter(LogDetail.HEADERS, ps);230 ResponseLoggingFilter fCookies = new ResponseLoggingFilter(LogDetail.COOKIES, ps);231 ResponseLoggingFilter fBody;232 HideResponseBodyPartsInLogs a = this.getClass().getAnnotation(HideResponseBodyPartsInLogs.class);233 if (a != null) {234 fBody = new CarinaResponseBodyLoggingFilter(true, ps, Matchers.any(Integer.class), new HashSet<String>(Arrays.asList(a.paths())),235 contentTypeEnum);...

Full Screen

Full Screen

Source:CarinaRequestBodyLoggingFilter.java Github

copy

Full Screen

...23import io.restassured.filter.log.RequestLoggingFilter;24import io.restassured.response.Response;25import io.restassured.specification.FilterableRequestSpecification;26import io.restassured.specification.FilterableResponseSpecification;27public class CarinaRequestBodyLoggingFilter extends RequestLoggingFilter {28 private final PrintStream stream;29 private final boolean shouldPrettyPrint;30 private final Set<String> hiddenPaths;31 private final ContentTypeEnum contentType;32 public CarinaRequestBodyLoggingFilter(boolean shouldPrettyPrint, PrintStream stream, Set<String> hiddenPaths, ContentTypeEnum contentType) {33 Validate.notNull(stream, "Print stream cannot be null");34 this.stream = stream;35 this.shouldPrettyPrint = shouldPrettyPrint;36 this.hiddenPaths = new HashSet<>(hiddenPaths);37 this.contentType = contentType;38 }39 @Override40 public Response filter(FilterableRequestSpecification requestSpec, FilterableResponseSpecification responseSpec, FilterContext ctx) {41 CarinaBodyPrinter.printRequestBody(requestSpec, stream, shouldPrettyPrint, hiddenPaths, contentType);42 return ctx.next(requestSpec, responseSpec);43 }44}...

Full Screen

Full Screen

CarinaRequestBodyLoggingFilter

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.core.foundation.api.log;2import java.io.IOException;3import org.apache.log4j.Logger;4import org.apache.log4j.Priority;5import org.apache.log4j.spi.LoggingEvent;6import com.fasterxml.jackson.core.JsonProcessingException;7import com.fasterxml.jackson.databind.ObjectMapper;8import com.qaprosoft.carina.core.foundation.api.AbstractApiMethodV2;9import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;10public class CarinaRequestBodyLoggingFilter extends CarinaLoggingFilter {11 private static final Logger LOGGER = Logger.getLogger(CarinaRequestBodyLoggingFilter.class);12 private static final String REQUEST_BODY_TEMPLATE = "%s request body: %s";13 public void log(AbstractApiMethodV2 apiMethod, HttpResponseStatusType status) {14 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);15 log(loggingEvent);16 }17 public void log(AbstractApiMethodV2 apiMethod, String response) {18 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);19 log(loggingEvent);20 }21 public void log(AbstractApiMethodV2 apiMethod, Exception e) {22 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);23 log(loggingEvent);24 }25 public void log(AbstractApiMethodV2 apiMethod, String response, Exception e) {26 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);27 log(loggingEvent);28 }29 public void log(AbstractApiMethodV2 apiMethod, Object response) {30 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);31 log(loggingEvent);32 }33 public void log(AbstractApiMethodV2 apiMethod, Object response, Exception e) {34 LoggingEvent loggingEvent = new LoggingEvent("", LOGGER, Priority.INFO, String.format(REQUEST_BODY_TEMPLATE, apiMethod.getName(), apiMethod.getRequestBody()), null);

Full Screen

Full Screen

CarinaRequestBodyLoggingFilter

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.core.foundation.api.log;2import java.io.ByteArrayOutputStream;3import java.io.IOException;4import java.io.InputStream;5import java.nio.charset.Charset;6import java.util.List;7import java.util.Map;8import org.apache.commons.io.IOUtils;9import org.apache.log4j.Logger;10import org.apache.log4j.MDC;11import org.apache.log4j.NDC;12import org.apache.log4j.spi.LoggingEvent;13import org.apache.log4j.spi.ThrowableInformation;14import com.qaprosoft.carina.core.foundation.api.AbstractApiMethodV2;15import com.qaprosoft.carina.core.foundation.utils.Configuration;16import com.qaprosoft.carina.core.foundation.utils.Configuration.Parameter;17public class CarinaRequestBodyLoggingFilter extends CarinaLoggingFilter {18 private static final Logger LOGGER = Logger.getLogger(CarinaRequestBodyLoggingFilter.class);19 public void doFilter(LoggingEvent event) {20 if (event.getThrowableInformation() != null) {21 ThrowableInformation throwableInformation = event.getThrowableInformation();22 Throwable throwable = throwableInformation.getThrowable();23 if (throwable instanceof AbstractApiMethodV2) {24 AbstractApiMethodV2 apiMethod = (AbstractApiMethodV2) throwable;25 if (apiMethod.getRequestEntity() != null) {26 try {27 String requestBody = IOUtils.toString(apiMethod.getRequestEntity().getContent(), Charset.defaultCharset());28 if (requestBody != null) {29 MDC.put("requestBody", requestBody);30 }31 } catch (IOException e) {32 LOGGER.error("Unable to get request body!", e);33 }34 }35 }36 }37 super.doFilter(event);38 }39}40package com.qaprosoft.carina.core.foundation.api.log;41import java.io.ByteArrayOutputStream;42import java.io.IOException;43import java.io.InputStream;44import java.nio.charset.Charset;45import java.util.List;46import java.util.Map;47import org.apache.commons.io.IOUtils;48import org.apache.log4j.Logger;49import org.apache.log4j.MDC;50import org.apache.log4j.NDC;51import org.apache.log4j.spi.LoggingEvent;52import org.apache.log4j.spi.ThrowableInformation;53import com.qaprosoft.carina.core.foundation.api.AbstractApiMethodV2;54import com.qaprosoft.carina

Full Screen

Full Screen

CarinaRequestBodyLoggingFilter

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo.api;2import org.apache.log4j.Logger;3import org.testng.Assert;4import org.testng.annotations.Test;5import com.qaprosoft.carina.core.foundation.api.AbstractApiMethodV2;6import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;7import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Status;8import com.qaprosoft.carina.core.foundation.utils.Configuration;9import com.qaprosoft.carina.core.foundation.utils.R;10import com.qaprosoft.carina.core.foundation.utils.ownership.MethodOwner;11public class PostUserMethodTest extends AbstractApiMethodV2 {12 private static final Logger LOGGER = Logger.getLogger(PostUserMethodTest.class);13 @MethodOwner(owner = "qpsdemo")14 public void testPostUser() {15 String url = Configuration.getEnvArg("api_url");16 PostUserMethod postUserMethod = new PostUserMethod();17 postUserMethod.expectResponseStatus(HttpResponseStatusType.Status.CREATED);18 postUserMethod.callAPI();19 postUserMethod.validateResponseAgainstJSONSchema("post_user_rs.json");20 Assert.assertEquals(postUserMethod.getStatusCode(), Status.CREATED.getStatusCode(), "Status code is not 201!");21 Assert.assertEquals(postUserMethod.getObject().get("id").toString(), R.TESTDATA.get("api_user_id"),22 "User id is not as expected!");23 Assert.assertEquals(postUserMethod.getObject().get("name").toString(), R.TESTDATA.get("api_user_name"),24 "User name is not as expected!");25 Assert.assertEquals(postUserMethod.getObject().get("job").toString(), R.TESTDATA.get("api_user_job"),26 "User job is not as expected!");27 }28}29package com.qaprosoft.carina.demo.api;30import org.apache.log4j.Logger;31import org.testng.Assert;32import org.testng.annotations.Test;33import com.qaprosoft.carina.core.foundation.api.AbstractApiMethodV2;34import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;35import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Status;36import com.qaprosoft.carina.core.foundation.utils.Configuration;37import com.qaprosoft.carina.core.foundation.utils.R

Full Screen

Full Screen

CarinaRequestBodyLoggingFilter

Using AI Code Generation

copy

Full Screen

1package com.carina.api;2import java.io.IOException;3import java.util.ArrayList;4import java.util.List;5import org.apache.http.HttpEntity;6import org.apache.http.HttpHost;7import org.apache.http.HttpRequest;8import org.apache.http.HttpResponse;9import org.apache.http.client.ClientProtocolException;10import org.apache.http.client.ResponseHandler;11import org.apache.http.client.methods.HttpUriRequest;12import org.apache.http.client.protocol.HttpClientContext;13import org.apache.http.entity.ContentType;14import org.apache.http.impl.client.CloseableHttpClient;15import org.apache.http.impl.client.HttpClientBuilder;16import org.apache.http.impl.client.HttpClients;17import org.apache.http.impl.conn.DefaultProxyRoutePlanner;18import org.apache.http.impl.conn.SystemDefaultRoutePlanner;19import org.apache.http.message.BasicHeader;20import org.apache.http.protocol.HttpContext;21import org.apache.http.util.EntityUtils;22import org.testng.Assert;23import org.testng.annotations.Test;24import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;25import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Family;26import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Series;27import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.StandardCode;28import com.qaprosoft.carina.core.foundation.api.http.IResponse;29import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;30import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Family;31import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Series;32import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.StandardCode;33import com.qaprosoft.carina.core.foundation.api.http.IResponse;34import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;35import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Family;36import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Series;37import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.StandardCode;38import com.qaprosoft.carina.core.foundation.api.http.IResponse;39import com.qaprosoft.carina.core.foundation.api.log.CarinaRequestBodyLoggingFilter;40import com.qaprosoft.carina.core.foundation.api.log.CarinaResponseBodyLoggingFilter;41import com.qaprosoft.carina.core.foundation.api.log.CarinaResponseLoggingFilter;42import com.qaprosoft.carina.core.foundation.api.log.CarinaResponseLoggingFilter;

Full Screen

Full Screen

CarinaRequestBodyLoggingFilter

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo;2import org.apache.log4j.Logger;3import org.testng.Assert;4import org.testng.annotations.Test;5import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType;6import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Family;7import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Series;8import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Type;9import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Value;10import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Values;11import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Version;12import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Versions;13import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Warning;14import com.qaprosoft.carina.core.foundation.api.http.HttpResponseStatusType.Warnings;15import com.qaprosoft.carina.core.foundation.api.log.CarinaRequestBodyLoggingFilter;16import io.restassured.response.Response;17{18 private static final Logger LOGGER = Logger.getLogger(CarinaRequestBodyLoggingFilterTest.class);19 public void testCarinaRequestBodyLoggingFilter()20 {21 CarinaRequestBodyLoggingFilter carinaRequestBodyLoggingFilter = new CarinaRequestBodyLoggingFilter();22 String requestBody = carinaRequestBodyLoggingFilter.getRequestBody();23 LOGGER.info("requestBody: " + requestBody);24 Assert.assertNotNull(requestBody);25 Assert.assertFalse(requestBody.isEmpty());26 }27}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Carina automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in CarinaRequestBodyLoggingFilter

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful