Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(middleware-sdk-s3): add e2e test for throw-200-errors #6360

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions packages/middleware-sdk-s3/src/throw-200-exceptions.e2e.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import { S3 } from "@aws-sdk/client-s3";
import { GetCallerIdentityCommandOutput, STS } from "@aws-sdk/client-sts";

jest.setTimeout(100000);

describe("S3 throw 200 exceptions", () => {
const config = {
region: "us-west-2",
};
const s3 = new S3(config);
const stsClient = new STS(config);

const alphabet = "abcdefghijklmnopqrstuvwxyz";
const randId = alphabet[(Math.random() * alphabet.length) | 0] + alphabet[(Math.random() * alphabet.length) | 0];
let Bucket: string;
let callerID: GetCallerIdentityCommandOutput;

beforeAll(async () => {
callerID = await stsClient.getCallerIdentity({});
Bucket = `${callerID.Account}-${randId}-s3-200s-e2e-test-empty-${config.region}-${(Date.now() / 1000) | 0}`;

await s3.createBucket({
Bucket,
});
});

afterAll(async () => {
const list = await s3.listObjectsV2({
Bucket,
});
for (const item of list.Contents ?? []) {
await s3.deleteObject({
Bucket,
Key: item.Key,
});
}

await s3.deleteBucket({
Bucket,
});
s3.destroy();
});

it("should split stream successfully for less than 3kb payload and greater than 3kb payload", async () => {
for (let i = 0; i < 10; ++i) {
await s3.listObjects({
Bucket,
});

await s3.putObject({
Bucket,
Key: i + "long-text-".repeat(10),
Body: "abcd",
});
}
});
});
Loading