blob: 6b6f316c5824972b477b38f11af5a03f5aa85211 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you under the Apache License, Version 2.0 (the *
* "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, *
* software distributed under the License 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 org.apache.james.blob.objectstorage.aws;
import org.apache.james.blob.api.BlobId;
import org.apache.james.blob.api.BlobStore;
import org.apache.james.blob.api.BlobStoreContract;
import org.apache.james.blob.api.HashBlobId;
import org.apache.james.metrics.api.NoopGaugeRegistry;
import org.apache.james.metrics.tests.RecordingMetricFactory;
import org.apache.james.server.blob.deduplication.BlobStoreFactory;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.extension.ExtendWith;
@ExtendWith(DockerAwsS3Extension.class)
class S3PassThroughBlobStoreTest implements BlobStoreContract {
private static BlobStore testee;
private static S3BlobStoreDAO s3BlobStoreDAO;
@BeforeAll
static void setUpClass(DockerAwsS3Container dockerAwsS3) {
AwsS3AuthConfiguration authConfiguration = AwsS3AuthConfiguration.builder()
.endpoint(dockerAwsS3.getEndpoint())
.accessKeyId(DockerAwsS3Container.ACCESS_KEY_ID)
.secretKey(DockerAwsS3Container.SECRET_ACCESS_KEY)
.build();
S3BlobStoreConfiguration s3Configuration = S3BlobStoreConfiguration.builder()
.authConfiguration(authConfiguration)
.region(dockerAwsS3.dockerAwsS3().region())
.build();
HashBlobId.Factory blobIdFactory = new HashBlobId.Factory();
s3BlobStoreDAO = new S3BlobStoreDAO(s3Configuration, blobIdFactory, new RecordingMetricFactory(), new NoopGaugeRegistry());
testee = BlobStoreFactory.builder()
.blobStoreDAO(s3BlobStoreDAO)
.blobIdFactory(blobIdFactory)
.defaultBucketName()
.passthrough();
}
@AfterEach
void tearDown() {
s3BlobStoreDAO.deleteAllBuckets().block();
}
@AfterAll
static void tearDownClass() {
s3BlobStoreDAO.close();
}
@Override
public BlobStore testee() {
return testee;
}
@Override
public BlobId.Factory blobIdFactory() {
return new HashBlobId.Factory();
}
}