/*
 * Copyright 2012-2020 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.boot.test.autoconfigure.web.reactive;

import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;

import com.fasterxml.jackson.databind.Module;

import org.springframework.boot.context.TypeExcludeFilter;
import org.springframework.boot.jackson.JsonComponent;
import org.springframework.boot.test.autoconfigure.filter.StandardAnnotationCustomizableTypeExcludeFilter;
import org.springframework.core.convert.converter.Converter;
import org.springframework.core.convert.converter.GenericConverter;
import org.springframework.stereotype.Controller;
import org.springframework.util.ObjectUtils;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.reactive.config.WebFluxConfigurer;
import org.springframework.web.server.WebExceptionHandler;
import org.springframework.web.server.WebFilter;

Author:Stephane Nicoll
Since:2.2.1
/** * {@link TypeExcludeFilter} for {@link WebFluxTest @WebFluxTest}. * * @author Stephane Nicoll * @since 2.2.1 */
public final class WebFluxTypeExcludeFilter extends StandardAnnotationCustomizableTypeExcludeFilter<WebFluxTest> { private static final Class<?>[] NO_CONTROLLERS = {}; private static final Set<Class<?>> DEFAULT_INCLUDES; static { Set<Class<?>> includes = new LinkedHashSet<>(); includes.add(ControllerAdvice.class); includes.add(JsonComponent.class); includes.add(WebFluxConfigurer.class); includes.add(Converter.class); includes.add(GenericConverter.class); includes.add(WebExceptionHandler.class); includes.add(WebFilter.class); try { includes.add(Module.class); } catch (Throwable ex) { } DEFAULT_INCLUDES = Collections.unmodifiableSet(includes); } private static final Set<Class<?>> DEFAULT_INCLUDES_AND_CONTROLLER; static { Set<Class<?>> includes = new LinkedHashSet<>(DEFAULT_INCLUDES); includes.add(Controller.class); DEFAULT_INCLUDES_AND_CONTROLLER = Collections.unmodifiableSet(includes); } private final Class<?>[] controllers; WebFluxTypeExcludeFilter(Class<?> testClass) { super(testClass); this.controllers = getAnnotation().getValue("controllers", Class[].class).orElse(NO_CONTROLLERS); } @Override protected Set<Class<?>> getDefaultIncludes() { if (ObjectUtils.isEmpty(this.controllers)) { return DEFAULT_INCLUDES_AND_CONTROLLER; } return DEFAULT_INCLUDES; } @Override protected Set<Class<?>> getComponentIncludes() { return new LinkedHashSet<>(Arrays.asList(this.controllers)); } }