You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by "Andrew Gaul (JIRA)" <ji...@apache.org> on 2016/01/14 21:52:40 UTC

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

     [ https://issues.apache.org/jira/browse/JCLOUDS-945?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew Gaul updated JCLOUDS-945:
--------------------------------
    Labels: filesystem transient  (was: )

> ListContainerOption's marker support in LocalBlobStore buggy
> ------------------------------------------------------------
>
>                 Key: JCLOUDS-945
>                 URL: https://issues.apache.org/jira/browse/JCLOUDS-945
>             Project: jclouds
>          Issue Type: Bug
>          Components: jclouds-blobstore
>            Reporter: Ka-Hing Cheung
>              Labels: filesystem, transient
>
> 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)