Skips tests for time signed URLs

This commit is contained in:
Zack Shoylev 2013-08-12 16:16:31 -05:00
parent d387a25113
commit 100afba1d8
3 changed files with 44 additions and 0 deletions

View File

@ -16,7 +16,10 @@
*/
package org.jclouds.cloudfiles.blobstore.integration;
import java.io.IOException;
import org.jclouds.openstack.swift.blobstore.integration.SwiftBlobSignerLiveTest;
import org.testng.SkipException;
import org.testng.annotations.Test;
/**
@ -27,4 +30,16 @@ public class CloudFilesBlobSignerLiveTest extends SwiftBlobSignerLiveTest {
public CloudFilesBlobSignerLiveTest() {
provider = "cloudfiles";
}
@Override
@Test
public void testSignGetUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
@Override
@Test
public void testSignPutUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
}

View File

@ -16,7 +16,10 @@
*/
package org.jclouds.rackspace.cloudfiles.blobstore.integration;
import java.io.IOException;
import org.jclouds.cloudfiles.blobstore.integration.CloudFilesBlobSignerLiveTest;
import org.testng.SkipException;
import org.testng.annotations.Test;
/**
@ -29,4 +32,15 @@ public class CloudFilesUKBlobSignerLiveTest extends CloudFilesBlobSignerLiveTest
provider = "cloudfiles-uk";
}
@Override
@Test
public void testSignGetUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
@Override
@Test
public void testSignPutUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
}

View File

@ -16,7 +16,10 @@
*/
package org.jclouds.rackspace.cloudfiles.blobstore.integration;
import java.io.IOException;
import org.jclouds.cloudfiles.blobstore.integration.CloudFilesBlobSignerLiveTest;
import org.testng.SkipException;
import org.testng.annotations.Test;
/**
@ -28,4 +31,16 @@ public class CloudFilesUSBlobSignerLiveTest extends CloudFilesBlobSignerLiveTest
public CloudFilesUSBlobSignerLiveTest() {
provider = "cloudfiles-us";
}
@Override
@Test
public void testSignGetUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
@Override
@Test
public void testSignPutUrlWithTime() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
}