|
|
@ -330,6 +330,16 @@ public class RestTemplateBuilderTests {
|
|
|
|
assertThat(interceptor).extracting("password").containsExactly("boot");
|
|
|
|
assertThat(interceptor).extracting("password").containsExactly("boot");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
|
|
|
|
public void basicAuthorizationShouldApply() {
|
|
|
|
|
|
|
|
RestTemplate template = this.builder.basicAuthorization("spring", "boot").build();
|
|
|
|
|
|
|
|
ClientHttpRequestInterceptor interceptor = template.getInterceptors().get(0);
|
|
|
|
|
|
|
|
assertThat(interceptor).isInstanceOf(BasicAuthenticationInterceptor.class);
|
|
|
|
|
|
|
|
assertThat(interceptor).extracting("username").containsExactly("spring");
|
|
|
|
|
|
|
|
assertThat(interceptor).extracting("password").containsExactly("boot");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void customizersWhenCustomizersAreNullShouldThrowException() {
|
|
|
|
public void customizersWhenCustomizersAreNullShouldThrowException() {
|
|
|
|
assertThatIllegalArgumentException()
|
|
|
|
assertThatIllegalArgumentException()
|
|
|
|