updateTemporaryUrlKey test

This commit is contained in:
Zack Shoylev 2016-06-06 15:55:57 -05:00
parent de88a72e7a
commit c1ce819f61
2 changed files with 49 additions and 0 deletions

View File

@ -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));
}
}
}

View File

@ -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";
}
}