Provide a preprocessor for modifying request and response headers

See gh-584
This commit is contained in:
Jihoon Cha
2022-03-07 18:54:34 +09:00
committed by Andy Wilkinson
parent 683686ea46
commit 768a43a61e
5 changed files with 405 additions and 0 deletions

View File

@@ -0,0 +1,155 @@
/*
* Copyright 2014-2022 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
*
* https://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 org.springframework.restdocs.operation.preprocess;
import java.net.URI;
import java.util.Arrays;
import java.util.Collections;
import java.util.regex.Pattern;
import org.junit.Test;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.restdocs.operation.OperationRequest;
import org.springframework.restdocs.operation.OperationRequestFactory;
import org.springframework.restdocs.operation.OperationResponse;
import org.springframework.restdocs.operation.OperationResponseFactory;
import org.springframework.restdocs.operation.Parameters;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link HeadersModifyingOperationPreprocessor}.
*
* @author Jihoon Cha
*/
public class HeadersModifyingOperationPreprocessorTests {
private final HeadersModifyingOperationPreprocessor preprocessor = new HeadersModifyingOperationPreprocessor();
@Test
public void addNewHeader() {
HttpHeaders headers = new HttpHeaders();
OperationPreprocessor preprocessor = this.preprocessor.add("a", "alpha");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha"));
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha"));
}
@Test
public void addValueToExistingHeader() {
HttpHeaders headers = new HttpHeaders();
headers.add("a", "apple");
OperationPreprocessor preprocessor = this.preprocessor.add("a", "alpha");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).containsEntry("a",
Arrays.asList("apple", "alpha"));
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).containsEntry("a",
Arrays.asList("apple", "alpha"));
}
@Test
public void setNewHeader() {
HttpHeaders headers = new HttpHeaders();
OperationPreprocessor preprocessor = this.preprocessor.set("a", "alpha", "avocado");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha", "avocado"));
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha", "avocado"));
}
@Test
public void setExistingHeader() {
HttpHeaders headers = new HttpHeaders();
headers.add("a", "apple");
OperationPreprocessor preprocessor = this.preprocessor.set("a", "alpha", "avocado");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha", "avocado"));
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha", "avocado"));
}
@Test
public void removeNonExistentHeader() {
HttpHeaders headers = new HttpHeaders();
OperationPreprocessor preprocessor = this.preprocessor.remove("a");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).doesNotContainKey("a");
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).doesNotContainKey("a");
}
@Test
public void removeHeader() {
HttpHeaders headers = new HttpHeaders();
headers.add("a", "apple");
OperationPreprocessor preprocessor = this.preprocessor.remove("a");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).doesNotContainKey("a");
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).doesNotContainKey("a");
}
@Test
public void removeHeaderValueForNonExistentHeader() {
HttpHeaders headers = new HttpHeaders();
OperationPreprocessor preprocessor = this.preprocessor.remove("a", "apple");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).doesNotContainKey("a");
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).doesNotContainKey("a");
}
@Test
public void removeHeaderValueWithMultipleValues() {
HttpHeaders headers = new HttpHeaders();
headers.add("a", "apple");
headers.add("a", "alpha");
OperationPreprocessor preprocessor = this.preprocessor.remove("a", "apple");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha"));
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).containsEntry("a",
Arrays.asList("alpha"));
}
@Test
public void removeHeaderValueWithSingleValueRemovesEntryEntirely() {
HttpHeaders headers = new HttpHeaders();
headers.add("a", "apple");
OperationPreprocessor preprocessor = this.preprocessor.remove("a", "apple");
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders()).doesNotContainKey("a");
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders()).doesNotContainKey("a");
}
@Test
public void removeHeadersByNamePattern() {
HttpHeaders headers = new HttpHeaders();
headers.add("apple", "apple");
headers.add("alpha", "alpha");
headers.add("avocado", "avocado");
headers.add("bravo", "bravo");
OperationPreprocessor preprocessor = this.preprocessor.remove(Pattern.compile("^a.*"));
assertThat(preprocessor.preprocess(createRequest(headers)).getHeaders().size()).isEqualTo(2);
assertThat(preprocessor.preprocess(createResponse(headers)).getHeaders().size()).isEqualTo(1);
}
private OperationRequest createRequest(HttpHeaders headers) {
return new OperationRequestFactory().create(URI.create("http://localhost:8080"), HttpMethod.GET, new byte[0],
headers, new Parameters(), Collections.emptyList());
}
private OperationResponse createResponse(HttpHeaders headers) {
return new OperationResponseFactory().create(HttpStatus.OK.value(), headers, new byte[0]);
}
}