You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2016/01/22 23:05:14 UTC

jclouds git commit: JCLOUDS-988: Subclass StaticLargeObjectApiLiveTest in Cloudfiles providers

Repository: jclouds
Updated Branches:
  refs/heads/master fcfc94ef6 -> 3a65df1e2


JCLOUDS-988: Subclass StaticLargeObjectApiLiveTest 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/3a65df1e
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/3a65df1e
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/3a65df1e

Branch: refs/heads/master
Commit: 3a65df1e2ee8e1bd7e8655f86ce9191c215cb465
Parents: fcfc94e
Author: Andrew Gaul <ga...@apache.org>
Authored: Fri Jan 22 13:57:54 2016 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Fri Jan 22 14:01:49 2016 -0800

----------------------------------------------------------------------
 .../CloudFilesStaticLargeObjectApiLiveTest.java | 31 ++++++++++++++++++++
 ...loudFilesUKStaticLargeObjectApiLiveTest.java | 31 ++++++++++++++++++++
 ...loudFilesUSStaticLargeObjectApiLiveTest.java | 31 ++++++++++++++++++++
 3 files changed, 93 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/3a65df1e/apis/rackspace-cloudfiles/src/test/java/org/jclouds/rackspace/cloudfiles/v1/features/CloudFilesStaticLargeObjectApiLiveTest.java
----------------------------------------------------------------------
diff --git a/apis/rackspace-cloudfiles/src/test/java/org/jclouds/rackspace/cloudfiles/v1/features/CloudFilesStaticLargeObjectApiLiveTest.java b/apis/rackspace-cloudfiles/src/test/java/org/jclouds/rackspace/cloudfiles/v1/features/CloudFilesStaticLargeObjectApiLiveTest.java
new file mode 100644
index 0000000..119edc2
--- /dev/null
+++ b/apis/rackspace-cloudfiles/src/test/java/org/jclouds/rackspace/cloudfiles/v1/features/CloudFilesStaticLargeObjectApiLiveTest.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.openstack.swift.v1.features.StaticLargeObjectApiLiveTest;
+import org.testng.annotations.Test;
+
+/**
+ * Tests the live behavior of the OpenStack Object Storage {@link StaticLargeObjectApi}
+ * via the {@link CloudFilesApi}.
+ */
+@Test(groups = "live", testName = "CloudFilesStaticLargeObjectApiLiveTest")
+public class CloudFilesStaticLargeObjectApiLiveTest extends StaticLargeObjectApiLiveTest {
+   public CloudFilesStaticLargeObjectApiLiveTest() {
+      provider = "rackspace-cloudfiles";
+   }
+}

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3a65df1e/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKStaticLargeObjectApiLiveTest.java
----------------------------------------------------------------------
diff --git a/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKStaticLargeObjectApiLiveTest.java b/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKStaticLargeObjectApiLiveTest.java
new file mode 100644
index 0000000..7cf6922
--- /dev/null
+++ b/providers/rackspace-cloudfiles-uk/src/test/java/org/jclouds/rackspace/cloudfiles/uk/features/CloudFilesUKStaticLargeObjectApiLiveTest.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.uk.features;
+
+import org.jclouds.rackspace.cloudfiles.v1.features.CloudFilesStaticLargeObjectApiLiveTest;
+import org.testng.annotations.Test;
+
+/**
+ * Tests the live behavior of the OpenStack Object Storage {@link StaticLargeObjectApi}
+ * via the {@link CloudFilesApi}.
+ */
+@Test(groups = "live", testName = "CloudFilesUKStaticLargeObjectApiLiveTest")
+public class CloudFilesUKStaticLargeObjectApiLiveTest extends CloudFilesStaticLargeObjectApiLiveTest {
+   public CloudFilesUKStaticLargeObjectApiLiveTest() {
+      provider = "rackspace-cloudfiles-uk";
+   }
+}

http://git-wip-us.apache.org/repos/asf/jclouds/blob/3a65df1e/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSStaticLargeObjectApiLiveTest.java
----------------------------------------------------------------------
diff --git a/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSStaticLargeObjectApiLiveTest.java b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSStaticLargeObjectApiLiveTest.java
new file mode 100644
index 0000000..33ea781
--- /dev/null
+++ b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSStaticLargeObjectApiLiveTest.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.us.features;
+
+import org.jclouds.rackspace.cloudfiles.v1.features.CloudFilesStaticLargeObjectApiLiveTest;
+import org.testng.annotations.Test;
+
+/**
+ * Tests the live behavior of the OpenStack Object Storage {@link StaticLargeObjectApi}
+ * via the {@link CloudFilesApi}.
+ */
+@Test(groups = "live", testName = "CloudFilesUSStaticLargeObjectApiLiveTest")
+public class CloudFilesUSStaticLargeObjectApiLiveTest extends CloudFilesStaticLargeObjectApiLiveTest {
+   public CloudFilesUSStaticLargeObjectApiLiveTest() {
+      provider = "rackspace-cloudfiles-us";
+   }
+}