GCS delimiter test should not be special cased. GCS delimiter implementation now works similarly to the other providers (fixed in a prior commit) and we do not need to special case the test.
Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/06125793 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/06125793 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/06125793 Branch: refs/heads/master Commit: 06125793d24a405c42a540af3be6523f9ffa6316 Parents: 2e1e109 Author: Timur Alperovich <[email protected]> Authored: Tue Sep 29 21:27:35 2015 -0700 Committer: Timur Alperovich <[email protected]> Committed: Tue Sep 29 21:29:08 2015 -0700 ---------------------------------------------------------------------- ...CloudStorageContainerIntegrationLiveTest.java | 19 ------------------- 1 file changed, 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/06125793/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 0850cd7..4caac24 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 @@ -19,7 +19,6 @@ package org.jclouds.googlecloudstorage.blobstore.integration; import static com.google.common.collect.Iterables.get; import static org.jclouds.blobstore.options.ListContainerOptions.Builder.maxResults; import static org.testng.Assert.assertEquals; -import static org.testng.Assert.assertNull; import java.io.IOException; import java.util.Properties; @@ -30,7 +29,6 @@ import org.jclouds.blobstore.domain.BlobMetadata; import org.jclouds.blobstore.domain.PageSet; import org.jclouds.blobstore.domain.StorageMetadata; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; -import org.jclouds.blobstore.options.ListContainerOptions; import org.jclouds.googlecloud.internal.TestProperties; import org.testng.SkipException; import org.testng.annotations.Test; @@ -78,23 +76,6 @@ public class GoogleCloudStorageContainerIntegrationLiveTest extends BaseContaine } } - /** Google Cloud Storage lists prefixes and objects in two different lists */ - @Override - public void testListRootUsesDelimiter() throws InterruptedException { - String containerName = getContainerName(); - try { - String prefix = "rootdelimiter"; - addTenObjectsUnderPrefix(containerName, prefix); - add15UnderRoot(containerName); - PageSet<? extends StorageMetadata> container = view.getBlobStore().list(containerName, - new ListContainerOptions()); - assertNull(container.getNextMarker()); - assertEquals(container.size(), 15); - } finally { - returnContainer(containerName); - } - } - @Override public void testDirectory() throws InterruptedException { // TODO: testDirectory fails when querying blob with name "directory/directory"; querying "directory%2Fdirectory"
