Skip to content

Commit

Permalink
Skip tests which fail on google-cloud-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed Dec 1, 2024
1 parent 83bc9f7 commit 769c5b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/java/org/gaul/s3proxy/AwsSdkTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,7 @@ public void testBlobListRecursive() throws Exception {

@Test
public void testBlobListRecursiveImplicitMarker() throws Exception {
assumeTrue(!Quirks.OPAQUE_MARKERS.contains(blobStoreType));
assumeTrue(!blobStoreType.equals("transient-nio2")); // TODO:

ObjectListing listing = client.listObjects(containerName);
Expand Down Expand Up @@ -1009,6 +1010,8 @@ public void testBlobListRecursiveImplicitMarker() throws Exception {

@Test
public void testBlobListV2() throws Exception {
assumeTrue(!Quirks.OPAQUE_MARKERS.contains(blobStoreType));

var metadata = new ObjectMetadata();
metadata.setContentLength(BYTE_SOURCE.size());
for (int i = 1; i < 5; ++i) {
Expand Down Expand Up @@ -1308,7 +1311,8 @@ public void testMaximumMultipartUpload() throws Exception {

@Test
public void testMultipartUploadAbort() throws Exception {
assumeTrue(!blobStoreType.equals("azureblob-sdk"));
assumeTrue(!blobStoreType.equals("azureblob-sdk") &&
!blobStoreType.equals("google-cloud-storage"));

String blobName = "multipart-upload-abort";
ByteSource byteSource = TestUtils.randomByteSource().slice(
Expand Down

0 comments on commit 769c5b8

Please sign in to comment.