JCLOUDS-732: Local blobstore portable object ACLs

Intentionally unimplemented.
This commit is contained in:
Andrew Gaul 2015-02-18 13:51:57 -08:00
parent 019ae75a61
commit d8aea21f72
3 changed files with 22 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import org.jclouds.blobstore.integration.internal.BaseBlobStoreIntegrationTest;
import org.jclouds.filesystem.reference.FilesystemConstants;
import org.jclouds.filesystem.utils.TestUtils;
import org.testng.annotations.Test;
import org.testng.SkipException;
@Test(groups = { "integration" }, singleThreaded = true, testName = "blobstore.FilesystemBlobIntegrationTest")
public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
@ -86,4 +87,8 @@ public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
}
}
@Override
public void testSetBlobAccess() throws Exception {
throw new SkipException("Intentionally not implemented for the transient provider");
}
}

View File

@ -45,6 +45,7 @@ import org.jclouds.blobstore.ContainerNotFoundException;
import org.jclouds.blobstore.KeyNotFoundException;
import org.jclouds.blobstore.LocalStorageStrategy;
import org.jclouds.blobstore.domain.Blob;
import org.jclouds.blobstore.domain.BlobAccess;
import org.jclouds.blobstore.domain.BlobBuilder;
import org.jclouds.blobstore.domain.BlobMetadata;
import org.jclouds.blobstore.domain.ContainerAccess;
@ -344,6 +345,16 @@ public final class LocalBlobStore implements BlobStore {
}
}
@Override
public BlobAccess getBlobAccess(String container, String name) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void setBlobAccess(String container, String name, BlobAccess access) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public boolean deleteContainerIfEmpty(String containerName) {
boolean returnVal = true;

View File

@ -18,10 +18,16 @@ package org.jclouds.blobstore.integration;
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
import org.testng.annotations.Test;
import org.testng.SkipException;
@Test(groups = { "integration" })
public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest {
public TransientBlobIntegrationTest() {
provider = "transient";
}
@Override
public void testSetBlobAccess() throws Exception {
throw new SkipException("Intentionally not implemented for the transient provider");
}
}