updateTemporaryUrlKey test
Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/c1ce819f Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/c1ce819f Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/c1ce819f Branch: refs/heads/master Commit: c1ce819f6154d9661611d331e01f9f7bd29baf70 Parents: de88a72 Author: Zack Shoylev <[email protected]> Authored: Mon Jun 6 15:55:57 2016 -0500 Committer: Zack Shoylev <[email protected]> Committed: Tue Jun 7 17:37:39 2016 -0500 ---------------------------------------------------------------------- .../swift/v1/features/AccountApiLiveTest.java | 14 ++++++++ .../CloudFilesUSAccountApiLiveTest.java | 35 ++++++++++++++++++++ 2 files changed, 49 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/c1ce819f/apis/openstack-swift/src/test/java/org/jclouds/openstack/swift/v1/features/AccountApiLiveTest.java ---------------------------------------------------------------------- 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 4448422..e7d6e61 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<SwiftApi> { 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)); + } + } } http://git-wip-us.apache.org/repos/asf/jclouds/blob/c1ce819f/providers/rackspace-cloudfiles-us/src/test/java/org/jclouds/rackspace/cloudfiles/us/features/CloudFilesUSAccountApiLiveTest.java ---------------------------------------------------------------------- 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 0000000..b4d74a4 --- /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"; + } +}
