From 5383148d9ef92fb39d8958abbe9cae19c80ca609 Mon Sep 17 00:00:00 2001 From: Timur Alperovich Date: Tue, 7 Jul 2015 15:20:02 -0700 Subject: [PATCH] Filesystem: disable directory integration test. There is no notion of marker blobs in the file system blob store, which means that when listing results after issuing the "createDirectory" request, the marker blob will not be in the result set. --- .../integration/FilesystemContainerIntegrationTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemContainerIntegrationTest.java b/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemContainerIntegrationTest.java index 4b6cd03523..bf6c4ab35b 100644 --- a/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemContainerIntegrationTest.java +++ b/apis/filesystem/src/test/java/org/jclouds/filesystem/integration/FilesystemContainerIntegrationTest.java @@ -34,6 +34,7 @@ import org.jclouds.blobstore.integration.internal.BaseBlobStoreIntegrationTest; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.jclouds.filesystem.reference.FilesystemConstants; import org.jclouds.filesystem.utils.TestUtils; +import org.testng.SkipException; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; @@ -155,6 +156,11 @@ public class FilesystemContainerIntegrationTest extends BaseContainerIntegration super.testListContainerMaxResults(); } + @Override + public void testDirectory() { + throw new SkipException("There is no notion of marker blobs in the file system blob store"); + } + @DataProvider public Object[][] ignoreOnMacOSX() { return org.jclouds.utils.TestUtils.isMacOSX() ? TestUtils.NO_INVOCATIONS