From 7863df69a6fdbc934aa7c0771a3f3e90ba325464 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Sat, 24 Jan 2015 14:08:08 -0800 Subject: [PATCH] Skip tests which cannot run on Atmos --- .../AtmosContainerIntegrationLiveTest.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java index 48dce5184e..9963451c8a 100644 --- a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java +++ b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java @@ -23,6 +23,7 @@ import java.io.IOException; import org.jclouds.blobstore.domain.BlobMetadata; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.testng.annotations.Test; +import org.testng.SkipException; @Test(groups = "live") public class AtmosContainerIntegrationLiveTest extends BaseContainerIntegrationTest { @@ -34,4 +35,19 @@ public class AtmosContainerIntegrationLiveTest extends BaseContainerIntegrationT // atmos doesn't support MD5 assertEquals(metadata.getContentMetadata().getContentMD5(), null); } + + @Override + public void testDelimiter() throws Exception { + throw new SkipException("Atmos does not use key names for markers"); + } + + @Override + public void testListMarkerAfterLastKey() throws Exception { + throw new SkipException("cannot specify arbitrary markers"); + } + + @Override + public void testListContainerWithZeroMaxResults() throws Exception { + throw new SkipException("Atmos requires a positive integer for max results"); + } }