Skip testSetContainerAccess for local blobstores

These lack a public HTTP endpoint needed for this test.
This commit is contained in:
Andrew Gaul 2015-12-20 01:14:33 -08:00
parent ffa7c5c587
commit 37f307ecd0
2 changed files with 13 additions and 0 deletions

View File

@ -185,4 +185,10 @@ public class FilesystemContainerIntegrationTest extends BaseContainerIntegration
}
return super.getBlobsToEscape();
}
@Override
@Test(groups = { "integration", "live" })
public void testSetContainerAccess() throws Exception {
throw new SkipException("transient does not support anonymous access");
}
}

View File

@ -32,6 +32,7 @@ import org.jclouds.blobstore.domain.StorageMetadata;
import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest;
import org.jclouds.domain.Location;
import org.testng.annotations.Test;
import org.testng.SkipException;
import com.google.common.collect.ImmutableMap;
@ -80,4 +81,10 @@ public class TransientContainerIntegrationTest extends BaseContainerIntegrationT
created = blobStore.createContainerInLocation(location, container);
assertFalse(created);
}
@Override
@Test(groups = { "integration", "live" })
public void testSetContainerAccess() throws Exception {
throw new SkipException("filesystem does not support anonymous access");
}
}