mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 21:18:31 +00:00
ca4f55f2e4
Similarly to what has been done for Azure (#48636) and GCS (#48762), this committ removes the existing Ant fixture that emulates a S3 storage service in favor of multiple docker-compose based fixtures. The goals here are multiple: be able to reuse a s3-fixture outside of the repository-s3 plugin; allow parallel execution of integration tests; removes the existing AmazonS3Fixture that has evolved in a weird beast in dedicated, more maintainable fixtures. The server side logic that emulates S3 mostly comes from the latest HttpHandler made for S3 blob store repository tests, with additional features extracted from the (now removed) AmazonS3Fixture: authentication checks, session token checks and improved response errors. Chunked upload request support for S3 object has been added too. The server side logic of all tests now reside in a single S3HttpHandler class. Whereas AmazonS3Fixture contained logic for basic tests, session token tests, EC2 tests or ECS tests, the S3 fixtures are now dedicated to each kind of test. Fixtures are inheriting from each other, making things easier to maintain.
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
version: '3'
|
|
services:
|
|
s3-fixture:
|
|
build:
|
|
context: .
|
|
args:
|
|
fixtureClass: fixture.s3.S3HttpFixture
|
|
port: 80
|
|
bucket: "bucket"
|
|
basePath: "base_path_integration_tests"
|
|
accessKey: "access_key"
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./testfixtures_shared/shared:/fixture/shared
|
|
ports:
|
|
- "80"
|
|
|
|
s3-fixture-with-session-token:
|
|
build:
|
|
context: .
|
|
args:
|
|
fixtureClass: fixture.s3.S3HttpFixtureWithSessionToken
|
|
port: 80
|
|
bucket: "session_token_bucket"
|
|
basePath: "session_token_base_path_integration_tests"
|
|
accessKey: "session_token_access_key"
|
|
sessionToken: "session_token"
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./testfixtures_shared/shared:/fixture/shared
|
|
ports:
|
|
- "80"
|
|
|
|
s3-fixture-with-ec2:
|
|
build:
|
|
context: .
|
|
args:
|
|
fixtureClass: fixture.s3.S3HttpFixtureWithEC2
|
|
port: 80
|
|
bucket: "ec2_bucket"
|
|
basePath: "ec2_base_path"
|
|
accessKey: "ec2_access_key"
|
|
sessionToken: "ec2_session_token"
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./testfixtures_shared/shared:/fixture/shared
|
|
ports:
|
|
- "80"
|
|
|
|
s3-fixture-with-ecs:
|
|
build:
|
|
context: .
|
|
args:
|
|
fixtureClass: fixture.s3.S3HttpFixtureWithECS
|
|
port: 80
|
|
bucket: "ecs_bucket"
|
|
basePath: "ecs_base_path"
|
|
accessKey: "ecs_access_key"
|
|
sessionToken: "ecs_session_token"
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./testfixtures_shared/shared:/fixture/shared
|
|
ports:
|
|
- "80"
|