Skip to content

Commit

Permalink
Add stability test case to test issue #4608
Browse files Browse the repository at this point in the history
  • Loading branch information
joviegas committed Dec 8, 2023
1 parent 1c93c02 commit 1733cb7
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.stability.tests.s3;

import java.time.Duration;
import java.util.concurrent.CompletableFuture;
import java.util.function.IntFunction;
import org.apache.commons.lang3.RandomStringUtils;
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials;
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider;
import software.amazon.awssdk.core.async.AsyncRequestBody;
import software.amazon.awssdk.services.s3.S3AsyncClient;
import software.amazon.awssdk.services.s3.model.ChecksumAlgorithm;
import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException;
import software.amazon.awssdk.stability.tests.utils.RetryableTest;
import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner;
import software.amazon.awssdk.testutils.service.http.MockAsyncHttpClient;
import software.amazon.awssdk.utils.Logger;

public abstract class S3MockStabilityTestBase {

protected static final int CONCURRENCY = 100;
protected static final int TOTAL_RUNS = 50;
private static final Logger log = Logger.loggerFor(S3MockStabilityTestBase.class);
MockAsyncHttpClient mockAsyncHttpClient;
S3AsyncClient testClient;

protected static StaticCredentialsProvider getDummyCredentials() {
return StaticCredentialsProvider.create(AwsBasicCredentials.create("dummy", ":dummy"));
}

@RetryableTest(maxRetries = 3, retryableException = StabilityTestsRetryableException.class)
public void putObject_Checksum() {
putObjectChecksumVariations();
}

protected void putObjectChecksumVariations() {
mockAsyncHttpClient.stubNextResponse200();
byte[] bytes = RandomStringUtils.randomAlphanumeric(10_000).getBytes();

IntFunction<CompletableFuture<?>> future = i -> {
String keyName = computeKeyName(i);

return testClient.putObject(b -> b.bucket(getTestBucketName())
.key(keyName)
.checksumAlgorithm(ChecksumAlgorithm.CRC32_C), AsyncRequestBody.fromBytes(bytes))
.thenRunAsync(
() -> testClient.putObject(b -> b.bucket(getTestBucketName())
.key(keyName), AsyncRequestBody.fromBytes(bytes)));
};

StabilityTestRunner.newRunner()
.testName("S3MockStabilityTestBase.putObjectChecksumVariations")
.futureFactory(future)
.requestCountPerRun(CONCURRENCY)
.totalRuns(TOTAL_RUNS)
.delaysBetweenEachRun(Duration.ofMillis(100))
.run();
}

protected String computeKeyName(int i) {
return "key_" + i;
}

protected abstract String getTestBucketName();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.stability.tests.s3;

import org.junit.jupiter.api.BeforeEach;
import software.amazon.awssdk.services.s3.S3AsyncClient;
import software.amazon.awssdk.testutils.service.http.MockAsyncHttpClient;

public class S3MockWithAsyncClientStabilityTest extends S3MockStabilityTestBase {

private static String bucketName = "s3mockwithasyncclientstabilitytests" + System.currentTimeMillis();

@BeforeEach
void setup(){
mockAsyncHttpClient = new MockAsyncHttpClient();
testClient = S3AsyncClient.builder()
.credentialsProvider(getDummyCredentials())
.httpClient(mockAsyncHttpClient)
.build();
}

@Override
protected String getTestBucketName() {
return bucketName;
}
}

0 comments on commit 1733cb7

Please sign in to comment.