You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2017/05/08 18:10:16 UTC

[14/50] jclouds git commit: JCLOUDS-930: Skip the prefix test in GCS.

JCLOUDS-930: Skip the prefix test in GCS.

As the prefix option has not been plumbed down into GCS, we should
skip the prefix test.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/7be0753e
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/7be0753e
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/7be0753e

Branch: refs/heads/master
Commit: 7be0753e74c3b60a8461f640bd6c2f658a9f3035
Parents: e76c59f
Author: Timur Alperovich <ti...@gmail.com>
Authored: Mon Jun 29 21:52:17 2015 -0700
Committer: Timur Alperovich <ti...@gmail.com>
Committed: Mon Jun 29 21:52:17 2015 -0700

----------------------------------------------------------------------
 .../integration/GoogleCloudStorageContainerLiveTest.java       | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/7be0753e/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerLiveTest.java
----------------------------------------------------------------------
diff --git a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerLiveTest.java b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerLiveTest.java
index 559713b..5aa033e 100644
--- a/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerLiveTest.java
+++ b/providers/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerLiveTest.java
@@ -20,6 +20,7 @@ import java.util.Properties;
 
 import org.jclouds.blobstore.integration.internal.BaseContainerLiveTest;
 import org.jclouds.googlecloud.internal.TestProperties;
+import org.testng.SkipException;
 import org.testng.annotations.Test;
 
 @Test(groups = { "live" })
@@ -33,4 +34,9 @@ public class GoogleCloudStorageContainerLiveTest extends BaseContainerLiveTest {
       TestProperties.setGoogleCredentialsFromJson(provider);
       return TestProperties.apply(provider, super.setupProperties());
    }
+
+   @Override
+   public void testContainerListWithPrefix() {
+      throw new SkipException("Prefix option has not been plumbed down to GCS");
+   }
 }