/* * Copyright 2002-2017 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 org.springframework.web.reactive.result.method.annotation; import java.lang.reflect.Method; import org.junit.Before; import org.junit.Test; import reactor.core.publisher.Mono; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.core.MethodParameter; import org.springframework.core.ReactiveAdapterRegistry; import org.springframework.mock.http.server.reactive.test.MockServerHttpRequest; import org.springframework.mock.http.server.reactive.test.MockServerWebExchange; import org.springframework.util.ReflectionUtils; import org.springframework.web.reactive.BindingContext; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; /** * Unit tests for {@link ExpressionValueMethodArgumentResolver}. * * @author Rossen Stoyanchev */ public class ExpressionValueMethodArgumentResolverTests { private ExpressionValueMethodArgumentResolver resolver; private final MockServerWebExchange exchange = MockServerHttpRequest.get("/").toExchange(); private MethodParameter paramSystemProperty; private MethodParameter paramNotSupported; private MethodParameter paramAlsoNotSupported; @Before public void setup() throws Exception { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); context.refresh(); ReactiveAdapterRegistry adapterRegistry = new ReactiveAdapterRegistry(); this.resolver = new ExpressionValueMethodArgumentResolver(context.getBeanFactory(), adapterRegistry); Method method = ReflectionUtils.findMethod(getClass(), "params", (Class<?>[]) null); this.paramSystemProperty = new MethodParameter(method, 0); this.paramNotSupported = new MethodParameter(method, 1); this.paramAlsoNotSupported = new MethodParameter(method, 2); } @Test public void supportsParameter() throws Exception { assertTrue(this.resolver.supportsParameter(this.paramSystemProperty)); } @Test public void doesNotSupport() throws Exception { assertFalse(this.resolver.supportsParameter(this.paramNotSupported)); try { this.resolver.supportsParameter(this.paramAlsoNotSupported); fail(); } catch (IllegalStateException ex) { assertTrue("Unexpected error message:\n" + ex.getMessage(), ex.getMessage().startsWith( "ExpressionValueMethodArgumentResolver doesn't support reactive type wrapper")); } } @Test public void resolveSystemProperty() throws Exception { System.setProperty("systemProperty", "22"); try { Mono<Object> mono = this.resolver.resolveArgument( this.paramSystemProperty, new BindingContext(), this.exchange); Object value = mono.block(); assertEquals(22, value); } finally { System.clearProperty("systemProperty"); } } // TODO: test with expression for ServerWebExchange @SuppressWarnings("unused") public void params( @Value("#{systemProperties.systemProperty}") int param1, String notSupported, @Value("#{systemProperties.foo}") Mono<String> alsoNotSupported) { } }