17
17
import software .amazon .awssdk .auth .credentials .StaticCredentialsProvider ;
18
18
import software .amazon .awssdk .core .client .config .ClientOverrideConfiguration ;
19
19
import software .amazon .awssdk .identity .spi .AwsCredentialsIdentity ;
20
+ import software .amazon .awssdk .regions .Region ;
20
21
21
22
import org .apache .logging .log4j .Logger ;
22
23
import org .apache .logging .log4j .util .Supplier ;
24
+ import org .elasticsearch .cluster .metadata .RepositoryMetadata ;
23
25
import org .elasticsearch .common .settings .MockSecureSettings ;
24
26
import org .elasticsearch .common .settings .Settings ;
27
+ import org .elasticsearch .env .Environment ;
25
28
import org .elasticsearch .test .ESTestCase ;
29
+ import org .elasticsearch .watcher .ResourceWatcherService ;
26
30
import org .mockito .ArgumentCaptor ;
27
31
import org .mockito .Mockito ;
28
32
import org .mockito .stubbing .Answer ;
29
33
34
+ import java .io .IOException ;
30
35
import java .util .Locale ;
31
36
import java .util .Map ;
32
37
import java .util .concurrent .CompletableFuture ;
36
41
import static org .hamcrest .Matchers .instanceOf ;
37
42
import static org .hamcrest .Matchers .is ;
38
43
import static org .hamcrest .Matchers .startsWith ;
44
+ import static org .mockito .Mockito .mock ;
39
45
40
46
public class AwsS3ServiceImplTests extends ESTestCase {
41
47
@@ -173,7 +179,7 @@ public void testAWSDefaultConfiguration() {
173
179
);
174
180
}
175
181
176
- public void testAWSConfigurationWithAwsSettings () {
182
+ public void testAwsConfigurationWithAwsSettings () {
177
183
final MockSecureSettings secureSettings = new MockSecureSettings ();
178
184
secureSettings .setString ("s3.client.default.proxy.username" , "aws_proxy_username" );
179
185
secureSettings .setString ("s3.client.default.proxy.password" , "aws_proxy_password" );
@@ -193,7 +199,6 @@ public void testRepositoryMaxRetries() {
193
199
launchAWSConfigurationTest (settings , null , -1 , null , null , null , 5 , 50000 );
194
200
}
195
201
196
- // TODO NOMERGE unused params
197
202
private void launchAWSConfigurationTest (
198
203
Settings settings ,
199
204
String expectedProxyHost ,
@@ -218,9 +223,6 @@ private void launchAWSConfigurationTest(
218
223
219
224
final ClientOverrideConfiguration configuration = S3Service .buildConfiguration (clientSettings , false );
220
225
assertThat (configuration .retryStrategy ().get ().maxAttempts (), is (expectedMaxRetries + 1 ));
221
-
222
- // TODO NOMERGE: consider whether this needs to be tested elsewhere.
223
- // assertThat(configuration.getSocketTimeout(), is(expectedReadTimeout)); // set on the httpClient
224
226
}
225
227
226
228
public void testEndpointSetting () {
@@ -234,6 +236,28 @@ private void assertEndpoint(Settings repositorySettings, Settings settings, Stri
234
236
assertThat (clientSettings .endpoint , is (expectedEndpoint ));
235
237
}
236
238
239
+ public void testEndPointAndRegionOverrides () throws IOException {
240
+ try (
241
+ S3Service s3Service = new S3Service (
242
+ mock (Environment .class ),
243
+ Settings .EMPTY ,
244
+ mock (ResourceWatcherService .class ),
245
+ () -> Region .of ("es-test-region" )
246
+ )
247
+ ) {
248
+ s3Service .start ();
249
+ final String endpointOverride = "http://first" ;
250
+ final Settings settings = Settings .builder ().put ("endpoint" , endpointOverride ).build ();
251
+ final AmazonS3Reference reference = s3Service .client (new RepositoryMetadata ("first" , "s3" , settings ));
252
+
253
+ assertEquals (endpointOverride , reference .client ().serviceClientConfiguration ().endpointOverride ().get ().toString ());
254
+ assertEquals ("es-test-region" , reference .client ().serviceClientConfiguration ().region ().toString ());
255
+
256
+ reference .close ();
257
+ s3Service .doClose ();
258
+ }
259
+ }
260
+
237
261
public void testLoggingCredentialsProviderCatchesErrorsOnResolveCredentials () {
238
262
var mockProvider = Mockito .mock (AwsCredentialsProvider .class );
239
263
String mockProviderErrorMessage = "mockProvider failed to generate credentials" ;
@@ -253,17 +277,20 @@ public void testLoggingCredentialsProviderCatchesErrorsOnResolveCredentials() {
253
277
}
254
278
255
279
public void testLoggingCredentialsProviderCatchesErrorsOnResolveIdentity () {
256
- // Set up #resolveIdentity() to throw a fake exception.
280
+ // Set up #resolveIdentity() to return a future with an exception.
257
281
var mockCredentialsProvider = Mockito .mock (AwsCredentialsProvider .class );
258
282
String mockProviderErrorMessage = "mockProvider failed to generate credentials" ;
259
- Mockito .when (mockCredentialsProvider .resolveIdentity ()).thenThrow (new IllegalStateException (mockProviderErrorMessage ));
260
-
283
+ Answer <CompletableFuture <? extends AwsCredentialsIdentity >> answer = invocation -> {
284
+ CompletableFuture <AwsCredentialsIdentity > future = new CompletableFuture <>();
285
+ future .completeExceptionally (new IllegalStateException (mockProviderErrorMessage ));
286
+ return future ;
287
+ };
288
+ Mockito .when (mockCredentialsProvider .resolveIdentity ()).thenAnswer (answer );
261
289
var mockLogger = Mockito .mock (Logger .class );
262
290
var credentialsProvider = new S3Service .ErrorLoggingCredentialsProvider (mockCredentialsProvider , mockLogger );
263
291
264
292
// The S3Service.ErrorLoggingCredentialsProvider should log the error.
265
- var exception = expectThrows (IllegalStateException .class , credentialsProvider ::resolveIdentity );
266
- assertEquals (mockProviderErrorMessage , exception .getMessage ());
293
+ credentialsProvider .resolveIdentity ();
267
294
268
295
var messageSupplierCaptor = ArgumentCaptor .forClass (Supplier .class );
269
296
var throwableCaptor = ArgumentCaptor .forClass (Throwable .class );
0 commit comments