-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
137 additions
and
0 deletions.
There are no files selected for viewing
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,137 @@ | ||
/* | ||
* Copyright 2014-2021 Andrew Gaul <andrew@gaul.org> | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.gaul.s3proxy; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.Map; | ||
import java.util.Properties; | ||
import java.util.Random; | ||
import java.util.regex.Pattern; | ||
|
||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.hash.HashCode; | ||
import com.google.common.hash.Hashing; | ||
import com.google.common.io.ByteSource; | ||
import com.google.inject.Module; | ||
|
||
import java.util.AbstractMap.SimpleEntry; | ||
|
||
import org.assertj.core.api.Assertions; | ||
import org.jclouds.ContextBuilder; | ||
import org.jclouds.blobstore.BlobStore; | ||
import org.jclouds.blobstore.BlobStoreContext; | ||
import org.jclouds.blobstore.domain.Blob; | ||
import org.jclouds.blobstore.domain.BlobMetadata; | ||
import org.jclouds.logging.slf4j.config.SLF4JLoggingModule; | ||
|
||
public final class RegexBlobStoreTest { | ||
private BlobStoreContext context; | ||
private BlobStore delegate; | ||
private String containerName; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
containerName = createRandomContainerName(); | ||
|
||
context = ContextBuilder | ||
.newBuilder("transient") | ||
.credentials("identity", "credential") | ||
.modules(ImmutableList.<Module>of(new SLF4JLoggingModule())) | ||
.build(BlobStoreContext.class); | ||
delegate = context.getBlobStore(); | ||
delegate.createContainerInLocation(null, containerName); | ||
|
||
} | ||
|
||
@After | ||
public void tearDown() throws Exception { | ||
if (context != null) { | ||
delegate.deleteContainer(containerName); | ||
context.close(); | ||
} | ||
} | ||
|
||
@Test | ||
public void testRemoveSomeCharsFromName() throws IOException { | ||
ImmutableList.Builder<Map.Entry<Pattern, String>> regexBuilder = new ImmutableList.Builder<>(); | ||
regexBuilder.add(new SimpleEntry<Pattern, String>(Pattern.compile("[^a-zA-Z0-9/_.]"), "_")); | ||
BlobStore regexBlobStore = RegexBlobStore.newRegexBlobStore(delegate, regexBuilder.build()); | ||
|
||
String initialBlobName = "test/remove:badchars-folder/blob.txt"; | ||
String targetBlobName = "test/remove_badchars_folder/blob.txt"; | ||
ByteSource content = TestUtils.randomByteSource().slice(0, 1024); | ||
@SuppressWarnings("deprecation") | ||
String contentHash = Hashing.md5().hashBytes(content.read()).toString(); | ||
Blob blob = regexBlobStore.blobBuilder(initialBlobName).payload(content).build(); | ||
|
||
String eTag = regexBlobStore.putBlob(containerName, blob); | ||
assertThat(eTag).isEqualTo(contentHash); | ||
|
||
BlobMetadata blobMetadata = regexBlobStore.blobMetadata( | ||
containerName, targetBlobName); | ||
|
||
assertThat(blobMetadata.getETag()).isEqualTo(contentHash); | ||
blob = regexBlobStore.getBlob(containerName, targetBlobName); | ||
try (InputStream actual = blob.getPayload().openStream(); | ||
InputStream expected = content.openStream()) { | ||
assertThat(actual).hasContentEqualTo(expected); | ||
} | ||
|
||
blob = regexBlobStore.getBlob(containerName, initialBlobName); | ||
try (InputStream actual = blob.getPayload().openStream(); | ||
InputStream expected = content.openStream()) { | ||
assertThat(actual).hasContentEqualTo(expected); | ||
} | ||
} | ||
|
||
@Test | ||
public void testParseMatchWithoutReplace() { | ||
Properties properties = new Properties(); | ||
properties.put( | ||
String.format("%s.%s.sample1", S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE, | ||
S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE_MATCH), | ||
"test"); | ||
properties.put( | ||
String.format("%s.%s.sample2", S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE, | ||
S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE_MATCH), | ||
"test"); | ||
properties.put( | ||
String.format("%s.%s.sample1", S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE, | ||
S3ProxyConstants.PROPERTY_REGEX_BLOBSTORE_REPLACE), | ||
"test"); | ||
|
||
try { | ||
RegexBlobStore.parseRegexs(properties); | ||
Assertions.failBecauseExceptionWasNotThrown( | ||
IllegalArgumentException.class); | ||
} catch (IllegalArgumentException exc) { | ||
assertThat(exc.getMessage()).isEqualTo( | ||
"Regex sample2 has no replace property associated"); | ||
} | ||
} | ||
|
||
private static String createRandomContainerName() { | ||
return "container-" + new Random().nextInt(Integer.MAX_VALUE); | ||
} | ||
} |