Repository: jclouds Updated Branches: refs/heads/master 9e73bbec1 -> 5cbefccf9
JCLOUDS-902: Enable GCS access integration tests Enabled by request signing. Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/5cbefccf Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/5cbefccf Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/5cbefccf Branch: refs/heads/master Commit: 5cbefccf969fe8ab74b7111aedd486a4304ae903 Parents: 9e73bbe Author: Andrew Gaul <[email protected]> Authored: Sun Aug 6 15:21:27 2017 -0700 Committer: Andrew Gaul <[email protected]> Committed: Sun Aug 6 16:21:44 2017 -0700 ---------------------------------------------------------------------- .../GoogleCloudStorageBlobIntegrationLiveTest.java | 11 ----------- .../GoogleCloudStorageContainerIntegrationLiveTest.java | 11 ----------- 2 files changed, 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/5cbefccf/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java index d68441c..524ac20 100644 --- a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java +++ b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageBlobIntegrationLiveTest.java @@ -27,7 +27,6 @@ import java.util.Properties; import javax.ws.rs.core.MediaType; -import org.assertj.core.api.Fail; import org.jclouds.blobstore.BlobStore; import org.jclouds.blobstore.domain.Blob; import org.jclouds.blobstore.domain.BlobBuilder.PayloadBlobBuilder; @@ -256,16 +255,6 @@ public class GoogleCloudStorageBlobIntegrationLiveTest extends BaseBlobIntegrati } @Override - public void testSetBlobAccess() throws Exception { - try { - super.testSetBlobAccess(); - Fail.failBecauseExceptionWasNotThrown(UnsupportedOperationException.class); - } catch (UnsupportedOperationException uoe) { - throw new SkipException("request signing not supported on GCS", uoe); - } - } - - @Override @Test(expectedExceptions = UnsupportedOperationException.class) public void testCopyIfMatch() throws Exception { super.testCopyIfMatch(); http://git-wip-us.apache.org/repos/asf/jclouds/blob/5cbefccf/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java index ff7f665..119bd18 100644 --- a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java +++ b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java @@ -25,7 +25,6 @@ import java.util.Properties; import javax.ws.rs.core.MediaType; -import org.assertj.core.api.Fail; import org.jclouds.blobstore.domain.BlobMetadata; import org.jclouds.blobstore.domain.PageSet; import org.jclouds.blobstore.domain.StorageMetadata; @@ -93,14 +92,4 @@ public class GoogleCloudStorageContainerIntegrationLiveTest extends BaseContaine public void testListMarkerPrefix() throws Exception { throw new SkipException("cannot specify arbitrary markers"); } - - @Override - public void testSetContainerAccess() throws Exception { - try { - super.testSetContainerAccess(); - Fail.failBecauseExceptionWasNotThrown(UnsupportedOperationException.class); - } catch (UnsupportedOperationException uoe) { - throw new SkipException("request signing not supported on GCS", uoe); - } - } }
