DATAES-607 - Client-security-configuration.

Original PR: #293
This commit is contained in:
Peter-Josef Meisch
2019-07-13 10:33:23 +02:00
committed by GitHub
parent f5b4722b6b
commit eec55e273e
4 changed files with 90 additions and 1 deletions

View File

@@ -30,9 +30,12 @@ import org.springframework.http.HttpHeaders;
* Unit tests for {@link ClientConfiguration}.
*
* @author Mark Paluch
* @author Peter-Josef Meisch
*/
public class ClientConfigurationUnitTests {
private static final String AUTHORIZATION_HEADER = "Authorization";
@Test // DATAES-488
public void shouldCreateSimpleConfiguration() {
@@ -78,4 +81,45 @@ public class ClientConfigurationUnitTests {
assertThat(clientConfiguration.getConnectTimeout()).isEqualTo(Duration.ofSeconds(10));
assertThat(clientConfiguration.getSocketTimeout()).isEqualTo(Duration.ofSeconds(5));
}
@Test // DATAES-607
public void shouldAddBasicAuthenticationHeaderWhenNoHeadersAreSet() {
final String username = "secretUser";
final String password = "secretPassword";
ClientConfiguration clientConfiguration = ClientConfiguration.builder() //
.connectedTo("foo", "bar") //
.withBasicAuth(username, password) //
.build();
assertThat(clientConfiguration.getDefaultHeaders().get(AUTHORIZATION_HEADER))
.containsOnly(buildBasicAuth(username, password));
}
@Test // DATAES-607
public void shouldAddBasicAuthenticationHeaderAndKeepHeaders() {
final String username = "secretUser";
final String password = "secretPassword";
HttpHeaders defaultHeaders = new HttpHeaders();
defaultHeaders.set("foo", "bar");
ClientConfiguration clientConfiguration = ClientConfiguration.builder() //
.connectedTo("foo", "bar") //
.withBasicAuth(username, password) //
.withDefaultHeaders(defaultHeaders).build();
final HttpHeaders httpHeaders = clientConfiguration.getDefaultHeaders();
assertThat(httpHeaders.get(AUTHORIZATION_HEADER)).containsOnly(buildBasicAuth(username, password));
assertThat(httpHeaders.get("foo")).containsOnly("bar");
}
private String buildBasicAuth(String username, String password) {
HttpHeaders headers = new HttpHeaders();
headers.setBasicAuth(username, password);
return headers.get(AUTHORIZATION_HEADER).get(0);
}
}

View File

@@ -1,5 +1,17 @@
/*
* (c) Copyright 2019 codecentric AG
* Copyright 2019 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.data.elasticsearch.utils;