diff --git a/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/features/AccountApiLiveTest.java b/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/features/AccountApiLiveTest.java index 4448422246..e7d6e6196e 100644 --- a/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/features/AccountApiLiveTest.java +++ b/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/features/AccountApiLiveTest.java @@ -23,6 +23,7 @@ import static org.testng.Assert.assertTrue; import java.util.Map; import java.util.Map.Entry; +import java.util.UUID; import org.jclouds.openstack.swift.v1.SwiftApi; import org.jclouds.openstack.swift.v1.domain.Account; @@ -84,4 +85,17 @@ public class AccountApiLiveTest extends BaseSwiftApiLiveTest { account + " didn't have metadata: " + entry); } } + + public void testUpdateTemporaryUrlKey() throws Exception { + for (String regionId : regions) { + AccountApi accountApi = api.getAccountApi(regionId); + + String key = UUID.randomUUID().toString(); + + accountApi.updateTemporaryUrlKey(key); + + assertTrue(accountApi.get().getMetadata().containsKey("temp-url-key")); + assertTrue(accountApi.get().getMetadata().get("temp-url-key").equals(key)); + } + } } diff --git a/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSAccountApiLiveTest.java b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSAccountApiLiveTest.java new file mode 100644 index 0000000000..b4d74a43fc --- /dev/null +++ b/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSAccountApiLiveTest.java @@ -0,0 +1,35 @@ +/* + * 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.openstack.swift.v1.features.AccountApi; +import org.jclouds.rackspace.cloudfiles.v1.CloudFilesApi; +import org.jclouds.rackspace.cloudfiles.v1.features.CloudFilesAccountApiLiveTest; +import org.testng.annotations.Test; + +/** + * Tests the live behavior of the OpenStack Object Storage {@link AccountApi} + * via the {@link CloudFilesApi}. + * Uses the Rackspace US provider + */ +@Test(groups = "live", testName = "CloudFilesUSAccountApiLiveTest") +public class CloudFilesUSAccountApiLiveTest extends CloudFilesAccountApiLiveTest { + + public CloudFilesUSAccountApiLiveTest() { + provider = "rackspace-cloudfiles-us"; + } +}