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

com.github.tomakehurst.wiremock.recording.LoggedResponseDefinitionTransformer Maven / Gradle / Ivy

There is a newer version: 3.9.1
Show newest version
/*
 * Copyright (C) 2017-2023 Thomas Akehurst
 *
 * 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.github.tomakehurst.wiremock.recording;

import static com.github.tomakehurst.wiremock.common.ContentTypes.*;

import com.github.tomakehurst.wiremock.client.ResponseDefinitionBuilder;
import com.github.tomakehurst.wiremock.common.Gzip;
import com.github.tomakehurst.wiremock.common.Strings;
import com.github.tomakehurst.wiremock.http.*;
import java.nio.charset.Charset;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;

/**
 * Transforms a LoggedResponse into a ResponseDefinition, which will be used to construct a
 * StubMapping
 */
public class LoggedResponseDefinitionTransformer
    implements Function {

  private static final List EXCLUDED_HEADERS =
      List.of(
          CaseInsensitiveKey.from(CONTENT_ENCODING),
          CaseInsensitiveKey.from(CONTENT_LENGTH),
          CaseInsensitiveKey.from(TRANSFER_ENCODING));

  @Override
  public ResponseDefinition apply(LoggedResponse response) {
    final ResponseDefinitionBuilder responseDefinitionBuilder =
        new ResponseDefinitionBuilder().withStatus(response.getStatus());

    if (response.getBody() != null && response.getBody().length > 0) {

      byte[] body = bodyDecompressedIfRequired(response);
      String mimeType = response.getMimeType();
      Charset charset = response.getCharset();
      if (determineIsTextFromMimeType(mimeType)) {
        responseDefinitionBuilder.withBody(Strings.stringFromBytes(body, charset));
      } else {
        responseDefinitionBuilder.withBody(body);
      }
    }

    if (response.getHeaders() != null) {
      responseDefinitionBuilder.withHeaders(withoutContentEncodingAndContentLength(response));
    }

    return responseDefinitionBuilder.build();
  }

  private byte[] bodyDecompressedIfRequired(LoggedResponse response) {
    if (response.getHeaders() != null
        && response.getHeaders().getHeader(CONTENT_ENCODING).containsValue("gzip")) {
      return Gzip.unGzip(response.getBody());
    }
    return response.getBody();
  }

  private HttpHeaders withoutContentEncodingAndContentLength(LoggedResponse response) {
    return new HttpHeaders(
        response.getHeaders().all().stream()
            .filter(header -> !EXCLUDED_HEADERS.contains(header.caseInsensitiveKey()))
            .collect(Collectors.toList()));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy