From 0c09140f54c59ae6c386f018e5f8e0ef18d9dbf8 Mon Sep 17 00:00:00 2001 From: adriancole Date: Thu, 21 Mar 2013 09:07:23 -0700 Subject: [PATCH] azureblob does not support expires header --- .../blobstore/integration/AzureBlobIntegrationLiveTest.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobIntegrationLiveTest.java b/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobIntegrationLiveTest.java index e22bebd58a..c8bccbb239 100644 --- a/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobIntegrationLiveTest.java +++ b/providers/azureblob/src/test/java/org/jclouds/azureblob/blobstore/integration/AzureBlobIntegrationLiveTest.java @@ -23,6 +23,7 @@ import java.util.concurrent.ExecutionException; import org.jclouds.blobstore.domain.Blob; import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest; +import org.testng.SkipException; import org.testng.annotations.Test; /** @@ -39,6 +40,10 @@ public class AzureBlobIntegrationLiveTest extends BaseBlobIntegrationTest { // this currently fails } + public void testCreateBlobWithExpiry() throws InterruptedException { + throw new SkipException("Expires header unsupported: http://msdn.microsoft.com/en-us/library/windowsazure/dd179404.aspx#Subheading3"); + } + @Override @Test(expectedExceptions = IllegalArgumentException.class) public void testPutObjectStream() throws InterruptedException, IOException, ExecutionException {