Repository: jclouds Updated Branches: refs/heads/master 10f72f073 -> a46f3924e
JCLOUDS-988: Subclass ObjectApiLiveTest in Cloudfiles providers This allows tests to run. Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/a46f3924 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/a46f3924 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/a46f3924 Branch: refs/heads/master Commit: a46f3924e37938403a7ba184acb7163b94378497 Parents: 10f72f0 Author: Andrew Gaul <[email protected]> Authored: Mon Aug 10 17:50:59 2015 -0700 Committer: Andrew Gaul <[email protected]> Committed: Tue Aug 11 12:27:16 2015 -0700 ---------------------------------------------------------------------- .../features/CloudFilesUKObjectApiLiveTest.java | 31 ++++++++++++++++++++ .../features/CloudFilesUSObjectApiLiveTest.java | 31 ++++++++++++++++++++ 2 files changed, 62 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/a46f3924/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKObjectApiLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKObjectApiLiveTest.java b/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKObjectApiLiveTest.java new file mode 100644 index 0000000..5024189 --- /dev/null +++ b/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKObjectApiLiveTest.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jclouds.rackspace.cloudfiles.v1.features; + +import org.jclouds.rackspace.cloudfiles.v1.features.CloudFilesObjectApiLiveTest; +import org.testng.annotations.Test; + +/** + * Tests the live behavior of the OpenStack Object Storage {@link ObjectApi} + * via the {@link CloudFilesApi}. + */ +@Test(groups = "live", testName = "CloudFilesUKObjectApiLiveTest") +public class CloudFilesUKObjectApiLiveTest extends CloudFilesObjectApiLiveTest { + public CloudFilesUKObjectApiLiveTest() { + provider = "rackspace-cloudfiles-uk"; + } +} http://git-wip-us.apache.org/repos/asf/jclouds/blob/a46f3924/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSObjectApiLiveTest.java ---------------------------------------------------------------------- diff --git a/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSObjectApiLiveTest.java b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSObjectApiLiveTest.java new file mode 100644 index 0000000..2a4bd8a --- /dev/null +++ b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSObjectApiLiveTest.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jclouds.rackspace.cloudfiles.v1.features; + +import org.jclouds.rackspace.cloudfiles.v1.features.CloudFilesObjectApiLiveTest; +import org.testng.annotations.Test; + +/** + * Tests the live behavior of the OpenStack Object Storage {@link ObjectApi} + * via the {@link CloudFilesApi}. + */ +@Test(groups = "live", testName = "CloudFilesUSObjectApiLiveTest") +public class CloudFilesUSObjectApiLiveTest extends CloudFilesObjectApiLiveTest { + public CloudFilesUSObjectApiLiveTest() { + provider = "rackspace-cloudfiles-us"; + } +}
