Search in sources :

Example 21 with StringInputStream

use of software.amazon.awssdk.utils.StringInputStream in project aws-lambda-powertools-java by awslabs.

the class CloudFormationResponseTest method responseBodyStreamSuccessResponse.

@Test
void responseBodyStreamSuccessResponse() throws Exception {
    CloudFormationCustomResourceEvent event = mockCloudFormationCustomResourceEvent();
    Context context = mock(Context.class);
    CloudFormationResponse cfnResponse = testableCloudFormationResponse();
    StringInputStream stream = cfnResponse.responseBodyStream(event, context, Response.success());
    String expectedJson = "{" + "\"Status\":\"SUCCESS\"," + "\"Reason\":\"See the details in CloudWatch Log Stream: null\"," + "\"PhysicalResourceId\":null," + "\"StackId\":null," + "\"RequestId\":null," + "\"LogicalResourceId\":null," + "\"NoEcho\":false," + "\"Data\":null" + "}";
    assertThat(stream.getString()).isEqualTo(expectedJson);
}
Also used : Context(com.amazonaws.services.lambda.runtime.Context) CloudFormationCustomResourceEvent(com.amazonaws.services.lambda.runtime.events.CloudFormationCustomResourceEvent) StringInputStream(software.amazon.awssdk.utils.StringInputStream) Test(org.junit.jupiter.api.Test)

Example 22 with StringInputStream

use of software.amazon.awssdk.utils.StringInputStream in project aws-lambda-powertools-java by awslabs.

the class SqsLargeMessageAspectTest method shouldFailEntireBatchIfFailedProcessingDownloadMessageFromS3.

@Test
public void shouldFailEntireBatchIfFailedProcessingDownloadMessageFromS3() {
    ResponseInputStream<GetObjectResponse> s3Response = new ResponseInputStream<>(GetObjectResponse.builder().build(), AbortableInputStream.create(new StringInputStream("test") {

        @Override
        public void close() throws IOException {
            throw new IOException("Failed");
        }
    }));
    when(s3Client.getObject(any(GetObjectRequest.class))).thenReturn(s3Response);
    String messageBody = "[\"software.amazon.payloadoffloading.PayloadS3Pointer\",{\"s3BucketName\":\"" + BUCKET_NAME + "\",\"s3Key\":\"" + BUCKET_KEY + "\"}]";
    SQSEvent sqsEvent = messageWithBody(messageBody);
    assertThatExceptionOfType(FailedProcessingLargePayloadException.class).isThrownBy(() -> requestHandler.handleRequest(sqsEvent, context)).withCauseInstanceOf(IOException.class);
    verify(s3Client, never()).deleteObject(any(DeleteObjectRequest.class));
}
Also used : DeleteObjectRequest(software.amazon.awssdk.services.s3.model.DeleteObjectRequest) StringInputStream(software.amazon.awssdk.utils.StringInputStream) GetObjectResponse(software.amazon.awssdk.services.s3.model.GetObjectResponse) SQSEvent(com.amazonaws.services.lambda.runtime.events.SQSEvent) ResponseInputStream(software.amazon.awssdk.core.ResponseInputStream) IOException(java.io.IOException) GetObjectRequest(software.amazon.awssdk.services.s3.model.GetObjectRequest) Test(org.junit.jupiter.api.Test) ParameterizedTest(org.junit.jupiter.params.ParameterizedTest)

Example 23 with StringInputStream

use of software.amazon.awssdk.utils.StringInputStream in project aws-sdk-java-v2 by aws.

the class S3PresignerIntegrationTest method execute.

private HttpExecuteResponse execute(PresignedRequest presigned, String payload) throws IOException {
    SdkHttpClient httpClient = ApacheHttpClient.builder().build();
    ContentStreamProvider requestPayload = payload == null ? null : () -> new StringInputStream(payload);
    HttpExecuteRequest request = HttpExecuteRequest.builder().request(presigned.httpRequest()).contentStreamProvider(requestPayload).build();
    return httpClient.prepareRequest(request).call();
}
Also used : HttpExecuteRequest(software.amazon.awssdk.http.HttpExecuteRequest) StringInputStream(software.amazon.awssdk.utils.StringInputStream) SdkHttpClient(software.amazon.awssdk.http.SdkHttpClient) ContentStreamProvider(software.amazon.awssdk.http.ContentStreamProvider)

Example 24 with StringInputStream

use of software.amazon.awssdk.utils.StringInputStream in project aws-sdk-java-v2 by aws.

the class DefaultClientBuilderTest method buildIncludesClientOverrides.

@Test
public void buildIncludesClientOverrides() {
    List<ExecutionInterceptor> interceptors = new ArrayList<>();
    ExecutionInterceptor interceptor = new ExecutionInterceptor() {
    };
    interceptors.add(interceptor);
    RetryPolicy retryPolicy = RetryPolicy.builder().build();
    Map<String, List<String>> headers = new HashMap<>();
    List<String> headerValues = new ArrayList<>();
    headerValues.add("value");
    headers.put("client-override-test", headerValues);
    List<MetricPublisher> metricPublishers = new ArrayList<>();
    MetricPublisher metricPublisher = new MetricPublisher() {

        @Override
        public void publish(MetricCollection metricCollection) {
        }

        @Override
        public void close() {
        }
    };
    metricPublishers.add(metricPublisher);
    ExecutionAttribute<String> execAttribute = new ExecutionAttribute<>("test");
    ExecutionAttributes executionAttributes = ExecutionAttributes.builder().put(execAttribute, "value").build();
    Signer signer = (request, execAttributes) -> request;
    String suffix = "suffix";
    String prefix = "prefix";
    Duration apiCallTimeout = Duration.ofMillis(42);
    Duration apiCallAttemptTimeout = Duration.ofMillis(43);
    ProfileFile profileFile = ProfileFile.builder().content(new StringInputStream("")).type(ProfileFile.Type.CONFIGURATION).build();
    String profileName = "name";
    ClientOverrideConfiguration overrideConfig = ClientOverrideConfiguration.builder().executionInterceptors(interceptors).retryPolicy(retryPolicy).headers(headers).putAdvancedOption(SIGNER, signer).putAdvancedOption(USER_AGENT_SUFFIX, suffix).putAdvancedOption(USER_AGENT_PREFIX, prefix).apiCallTimeout(apiCallTimeout).apiCallAttemptTimeout(apiCallAttemptTimeout).putAdvancedOption(DISABLE_HOST_PREFIX_INJECTION, Boolean.TRUE).defaultProfileFile(profileFile).defaultProfileName(profileName).metricPublishers(metricPublishers).executionAttributes(executionAttributes).putAdvancedOption(ENDPOINT_OVERRIDDEN_OVERRIDE, Boolean.TRUE).build();
    SdkClientConfiguration config = testClientBuilder().overrideConfiguration(overrideConfig).build().clientConfiguration;
    assertThat(config.option(EXECUTION_INTERCEPTORS)).contains(interceptor);
    assertThat(config.option(RETRY_POLICY)).isEqualTo(retryPolicy);
    assertThat(config.option(ADDITIONAL_HTTP_HEADERS).get("client-override-test")).isEqualTo(headerValues);
    assertThat(config.option(SIGNER)).isEqualTo(signer);
    assertThat(config.option(USER_AGENT_SUFFIX)).isEqualTo(suffix);
    assertThat(config.option(USER_AGENT_PREFIX)).isEqualTo(prefix);
    assertThat(config.option(API_CALL_TIMEOUT)).isEqualTo(apiCallTimeout);
    assertThat(config.option(API_CALL_ATTEMPT_TIMEOUT)).isEqualTo(apiCallAttemptTimeout);
    assertThat(config.option(DISABLE_HOST_PREFIX_INJECTION)).isEqualTo(Boolean.TRUE);
    assertThat(config.option(PROFILE_FILE)).isEqualTo(profileFile);
    assertThat(config.option(PROFILE_NAME)).isEqualTo(profileName);
    assertThat(config.option(METRIC_PUBLISHERS)).contains(metricPublisher);
    assertThat(config.option(EXECUTION_ATTRIBUTES).getAttribute(execAttribute)).isEqualTo("value");
    assertThat(config.option(ENDPOINT_OVERRIDDEN)).isEqualTo(Boolean.TRUE);
}
Also used : ProfileFile(software.amazon.awssdk.profiles.ProfileFile) Arrays(java.util.Arrays) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AttributeMap(software.amazon.awssdk.utils.AttributeMap) ADDITIONAL_HTTP_HEADERS(software.amazon.awssdk.core.client.config.SdkClientOption.ADDITIONAL_HTTP_HEADERS) NoOpSigner(software.amazon.awssdk.core.signer.NoOpSigner) MetricPublisher(software.amazon.awssdk.metrics.MetricPublisher) Duration(java.time.Duration) Map(java.util.Map) Assertions(org.assertj.core.api.Assertions) SdkClientOption(software.amazon.awssdk.core.client.config.SdkClientOption) URI(java.net.URI) Method(java.lang.reflect.Method) RETRY_POLICY(software.amazon.awssdk.core.client.config.SdkClientOption.RETRY_POLICY) MetricCollection(software.amazon.awssdk.metrics.MetricCollection) ExecutionInterceptor(software.amazon.awssdk.core.interceptor.ExecutionInterceptor) List(java.util.List) StringInputStream(software.amazon.awssdk.utils.StringInputStream) PropertyDescriptor(java.beans.PropertyDescriptor) Optional(java.util.Optional) API_CALL_ATTEMPT_TIMEOUT(software.amazon.awssdk.core.client.config.SdkClientOption.API_CALL_ATTEMPT_TIMEOUT) MockitoJUnitRunner(org.mockito.junit.MockitoJUnitRunner) Mockito.mock(org.mockito.Mockito.mock) Signer(software.amazon.awssdk.core.signer.Signer) ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Mock(org.mockito.Mock) RunWith(org.junit.runner.RunWith) HashMap(java.util.HashMap) SdkClientConfiguration(software.amazon.awssdk.core.client.config.SdkClientConfiguration) SdkAdvancedClientOption(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption) ArrayList(java.util.ArrayList) Introspector(java.beans.Introspector) Assertions.assertThatThrownBy(org.assertj.core.api.Assertions.assertThatThrownBy) METRIC_PUBLISHERS(software.amazon.awssdk.core.client.config.SdkClientOption.METRIC_PUBLISHERS) PROFILE_NAME(software.amazon.awssdk.core.client.config.SdkClientOption.PROFILE_NAME) BeanInfo(java.beans.BeanInfo) PROFILE_FILE(software.amazon.awssdk.core.client.config.SdkClientOption.PROFILE_FILE) ExecutionAttribute(software.amazon.awssdk.core.interceptor.ExecutionAttribute) ExecutionAttributes(software.amazon.awssdk.core.interceptor.ExecutionAttributes) SdkAsyncHttpClient(software.amazon.awssdk.http.async.SdkAsyncHttpClient) EXECUTION_INTERCEPTORS(software.amazon.awssdk.core.client.config.SdkClientOption.EXECUTION_INTERCEPTORS) Before(org.junit.Before) USER_AGENT_PREFIX(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.USER_AGENT_PREFIX) ENDPOINT_OVERRIDDEN(software.amazon.awssdk.core.client.config.SdkClientOption.ENDPOINT_OVERRIDDEN) API_CALL_TIMEOUT(software.amazon.awssdk.core.client.config.SdkClientOption.API_CALL_TIMEOUT) Mockito.times(org.mockito.Mockito.times) Test(org.junit.Test) Mockito.when(org.mockito.Mockito.when) SdkHttpClient(software.amazon.awssdk.http.SdkHttpClient) ENDPOINT_OVERRIDDEN_OVERRIDE(software.amazon.awssdk.core.internal.SdkInternalTestAdvancedClientOption.ENDPOINT_OVERRIDDEN_OVERRIDE) SdkHttpConfigurationOption(software.amazon.awssdk.http.SdkHttpConfigurationOption) USER_AGENT_SUFFIX(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.USER_AGENT_SUFFIX) Mockito.verify(org.mockito.Mockito.verify) SIGNER(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.SIGNER) EXECUTION_ATTRIBUTES(software.amazon.awssdk.core.client.config.SdkClientOption.EXECUTION_ATTRIBUTES) Mockito.never(org.mockito.Mockito.never) RetryPolicy(software.amazon.awssdk.core.retry.RetryPolicy) RetryMode(software.amazon.awssdk.core.retry.RetryMode) DISABLE_HOST_PREFIX_INJECTION(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.DISABLE_HOST_PREFIX_INJECTION) ClientOverrideConfiguration(software.amazon.awssdk.core.client.config.ClientOverrideConfiguration) ExecutionAttributes(software.amazon.awssdk.core.interceptor.ExecutionAttributes) SdkClientConfiguration(software.amazon.awssdk.core.client.config.SdkClientConfiguration) HashMap(java.util.HashMap) ClientOverrideConfiguration(software.amazon.awssdk.core.client.config.ClientOverrideConfiguration) ExecutionAttribute(software.amazon.awssdk.core.interceptor.ExecutionAttribute) ArrayList(java.util.ArrayList) MetricPublisher(software.amazon.awssdk.metrics.MetricPublisher) ExecutionInterceptor(software.amazon.awssdk.core.interceptor.ExecutionInterceptor) Duration(java.time.Duration) MetricCollection(software.amazon.awssdk.metrics.MetricCollection) NoOpSigner(software.amazon.awssdk.core.signer.NoOpSigner) Signer(software.amazon.awssdk.core.signer.Signer) StringInputStream(software.amazon.awssdk.utils.StringInputStream) List(java.util.List) ArrayList(java.util.ArrayList) RetryPolicy(software.amazon.awssdk.core.retry.RetryPolicy) ProfileFile(software.amazon.awssdk.profiles.ProfileFile) Test(org.junit.Test)

Example 25 with StringInputStream

use of software.amazon.awssdk.utils.StringInputStream in project aws-sdk-java-v2 by aws.

the class DefaultClientBuilderTest method overrideConfigurationReturnsSetValues.

@Test
public void overrideConfigurationReturnsSetValues() {
    List<ExecutionInterceptor> interceptors = new ArrayList<>();
    RetryPolicy retryPolicy = RetryPolicy.builder().build();
    Map<String, List<String>> headers = new HashMap<>();
    List<MetricPublisher> metricPublishers = new ArrayList<>();
    ExecutionAttributes executionAttributes = new ExecutionAttributes();
    Signer signer = (request, execAttributes) -> request;
    String suffix = "suffix";
    String prefix = "prefix";
    Duration apiCallTimeout = Duration.ofMillis(42);
    Duration apiCallAttemptTimeout = Duration.ofMillis(43);
    ProfileFile profileFile = ProfileFile.builder().content(new StringInputStream("")).type(ProfileFile.Type.CONFIGURATION).build();
    String profileName = "name";
    ClientOverrideConfiguration overrideConfig = ClientOverrideConfiguration.builder().executionInterceptors(interceptors).retryPolicy(retryPolicy).headers(headers).putAdvancedOption(SIGNER, signer).putAdvancedOption(USER_AGENT_SUFFIX, suffix).putAdvancedOption(USER_AGENT_PREFIX, prefix).apiCallTimeout(apiCallTimeout).apiCallAttemptTimeout(apiCallAttemptTimeout).putAdvancedOption(DISABLE_HOST_PREFIX_INJECTION, Boolean.TRUE).defaultProfileFile(profileFile).defaultProfileName(profileName).metricPublishers(metricPublishers).executionAttributes(executionAttributes).putAdvancedOption(ENDPOINT_OVERRIDDEN_OVERRIDE, Boolean.TRUE).build();
    TestClientBuilder builder = testClientBuilder().overrideConfiguration(overrideConfig);
    ClientOverrideConfiguration builderOverrideConfig = builder.overrideConfiguration();
    assertThat(builderOverrideConfig.executionInterceptors()).isEqualTo(interceptors);
    assertThat(builderOverrideConfig.retryPolicy()).isEqualTo(Optional.of(retryPolicy));
    assertThat(builderOverrideConfig.headers()).isEqualTo(headers);
    assertThat(builderOverrideConfig.advancedOption(SIGNER)).isEqualTo(Optional.of(signer));
    assertThat(builderOverrideConfig.advancedOption(USER_AGENT_SUFFIX)).isEqualTo(Optional.of(suffix));
    assertThat(builderOverrideConfig.apiCallTimeout()).isEqualTo(Optional.of(apiCallTimeout));
    assertThat(builderOverrideConfig.apiCallAttemptTimeout()).isEqualTo(Optional.of(apiCallAttemptTimeout));
    assertThat(builderOverrideConfig.advancedOption(DISABLE_HOST_PREFIX_INJECTION)).isEqualTo(Optional.of(Boolean.TRUE));
    assertThat(builderOverrideConfig.defaultProfileFile()).isEqualTo(Optional.of(profileFile));
    assertThat(builderOverrideConfig.defaultProfileName()).isEqualTo(Optional.of(profileName));
    assertThat(builderOverrideConfig.metricPublishers()).isEqualTo(metricPublishers);
    assertThat(builderOverrideConfig.executionAttributes().getAttributes()).isEqualTo(executionAttributes.getAttributes());
    assertThat(builderOverrideConfig.advancedOption(ENDPOINT_OVERRIDDEN_OVERRIDE)).isEqualTo(Optional.of(Boolean.TRUE));
}
Also used : ProfileFile(software.amazon.awssdk.profiles.ProfileFile) Arrays(java.util.Arrays) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) AttributeMap(software.amazon.awssdk.utils.AttributeMap) ADDITIONAL_HTTP_HEADERS(software.amazon.awssdk.core.client.config.SdkClientOption.ADDITIONAL_HTTP_HEADERS) NoOpSigner(software.amazon.awssdk.core.signer.NoOpSigner) MetricPublisher(software.amazon.awssdk.metrics.MetricPublisher) Duration(java.time.Duration) Map(java.util.Map) Assertions(org.assertj.core.api.Assertions) SdkClientOption(software.amazon.awssdk.core.client.config.SdkClientOption) URI(java.net.URI) Method(java.lang.reflect.Method) RETRY_POLICY(software.amazon.awssdk.core.client.config.SdkClientOption.RETRY_POLICY) MetricCollection(software.amazon.awssdk.metrics.MetricCollection) ExecutionInterceptor(software.amazon.awssdk.core.interceptor.ExecutionInterceptor) List(java.util.List) StringInputStream(software.amazon.awssdk.utils.StringInputStream) PropertyDescriptor(java.beans.PropertyDescriptor) Optional(java.util.Optional) API_CALL_ATTEMPT_TIMEOUT(software.amazon.awssdk.core.client.config.SdkClientOption.API_CALL_ATTEMPT_TIMEOUT) MockitoJUnitRunner(org.mockito.junit.MockitoJUnitRunner) Mockito.mock(org.mockito.Mockito.mock) Signer(software.amazon.awssdk.core.signer.Signer) ArgumentMatchers.any(org.mockito.ArgumentMatchers.any) Mock(org.mockito.Mock) RunWith(org.junit.runner.RunWith) HashMap(java.util.HashMap) SdkClientConfiguration(software.amazon.awssdk.core.client.config.SdkClientConfiguration) SdkAdvancedClientOption(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption) ArrayList(java.util.ArrayList) Introspector(java.beans.Introspector) Assertions.assertThatThrownBy(org.assertj.core.api.Assertions.assertThatThrownBy) METRIC_PUBLISHERS(software.amazon.awssdk.core.client.config.SdkClientOption.METRIC_PUBLISHERS) PROFILE_NAME(software.amazon.awssdk.core.client.config.SdkClientOption.PROFILE_NAME) BeanInfo(java.beans.BeanInfo) PROFILE_FILE(software.amazon.awssdk.core.client.config.SdkClientOption.PROFILE_FILE) ExecutionAttribute(software.amazon.awssdk.core.interceptor.ExecutionAttribute) ExecutionAttributes(software.amazon.awssdk.core.interceptor.ExecutionAttributes) SdkAsyncHttpClient(software.amazon.awssdk.http.async.SdkAsyncHttpClient) EXECUTION_INTERCEPTORS(software.amazon.awssdk.core.client.config.SdkClientOption.EXECUTION_INTERCEPTORS) Before(org.junit.Before) USER_AGENT_PREFIX(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.USER_AGENT_PREFIX) ENDPOINT_OVERRIDDEN(software.amazon.awssdk.core.client.config.SdkClientOption.ENDPOINT_OVERRIDDEN) API_CALL_TIMEOUT(software.amazon.awssdk.core.client.config.SdkClientOption.API_CALL_TIMEOUT) Mockito.times(org.mockito.Mockito.times) Test(org.junit.Test) Mockito.when(org.mockito.Mockito.when) SdkHttpClient(software.amazon.awssdk.http.SdkHttpClient) ENDPOINT_OVERRIDDEN_OVERRIDE(software.amazon.awssdk.core.internal.SdkInternalTestAdvancedClientOption.ENDPOINT_OVERRIDDEN_OVERRIDE) SdkHttpConfigurationOption(software.amazon.awssdk.http.SdkHttpConfigurationOption) USER_AGENT_SUFFIX(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.USER_AGENT_SUFFIX) Mockito.verify(org.mockito.Mockito.verify) SIGNER(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.SIGNER) EXECUTION_ATTRIBUTES(software.amazon.awssdk.core.client.config.SdkClientOption.EXECUTION_ATTRIBUTES) Mockito.never(org.mockito.Mockito.never) RetryPolicy(software.amazon.awssdk.core.retry.RetryPolicy) RetryMode(software.amazon.awssdk.core.retry.RetryMode) DISABLE_HOST_PREFIX_INJECTION(software.amazon.awssdk.core.client.config.SdkAdvancedClientOption.DISABLE_HOST_PREFIX_INJECTION) ClientOverrideConfiguration(software.amazon.awssdk.core.client.config.ClientOverrideConfiguration) ExecutionAttributes(software.amazon.awssdk.core.interceptor.ExecutionAttributes) HashMap(java.util.HashMap) ClientOverrideConfiguration(software.amazon.awssdk.core.client.config.ClientOverrideConfiguration) ArrayList(java.util.ArrayList) MetricPublisher(software.amazon.awssdk.metrics.MetricPublisher) ExecutionInterceptor(software.amazon.awssdk.core.interceptor.ExecutionInterceptor) Duration(java.time.Duration) NoOpSigner(software.amazon.awssdk.core.signer.NoOpSigner) Signer(software.amazon.awssdk.core.signer.Signer) StringInputStream(software.amazon.awssdk.utils.StringInputStream) List(java.util.List) ArrayList(java.util.ArrayList) RetryPolicy(software.amazon.awssdk.core.retry.RetryPolicy) ProfileFile(software.amazon.awssdk.profiles.ProfileFile) Test(org.junit.Test)

Aggregations

StringInputStream (software.amazon.awssdk.utils.StringInputStream)47 Test (org.junit.Test)20 Test (org.junit.jupiter.api.Test)19 ProfileFile (software.amazon.awssdk.profiles.ProfileFile)19 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)10 ProfileCredentialsUtils (software.amazon.awssdk.auth.credentials.internal.ProfileCredentialsUtils)9 Assertions.assertThatThrownBy (org.assertj.core.api.Assertions.assertThatThrownBy)7 AbortableInputStream (software.amazon.awssdk.http.AbortableInputStream)7 Region (software.amazon.awssdk.regions.Region)7 IOException (java.io.IOException)6 InputStream (java.io.InputStream)6 Optional (java.util.Optional)6 ExecutionInterceptor (software.amazon.awssdk.core.interceptor.ExecutionInterceptor)6 URI (java.net.URI)5 Duration (java.time.Duration)5 ArgumentMatchers.any (org.mockito.ArgumentMatchers.any)5 SdkHttpRequest (software.amazon.awssdk.http.SdkHttpRequest)5 SdkHttpClient (software.amazon.awssdk.http.SdkHttpClient)4 SdkAutoCloseable (software.amazon.awssdk.utils.SdkAutoCloseable)4 ArrayList (java.util.ArrayList)3