-
Notifications
You must be signed in to change notification settings - Fork 853
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add stability test case to test issue #4608
- Loading branch information
Showing
2 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
...-tests/src/it/java/software/amazon/awssdk/stability/tests/s3/S3MockStabilityTestBase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
39 changes: 39 additions & 0 deletions
39
...it/java/software/amazon/awssdk/stability/tests/s3/S3MockWithAsyncClientStabilityTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |