Add RequestAttributeArgumentResolver

Closes gh-28458
This commit is contained in:
rstoyanchev
2022-05-17 14:02:23 +01:00
parent 495507e5d4
commit 496c1dcae1
7 changed files with 199 additions and 20 deletions

View File

@@ -48,8 +48,7 @@ class PathVariableArgumentResolverTests {
@SuppressWarnings("SameParameterValue")
private void assertPathVariable(String name, @Nullable String expectedValue) {
assertThat(this.client.getRequestValues().getUriVariables().get(name))
.isEqualTo(expectedValue);
assertThat(this.client.getRequestValues().getUriVariables().get(name)).isEqualTo(expectedValue);
}

View File

@@ -0,0 +1,61 @@
/*
* Copyright 2002-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.web.service.invoker;
import org.junit.jupiter.api.Test;
import org.springframework.lang.Nullable;
import org.springframework.web.bind.annotation.RequestAttribute;
import org.springframework.web.service.annotation.GetExchange;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Unit tests for {@link RequestAttributeArgumentResolver}.
* <p>For base class functionality, see {@link NamedValueArgumentResolverTests}.
*
* @author Rossen Stoyanchev
*/
class RequestAttributeArgumentResolverTests {
private final TestHttpClientAdapter client = new TestHttpClientAdapter();
private final Service service = HttpServiceProxyFactory.builder(this.client).build().createClient(Service.class);
// Base class functionality should be tested in NamedValueArgumentResolverTests.
@Test
void cookieValue() {
this.service.execute("test");
assertAttribute("attribute", "test");
}
@SuppressWarnings("SameParameterValue")
private void assertAttribute(String name, @Nullable String expectedValue) {
assertThat(this.client.getRequestValues().getAttributes().get(name)).isEqualTo(expectedValue);
}
private interface Service {
@GetExchange
void execute(@RequestAttribute String attribute);
}
}