commit
51991d6f41
|
|
@ -0,0 +1,68 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2024 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.client;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.boot.web.client.RestTemplateBuilder;
|
||||||
|
import org.springframework.test.web.client.MockRestServiceServer;
|
||||||
|
import org.springframework.web.client.RestClient;
|
||||||
|
import org.springframework.web.client.RestClient.Builder;
|
||||||
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.springframework.test.web.client.match.MockRestRequestMatchers.requestTo;
|
||||||
|
import static org.springframework.test.web.client.response.MockRestResponseCreators.withSuccess;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for building a {@link RestClient} from a {@link RestTemplateBuilder}.
|
||||||
|
*
|
||||||
|
* @author Scott Frederick
|
||||||
|
*/
|
||||||
|
class RestClientWithRestTemplateBuilderTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildUsingRestTemplateBuilderRootUri() {
|
||||||
|
RestTemplate restTemplate = new RestTemplateBuilder().rootUri("https://resttemplate.example.com").build();
|
||||||
|
RestClient.Builder builder = RestClient.builder(restTemplate);
|
||||||
|
RestClient client = buildMockedClient(builder, "https://resttemplate.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildUsingRestClientBuilderBaseUrl() {
|
||||||
|
RestTemplate restTemplate = new RestTemplateBuilder().build();
|
||||||
|
RestClient.Builder builder = RestClient.builder(restTemplate).baseUrl("https://restclient.example.com");
|
||||||
|
RestClient client = buildMockedClient(builder, "https://restclient.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildRestTemplateBuilderRootUriAndRestClientBuilderBaseUrl() {
|
||||||
|
RestTemplate restTemplate = new RestTemplateBuilder().rootUri("https://resttemplate.example.com").build();
|
||||||
|
RestClient.Builder builder = RestClient.builder(restTemplate).baseUrl("https://restclient.example.com");
|
||||||
|
RestClient client = buildMockedClient(builder, "https://resttemplate.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
private RestClient buildMockedClient(Builder builder, String url) {
|
||||||
|
MockRestServiceServer server = MockRestServiceServer.bindTo(builder).build();
|
||||||
|
server.expect(requestTo(url)).andRespond(withSuccess());
|
||||||
|
return builder.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,72 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2024 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.client;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.test.web.client.MockRestServiceServer;
|
||||||
|
import org.springframework.web.client.RestClient;
|
||||||
|
import org.springframework.web.client.RestClient.Builder;
|
||||||
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
import org.springframework.web.util.DefaultUriBuilderFactory;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.springframework.test.web.client.match.MockRestRequestMatchers.requestTo;
|
||||||
|
import static org.springframework.test.web.client.response.MockRestResponseCreators.withSuccess;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for building a {@link RestClient} from a {@link RestTemplate}.
|
||||||
|
*
|
||||||
|
* @author Scott Frederick
|
||||||
|
*/
|
||||||
|
class RestClientWithRestTemplateTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildUsingRestTemplateUriTemplateHandler() {
|
||||||
|
RestTemplate restTemplate = new RestTemplate();
|
||||||
|
DefaultUriBuilderFactory uriBuilderFactory = new DefaultUriBuilderFactory("https://resttemplate.example.com");
|
||||||
|
restTemplate.setUriTemplateHandler(uriBuilderFactory);
|
||||||
|
Builder builder = RestClient.builder(restTemplate);
|
||||||
|
RestClient client = buildMockedClient(builder, "https://resttemplate.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildUsingRestClientBuilderBaseUrl() {
|
||||||
|
RestTemplate restTemplate = new RestTemplate();
|
||||||
|
Builder builder = RestClient.builder(restTemplate).baseUrl("https://restclient.example.com");
|
||||||
|
RestClient client = buildMockedClient(builder, "https://restclient.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void buildUsingRestTemplateUriTemplateHandlerAndRestClientBuilderBaseUrl() {
|
||||||
|
RestTemplate restTemplate = new RestTemplate();
|
||||||
|
DefaultUriBuilderFactory uriBuilderFactory = new DefaultUriBuilderFactory("https://resttemplate.example.com");
|
||||||
|
restTemplate.setUriTemplateHandler(uriBuilderFactory);
|
||||||
|
Builder builder = RestClient.builder(restTemplate).baseUrl("https://restclient.example.com");
|
||||||
|
RestClient client = buildMockedClient(builder, "https://resttemplate.example.com/test");
|
||||||
|
assertThat(client.get().uri("/test").retrieve().toBodilessEntity().getStatusCode().is2xxSuccessful()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
private RestClient buildMockedClient(Builder builder, String url) {
|
||||||
|
MockRestServiceServer server = MockRestServiceServer.bindTo(builder).build();
|
||||||
|
server.expect(requestTo(url)).andRespond(withSuccess());
|
||||||
|
return builder.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -171,8 +171,8 @@ public class TestRestTemplate {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the root URI applied by a {@link RootUriTemplateHandler} or {@code ""} if
|
* Returns the root URI applied by {@link RestTemplateBuilder#rootUri(String)} or
|
||||||
* the root URI is not available.
|
* {@code ""} if the root URI has not been applied.
|
||||||
* @return the root URI
|
* @return the root URI
|
||||||
*/
|
*/
|
||||||
public String getRootUri() {
|
public String getRootUri() {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2023 the original author or authors.
|
* Copyright 2012-2024 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -150,10 +150,8 @@ public class RestTemplateBuilder {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set a root URL that should be applied to each request that starts with {@code '/'}.
|
* Set a root URL that should be applied to each request that starts with {@code '/'}.
|
||||||
* Since this works by adding a {@link UriTemplateHandler} to the
|
* The root URL will only apply when {@code String} variants of the
|
||||||
* {@link RestTemplate}, the root URL will only apply when {@code String} variants of
|
* {@link RestTemplate} methods are used for specifying the request URL.
|
||||||
* the {@link RestTemplate} methods are used for specifying the request URL. See
|
|
||||||
* {@link RootUriTemplateHandler} for details.
|
|
||||||
* @param rootUri the root URI or {@code null}
|
* @param rootUri the root URI or {@code null}
|
||||||
* @return a new builder instance
|
* @return a new builder instance
|
||||||
*/
|
*/
|
||||||
|
|
@ -639,7 +637,7 @@ public class RestTemplateBuilder {
|
||||||
restTemplate.setErrorHandler(this.errorHandler);
|
restTemplate.setErrorHandler(this.errorHandler);
|
||||||
}
|
}
|
||||||
if (this.rootUri != null) {
|
if (this.rootUri != null) {
|
||||||
RootUriTemplateHandler.addTo(restTemplate, this.rootUri);
|
RootUriBuilderFactory.applyTo(restTemplate, this.rootUri);
|
||||||
}
|
}
|
||||||
restTemplate.getInterceptors().addAll(this.interceptors);
|
restTemplate.getInterceptors().addAll(this.interceptors);
|
||||||
if (!CollectionUtils.isEmpty(this.customizers)) {
|
if (!CollectionUtils.isEmpty(this.customizers)) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2024 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.web.client;
|
||||||
|
|
||||||
|
import org.springframework.util.Assert;
|
||||||
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
import org.springframework.web.util.UriBuilder;
|
||||||
|
import org.springframework.web.util.UriBuilderFactory;
|
||||||
|
import org.springframework.web.util.UriComponentsBuilder;
|
||||||
|
import org.springframework.web.util.UriTemplateHandler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@link UriBuilderFactory} to set the root for URI that starts with {@code '/'}.
|
||||||
|
*
|
||||||
|
* @author Scott Frederick
|
||||||
|
* @since 3.2.3
|
||||||
|
*/
|
||||||
|
public class RootUriBuilderFactory extends RootUriTemplateHandler implements UriBuilderFactory {
|
||||||
|
|
||||||
|
@SuppressWarnings("removal")
|
||||||
|
RootUriBuilderFactory(String rootUri) {
|
||||||
|
super(rootUri);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("removal")
|
||||||
|
RootUriBuilderFactory(String rootUri, UriTemplateHandler delegate) {
|
||||||
|
super(rootUri, delegate);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UriBuilder uriString(String uriTemplate) {
|
||||||
|
return UriComponentsBuilder.fromUriString(apply(uriTemplate));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UriBuilder builder() {
|
||||||
|
return UriComponentsBuilder.newInstance();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply a {@link RootUriBuilderFactory} instance to the given {@link RestTemplate}.
|
||||||
|
* @param restTemplate the {@link RestTemplate} to add the builder factory to
|
||||||
|
* @param rootUri the root URI
|
||||||
|
*/
|
||||||
|
static void applyTo(RestTemplate restTemplate, String rootUri) {
|
||||||
|
Assert.notNull(restTemplate, "RestTemplate must not be null");
|
||||||
|
RootUriBuilderFactory handler = new RootUriBuilderFactory(rootUri, restTemplate.getUriTemplateHandler());
|
||||||
|
restTemplate.setUriTemplateHandler(handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2021 the original author or authors.
|
* Copyright 2012-2024 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -30,6 +30,7 @@ import org.springframework.web.util.UriTemplateHandler;
|
||||||
* {@link UriTemplateHandler} to set the root for URI that starts with {@code '/'}.
|
* {@link UriTemplateHandler} to set the root for URI that starts with {@code '/'}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
|
* @author Scott Frederick
|
||||||
* @since 1.4.0
|
* @since 1.4.0
|
||||||
*/
|
*/
|
||||||
public class RootUriTemplateHandler implements UriTemplateHandler {
|
public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
|
|
@ -47,7 +48,9 @@ public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
/**
|
/**
|
||||||
* Create a new {@link RootUriTemplateHandler} instance.
|
* Create a new {@link RootUriTemplateHandler} instance.
|
||||||
* @param rootUri the root URI to be used to prefix relative URLs
|
* @param rootUri the root URI to be used to prefix relative URLs
|
||||||
|
* @deprecated since 3.2.3 for removal in 3.4.0, with no replacement
|
||||||
*/
|
*/
|
||||||
|
@Deprecated(since = "3.2.3", forRemoval = true)
|
||||||
public RootUriTemplateHandler(String rootUri) {
|
public RootUriTemplateHandler(String rootUri) {
|
||||||
this(rootUri, new DefaultUriBuilderFactory());
|
this(rootUri, new DefaultUriBuilderFactory());
|
||||||
}
|
}
|
||||||
|
|
@ -55,8 +58,10 @@ public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
/**
|
/**
|
||||||
* Create a new {@link RootUriTemplateHandler} instance.
|
* Create a new {@link RootUriTemplateHandler} instance.
|
||||||
* @param rootUri the root URI to be used to prefix relative URLs
|
* @param rootUri the root URI to be used to prefix relative URLs
|
||||||
* @param handler the delegate handler
|
* @param handler the handler handler
|
||||||
|
* @deprecated since 3.2.3 for removal in 3.4.0, with no replacement
|
||||||
*/
|
*/
|
||||||
|
@Deprecated(since = "3.2.3", forRemoval = true)
|
||||||
public RootUriTemplateHandler(String rootUri, UriTemplateHandler handler) {
|
public RootUriTemplateHandler(String rootUri, UriTemplateHandler handler) {
|
||||||
Assert.notNull(rootUri, "RootUri must not be null");
|
Assert.notNull(rootUri, "RootUri must not be null");
|
||||||
Assert.notNull(handler, "Handler must not be null");
|
Assert.notNull(handler, "Handler must not be null");
|
||||||
|
|
@ -74,7 +79,7 @@ public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
return this.handler.expand(apply(uriTemplate), uriVariables);
|
return this.handler.expand(apply(uriTemplate), uriVariables);
|
||||||
}
|
}
|
||||||
|
|
||||||
private String apply(String uriTemplate) {
|
String apply(String uriTemplate) {
|
||||||
if (StringUtils.startsWithIgnoreCase(uriTemplate, "/")) {
|
if (StringUtils.startsWithIgnoreCase(uriTemplate, "/")) {
|
||||||
return getRootUri() + uriTemplate;
|
return getRootUri() + uriTemplate;
|
||||||
}
|
}
|
||||||
|
|
@ -91,7 +96,9 @@ public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
* @param wrapper the wrapper to apply to the delegate URI template handler
|
* @param wrapper the wrapper to apply to the delegate URI template handler
|
||||||
* @return the new handler
|
* @return the new handler
|
||||||
* @since 2.3.10
|
* @since 2.3.10
|
||||||
|
* @deprecated since 3.2.3 for removal in 3.4.0, with no replacement
|
||||||
*/
|
*/
|
||||||
|
@Deprecated(since = "3.2.3", forRemoval = true)
|
||||||
public RootUriTemplateHandler withHandlerWrapper(Function<UriTemplateHandler, UriTemplateHandler> wrapper) {
|
public RootUriTemplateHandler withHandlerWrapper(Function<UriTemplateHandler, UriTemplateHandler> wrapper) {
|
||||||
return new RootUriTemplateHandler(getRootUri(), wrapper.apply(this.handler));
|
return new RootUriTemplateHandler(getRootUri(), wrapper.apply(this.handler));
|
||||||
}
|
}
|
||||||
|
|
@ -101,7 +108,9 @@ public class RootUriTemplateHandler implements UriTemplateHandler {
|
||||||
* @param restTemplate the {@link RestTemplate} to add the handler to
|
* @param restTemplate the {@link RestTemplate} to add the handler to
|
||||||
* @param rootUri the root URI
|
* @param rootUri the root URI
|
||||||
* @return the added {@link RootUriTemplateHandler}.
|
* @return the added {@link RootUriTemplateHandler}.
|
||||||
|
* @deprecated since 3.2.3 for removal in 3.4.0, with no replacement
|
||||||
*/
|
*/
|
||||||
|
@Deprecated(since = "3.2.3", forRemoval = true)
|
||||||
public static RootUriTemplateHandler addTo(RestTemplate restTemplate, String rootUri) {
|
public static RootUriTemplateHandler addTo(RestTemplate restTemplate, String rootUri) {
|
||||||
Assert.notNull(restTemplate, "RestTemplate must not be null");
|
Assert.notNull(restTemplate, "RestTemplate must not be null");
|
||||||
RootUriTemplateHandler handler = new RootUriTemplateHandler(rootUri, restTemplate.getUriTemplateHandler());
|
RootUriTemplateHandler handler = new RootUriTemplateHandler(rootUri, restTemplate.getUriTemplateHandler());
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2023 the original author or authors.
|
* Copyright 2012-2024 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -126,7 +126,7 @@ class RestTemplateBuilderTests {
|
||||||
.build();
|
.build();
|
||||||
UriTemplateHandler handler = template.getUriTemplateHandler();
|
UriTemplateHandler handler = template.getUriTemplateHandler();
|
||||||
handler.expand("/hello");
|
handler.expand("/hello");
|
||||||
assertThat(handler).isInstanceOf(RootUriTemplateHandler.class);
|
assertThat(handler).isInstanceOf(RootUriBuilderFactory.class);
|
||||||
then(uriTemplateHandler).should().expand("https://example.com/hello");
|
then(uriTemplateHandler).should().expand("https://example.com/hello");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -439,7 +439,7 @@ class RestTemplateBuilderTests {
|
||||||
.customizers((restTemplate) -> {
|
.customizers((restTemplate) -> {
|
||||||
assertThat(restTemplate.getInterceptors()).hasSize(1);
|
assertThat(restTemplate.getInterceptors()).hasSize(1);
|
||||||
assertThat(restTemplate.getMessageConverters()).contains(this.messageConverter);
|
assertThat(restTemplate.getMessageConverters()).contains(this.messageConverter);
|
||||||
assertThat(restTemplate.getUriTemplateHandler()).isInstanceOf(RootUriTemplateHandler.class);
|
assertThat(restTemplate.getUriTemplateHandler()).isInstanceOf(RootUriBuilderFactory.class);
|
||||||
assertThat(restTemplate.getErrorHandler()).isEqualTo(errorHandler);
|
assertThat(restTemplate.getErrorHandler()).isEqualTo(errorHandler);
|
||||||
ClientHttpRequestFactory actualRequestFactory = restTemplate.getRequestFactory();
|
ClientHttpRequestFactory actualRequestFactory = restTemplate.getRequestFactory();
|
||||||
assertThat(actualRequestFactory).isInstanceOf(InterceptingClientHttpRequestFactory.class);
|
assertThat(actualRequestFactory).isInstanceOf(InterceptingClientHttpRequestFactory.class);
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2024 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.web.client;
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.web.util.UriBuilder;
|
||||||
|
import org.springframework.web.util.UriBuilderFactory;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for {@link RootUriBuilderFactory}.
|
||||||
|
*
|
||||||
|
* @author Scott Frederick
|
||||||
|
*/
|
||||||
|
class RootUriBuilderFactoryTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void uriStringPrefixesRoot() throws URISyntaxException {
|
||||||
|
UriBuilderFactory builderFactory = new RootUriBuilderFactory("https://example.com");
|
||||||
|
UriBuilder builder = builderFactory.uriString("/hello");
|
||||||
|
assertThat(builder.build()).isEqualTo(new URI("https://example.com/hello"));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2023 the original author or authors.
|
* Copyright 2012-2024 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -43,6 +43,7 @@ import static org.mockito.BDDMockito.then;
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
*/
|
*/
|
||||||
@ExtendWith(MockitoExtension.class)
|
@ExtendWith(MockitoExtension.class)
|
||||||
|
@SuppressWarnings("removal")
|
||||||
class RootUriTemplateHandlerTests {
|
class RootUriTemplateHandlerTests {
|
||||||
|
|
||||||
private URI uri;
|
private URI uri;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue