io.restassured.module.webtestclient.internal.StandaloneWebTestClientFactory 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 org.springframework.context.ApplicationContext;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.test.web.reactive.server.WebTestClientConfigurer;
import org.springframework.web.reactive.function.client.ExchangeFilterFunction;
import org.springframework.web.reactive.function.server.RouterFunction;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import static java.util.stream.Collectors.partitioningBy;
import static java.util.stream.Collectors.toList;
public class StandaloneWebTestClientFactory {
public static WebTestClientFactory of(RouterFunction routerFunction, Object[] configurersOrExchangeFilterFunctions) {
WebTestClient.Builder builder = WebTestClient.bindToRouterFunction(routerFunction)
.configureClient();
applyConfigurersAndFilter(configurersOrExchangeFilterFunctions, builder);
return new BuilderBasedWebTestClientFactory(builder);
}
public static WebTestClientFactory of(Object[] controllersOrConfigurersOrExchangeFilterFunctions) {
Map> partitionedByConfigurer = Arrays.stream(controllersOrConfigurersOrExchangeFilterFunctions)
.collect(partitioningBy(WebTestClientConfigurer.class::isInstance));
List