You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by "Ka-Hing Cheung (JIRA)" <ji...@apache.org> on 2015/06/25 20:35:04 UTC

[jira] [Created] (JCLOUDS-945) ListContainerOption's marker support in LocalBlobStore buggy

Ka-Hing Cheung created JCLOUDS-945:
--------------------------------------

             Summary: ListContainerOption's marker support in LocalBlobStore buggy
                 Key: JCLOUDS-945
                 URL: https://issues.apache.org/jira/browse/JCLOUDS-945
             Project: jclouds
          Issue Type: Bug
            Reporter: Ka-Hing Cheung


adding this test fails

{code}
--- a/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java
+++ b/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java
@@ -16,12 +16,34 @@
  */
 package org.jclouds.blobstore.integration;
 
+import org.jclouds.blobstore.BlobStore;
+import org.jclouds.blobstore.domain.PageSet;
+import org.jclouds.blobstore.domain.StorageMetadata;
 import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
+import org.jclouds.blobstore.options.ListContainerOptions;
+import org.jclouds.utils.TestUtils;
 import org.testng.annotations.Test;
 
+import static org.assertj.core.api.Assertions.assertThat;
+
 @Test(groups = { "integration" })
 public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest {
    public TransientBlobIntegrationTest() {
       provider = "transient";
    }
+
+   @Test
+   public void testListMarker() throws Exception {
+      BlobStore blobStore = view.getBlobStore();
+      final String container = getContainerName();
+      try {
+         blobStore.createContainerInLocation(null, container);
+         blobStore.putBlob(container, blobStore.blobBuilder("a/b").payload("").build());
+         ListContainerOptions options = new ListContainerOptions().afterMarker("a/");
+         PageSet<? extends StorageMetadata> res = blobStore.list(container, options);
+         assertThat(res).hasSize(1);
+      } finally {
+         returnContainer(container);
+      }
+   }
 }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)