Repository: jclouds-labs-google Updated Branches: refs/heads/master 2b8590b2e -> c99af4d67
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-labs-google/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/commit/c99af4d6 Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/tree/c99af4d6 Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs-google/diff/c99af4d6 Branch: refs/heads/master Commit: c99af4d67a24d6f0b7fd1a36247eba5080fb8fef Parents: 2b8590b 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-labs-google/blob/c99af4d6/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java b/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java index 0850cd7..4caac24 100644 --- a/google-cloud-storage/src/test/java/org/jclouds/googlecloudstorage/blobstore/integration/GoogleCloudStorageContainerIntegrationLiveTest.java +++ b/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"
