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

org.springframework.restdocs.webtestclient.WebTestClientRestDocumentationConfigurer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014-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
 *
 *      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.webtestclient;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import reactor.core.publisher.Mono;

import org.springframework.http.HttpHeaders;
import org.springframework.restdocs.RestDocumentationContext;
import org.springframework.restdocs.RestDocumentationContextProvider;
import org.springframework.restdocs.config.RestDocumentationConfigurer;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import org.springframework.web.reactive.function.client.ClientRequest;
import org.springframework.web.reactive.function.client.ClientResponse;
import org.springframework.web.reactive.function.client.ExchangeFilterFunction;
import org.springframework.web.reactive.function.client.ExchangeFunction;

/**
 * A WebFlux-specific {@link RestDocumentationConfigurer}.
 *
 * @author Andy Wilkinson
 * @since 2.0.0
 */
public class WebTestClientRestDocumentationConfigurer extends
		RestDocumentationConfigurer
		implements ExchangeFilterFunction {

	private final WebTestClientSnippetConfigurer snippetConfigurer = new WebTestClientSnippetConfigurer(this);

	private static final Map> configurations = new ConcurrentHashMap<>();

	private final WebTestClientOperationPreprocessorsConfigurer operationPreprocessorsConfigurer = new WebTestClientOperationPreprocessorsConfigurer(
			this);

	private final RestDocumentationContextProvider contextProvider;

	WebTestClientRestDocumentationConfigurer(RestDocumentationContextProvider contextProvider) {
		this.contextProvider = contextProvider;
	}

	@Override
	public WebTestClientSnippetConfigurer snippets() {
		return this.snippetConfigurer;
	}

	@Override
	public WebTestClientOperationPreprocessorsConfigurer operationPreprocessors() {
		return this.operationPreprocessorsConfigurer;
	}

	private Map createConfiguration() {
		RestDocumentationContext context = this.contextProvider.beforeOperation();
		Map configuration = new HashMap<>();
		configuration.put(RestDocumentationContext.class.getName(), context);
		apply(configuration, context);
		return configuration;
	}

	static Map retrieveConfiguration(HttpHeaders headers) {
		String requestId = headers.getFirst(WebTestClient.WEBTESTCLIENT_REQUEST_ID);
		Map configuration = configurations.remove(requestId);
		Assert.state(configuration != null, () -> "REST Docs configuration not found. Did you forget to register a "
				+ WebTestClientRestDocumentationConfigurer.class.getSimpleName() + " as a filter?");
		return configuration;
	}

	@Override
	public Mono filter(ClientRequest request, ExchangeFunction next) {
		String index = request.headers().getFirst(WebTestClient.WEBTESTCLIENT_REQUEST_ID);
		configurations.put(index, createConfiguration());
		return next.exchange(applyUriDefaults(request));
	}

	private ClientRequest applyUriDefaults(ClientRequest request) {
		URI requestUri = request.url();
		if (StringUtils.hasLength(requestUri.getHost())) {
			return request;
		}
		try {
			requestUri = new URI("http", requestUri.getUserInfo(), "localhost", 8080, requestUri.getPath(),
					requestUri.getQuery(), requestUri.getFragment());
			return ClientRequest.from(request).url(requestUri).build();
		}
		catch (URISyntaxException ex) {
			throw new IllegalStateException(ex);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy