mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +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.
24 lines
609 B
Docker
24 lines
609 B
Docker
FROM ubuntu:19.04
|
|
|
|
RUN apt-get update -qqy
|
|
RUN apt-get install -qqy openjdk-12-jre-headless
|
|
|
|
ARG fixtureClass
|
|
ARG port
|
|
ARG bucket
|
|
ARG basePath
|
|
ARG accessKey
|
|
ARG sessionToken
|
|
|
|
ENV S3_FIXTURE_CLASS=${fixtureClass}
|
|
ENV S3_FIXTURE_PORT=${port}
|
|
ENV S3_FIXTURE_BUCKET=${bucket}
|
|
ENV S3_FIXTURE_BASE_PATH=${basePath}
|
|
ENV S3_FIXTURE_ACCESS_KEY=${accessKey}
|
|
ENV S3_FIXTURE_SESSION_TOKEN=${sessionToken}
|
|
|
|
ENTRYPOINT exec java -classpath "/fixture/shared/*" \
|
|
$S3_FIXTURE_CLASS 0.0.0.0 "$S3_FIXTURE_PORT" "$S3_FIXTURE_BUCKET" "$S3_FIXTURE_BASE_PATH" "$S3_FIXTURE_ACCESS_KEY" "$S3_FIXTURE_SESSION_TOKEN"
|
|
|
|
EXPOSE $port
|