mirror of https://github.com/apache/jclouds.git
Merge pull request #604 from aplowe/openstack-nova-ec2
Openstack nova ec2: adding importKeyPairInRegion() to nova-ec2
This commit is contained in:
commit
6d04c30f22
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.jclouds.aws.ec2.functions;
|
package org.jclouds.ec2.functions;
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkArgument;
|
import static com.google.common.base.Preconditions.checkArgument;
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
import static com.google.common.base.Preconditions.checkNotNull;
|
|
@ -16,7 +16,7 @@
|
||||||
* specific language governing permissions and limitations
|
* specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package org.jclouds.aws.ec2.functions;
|
package org.jclouds.ec2.functions;
|
||||||
|
|
||||||
import static org.testng.Assert.assertEquals;
|
import static org.testng.Assert.assertEquals;
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jclouds.driver</groupId>
|
<groupId>org.jclouds.driver</groupId>
|
||||||
<artifactId>jclouds-slf4j</artifactId>
|
<artifactId>jclouds-log4j</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
|
@ -29,8 +29,6 @@ import java.util.Properties;
|
||||||
|
|
||||||
import org.jclouds.apis.ApiMetadata;
|
import org.jclouds.apis.ApiMetadata;
|
||||||
import org.jclouds.ec2.EC2ApiMetadata;
|
import org.jclouds.ec2.EC2ApiMetadata;
|
||||||
import org.jclouds.ec2.EC2AsyncClient;
|
|
||||||
import org.jclouds.ec2.EC2Client;
|
|
||||||
import org.jclouds.ec2.compute.config.EC2ResolveImagesModule;
|
import org.jclouds.ec2.compute.config.EC2ResolveImagesModule;
|
||||||
import org.jclouds.openstack.nova.ec2.config.NovaEC2ComputeServiceContextModule;
|
import org.jclouds.openstack.nova.ec2.config.NovaEC2ComputeServiceContextModule;
|
||||||
import org.jclouds.openstack.nova.ec2.config.NovaEC2RestClientModule;
|
import org.jclouds.openstack.nova.ec2.config.NovaEC2RestClientModule;
|
||||||
|
@ -48,12 +46,12 @@ import com.google.inject.Module;
|
||||||
public class NovaEC2ApiMetadata extends EC2ApiMetadata {
|
public class NovaEC2ApiMetadata extends EC2ApiMetadata {
|
||||||
|
|
||||||
/** The serialVersionUID */
|
/** The serialVersionUID */
|
||||||
private static final long serialVersionUID = -1492951757032303845L;
|
private static final long serialVersionUID = -8539835226183747429L;
|
||||||
|
|
||||||
public static final TypeToken<RestContext<EC2Client, EC2AsyncClient>> CONTEXT_TOKEN = new TypeToken<RestContext<EC2Client, EC2AsyncClient>>() {
|
public static final TypeToken<RestContext<NovaEC2Client, NovaEC2AsyncClient>> CONTEXT_TOKEN = new TypeToken<RestContext<NovaEC2Client, NovaEC2AsyncClient>>() {
|
||||||
private static final long serialVersionUID = -5070937833892503232L;
|
private static final long serialVersionUID = -6449920293625658712L;
|
||||||
};
|
};
|
||||||
|
|
||||||
private static Builder builder() {
|
private static Builder builder() {
|
||||||
return new Builder();
|
return new Builder();
|
||||||
}
|
}
|
||||||
|
@ -90,12 +88,13 @@ public class NovaEC2ApiMetadata extends EC2ApiMetadata {
|
||||||
|
|
||||||
public static class Builder extends EC2ApiMetadata.Builder {
|
public static class Builder extends EC2ApiMetadata.Builder {
|
||||||
protected Builder(){
|
protected Builder(){
|
||||||
super(EC2Client.class, EC2AsyncClient.class);
|
super(NovaEC2Client.class, NovaEC2AsyncClient.class);
|
||||||
id("openstack-nova-ec2")
|
id("openstack-nova-ec2")
|
||||||
.name("OpenStack Nova's EC2-clone API")
|
.name("OpenStack Nova's EC2-clone API")
|
||||||
.version("2009-04-04")
|
.version("2009-04-04")
|
||||||
.defaultEndpoint("http://localhost:8773/services/Cloud")
|
.defaultEndpoint("http://localhost:8773/services/Cloud")
|
||||||
.defaultProperties(NovaEC2ApiMetadata.defaultProperties())
|
.defaultProperties(NovaEC2ApiMetadata.defaultProperties())
|
||||||
|
.context(CONTEXT_TOKEN)
|
||||||
.defaultModules(ImmutableSet.<Class<? extends Module>>of(NovaEC2RestClientModule.class, EC2ResolveImagesModule.class, NovaEC2ComputeServiceContextModule.class));
|
.defaultModules(ImmutableSet.<Class<? extends Module>>of(NovaEC2RestClientModule.class, EC2ResolveImagesModule.class, NovaEC2ComputeServiceContextModule.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2;
|
||||||
|
|
||||||
|
import org.jclouds.ec2.EC2AsyncClient;
|
||||||
|
import org.jclouds.openstack.nova.ec2.services.NovaEC2KeyPairAsyncClient;
|
||||||
|
import org.jclouds.rest.annotations.Delegate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides asynchronous access to EC2 services.
|
||||||
|
*
|
||||||
|
* @author Adam Lowe
|
||||||
|
*/
|
||||||
|
public interface NovaEC2AsyncClient extends EC2AsyncClient {
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Delegate
|
||||||
|
@Override
|
||||||
|
NovaEC2KeyPairAsyncClient getKeyPairServices();
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2;
|
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import org.jclouds.concurrent.Timeout;
|
||||||
|
import org.jclouds.ec2.EC2Client;
|
||||||
|
import org.jclouds.openstack.nova.ec2.services.NovaEC2KeyPairClient;
|
||||||
|
import org.jclouds.rest.annotations.Delegate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides synchronous access to EC2 services.
|
||||||
|
*
|
||||||
|
* @author Adam Lowe
|
||||||
|
*/
|
||||||
|
@Timeout(duration = 180, timeUnit = TimeUnit.SECONDS)
|
||||||
|
public interface NovaEC2Client extends EC2Client {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Delegate
|
||||||
|
@Override
|
||||||
|
NovaEC2KeyPairClient getKeyPairServices();
|
||||||
|
}
|
|
@ -18,9 +18,14 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.openstack.nova.ec2.config;
|
package org.jclouds.openstack.nova.ec2.config;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import javax.inject.Singleton;
|
||||||
|
|
||||||
import org.jclouds.ec2.EC2AsyncClient;
|
import org.jclouds.ec2.EC2AsyncClient;
|
||||||
import org.jclouds.ec2.EC2Client;
|
import org.jclouds.ec2.EC2Client;
|
||||||
import org.jclouds.ec2.config.EC2RestClientModule;
|
import org.jclouds.ec2.config.EC2RestClientModule;
|
||||||
|
import org.jclouds.ec2.services.*;
|
||||||
import org.jclouds.ec2.suppliers.DescribeAvailabilityZonesInRegion;
|
import org.jclouds.ec2.suppliers.DescribeAvailabilityZonesInRegion;
|
||||||
import org.jclouds.ec2.xml.CreateVolumeResponseHandler;
|
import org.jclouds.ec2.xml.CreateVolumeResponseHandler;
|
||||||
import org.jclouds.ec2.xml.DescribeImagesResponseHandler;
|
import org.jclouds.ec2.xml.DescribeImagesResponseHandler;
|
||||||
|
@ -28,10 +33,17 @@ import org.jclouds.location.config.LocationModule;
|
||||||
import org.jclouds.location.suppliers.RegionIdToZoneIdsSupplier;
|
import org.jclouds.location.suppliers.RegionIdToZoneIdsSupplier;
|
||||||
import org.jclouds.location.suppliers.ZoneIdsSupplier;
|
import org.jclouds.location.suppliers.ZoneIdsSupplier;
|
||||||
import org.jclouds.location.suppliers.derived.ZoneIdsFromRegionIdToZoneIdsValues;
|
import org.jclouds.location.suppliers.derived.ZoneIdsFromRegionIdToZoneIdsValues;
|
||||||
|
import org.jclouds.openstack.nova.ec2.NovaEC2AsyncClient;
|
||||||
|
import org.jclouds.openstack.nova.ec2.NovaEC2Client;
|
||||||
|
import org.jclouds.openstack.nova.ec2.services.NovaEC2KeyPairAsyncClient;
|
||||||
|
import org.jclouds.openstack.nova.ec2.services.NovaEC2KeyPairClient;
|
||||||
import org.jclouds.openstack.nova.ec2.xml.NovaCreateVolumeResponseHandler;
|
import org.jclouds.openstack.nova.ec2.xml.NovaCreateVolumeResponseHandler;
|
||||||
import org.jclouds.openstack.nova.ec2.xml.NovaDescribeImagesResponseHandler;
|
import org.jclouds.openstack.nova.ec2.xml.NovaDescribeImagesResponseHandler;
|
||||||
import org.jclouds.rest.ConfiguresRestClient;
|
import org.jclouds.rest.ConfiguresRestClient;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
import com.google.common.reflect.TypeToken;
|
||||||
|
import com.google.inject.Provides;
|
||||||
import com.google.inject.Scopes;
|
import com.google.inject.Scopes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -40,8 +52,22 @@ import com.google.inject.Scopes;
|
||||||
* @author Adam Lowe
|
* @author Adam Lowe
|
||||||
*/
|
*/
|
||||||
@ConfiguresRestClient
|
@ConfiguresRestClient
|
||||||
public class NovaEC2RestClientModule extends EC2RestClientModule<EC2Client, EC2AsyncClient> {
|
public class NovaEC2RestClientModule extends EC2RestClientModule<NovaEC2Client, NovaEC2AsyncClient> {
|
||||||
|
public static final Map<Class<?>, Class<?>> DELEGATE_MAP = ImmutableMap.<Class<?>, Class<?>> builder()//
|
||||||
|
.put(AMIClient.class, AMIAsyncClient.class)//
|
||||||
|
.put(ElasticIPAddressClient.class, ElasticIPAddressAsyncClient.class)//
|
||||||
|
.put(InstanceClient.class, InstanceAsyncClient.class)//
|
||||||
|
.put(NovaEC2KeyPairClient.class, NovaEC2KeyPairAsyncClient.class)//
|
||||||
|
.put(SecurityGroupClient.class, SecurityGroupAsyncClient.class)//
|
||||||
|
.put(WindowsClient.class, WindowsAsyncClient.class)//
|
||||||
|
.put(AvailabilityZoneAndRegionClient.class, AvailabilityZoneAndRegionAsyncClient.class)//
|
||||||
|
.put(ElasticBlockStoreClient.class, ElasticBlockStoreAsyncClient.class)//
|
||||||
|
.build();
|
||||||
|
|
||||||
|
public NovaEC2RestClientModule() {
|
||||||
|
super(TypeToken.of(NovaEC2Client.class), TypeToken.of(NovaEC2AsyncClient.class), DELEGATE_MAP);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void configure() {
|
protected void configure() {
|
||||||
install(new NovaEC2ParserModule());
|
install(new NovaEC2ParserModule());
|
||||||
|
@ -57,4 +83,16 @@ public class NovaEC2RestClientModule extends EC2RestClientModule<EC2Client, EC2A
|
||||||
// there is only one region, and its endpoint is the same as the provider
|
// there is only one region, and its endpoint is the same as the provider
|
||||||
bind(ZoneIdsSupplier.class).to(ZoneIdsFromRegionIdToZoneIdsValues.class).in(Scopes.SINGLETON);
|
bind(ZoneIdsSupplier.class).to(ZoneIdsFromRegionIdToZoneIdsValues.class).in(Scopes.SINGLETON);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
@Provides
|
||||||
|
EC2Client provide(NovaEC2Client in) {
|
||||||
|
return in;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Singleton
|
||||||
|
@Provides
|
||||||
|
EC2AsyncClient provide(NovaEC2AsyncClient in) {
|
||||||
|
return in;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,61 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2.services;
|
||||||
|
|
||||||
|
import static org.jclouds.aws.reference.FormParameters.ACTION;
|
||||||
|
|
||||||
|
import javax.ws.rs.FormParam;
|
||||||
|
import javax.ws.rs.POST;
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
|
||||||
|
import org.jclouds.aws.filters.FormSigner;
|
||||||
|
import org.jclouds.ec2.domain.KeyPair;
|
||||||
|
import org.jclouds.ec2.functions.EncodedRSAPublicKeyToBase64;
|
||||||
|
import org.jclouds.ec2.services.KeyPairAsyncClient;
|
||||||
|
import org.jclouds.ec2.xml.KeyPairResponseHandler;
|
||||||
|
import org.jclouds.javax.annotation.Nullable;
|
||||||
|
import org.jclouds.location.functions.RegionToEndpointOrProviderIfNull;
|
||||||
|
import org.jclouds.rest.annotations.EndpointParam;
|
||||||
|
import org.jclouds.rest.annotations.FormParams;
|
||||||
|
import org.jclouds.rest.annotations.ParamParser;
|
||||||
|
import org.jclouds.rest.annotations.RequestFilters;
|
||||||
|
import org.jclouds.rest.annotations.VirtualHost;
|
||||||
|
import org.jclouds.rest.annotations.XMLResponseParser;
|
||||||
|
|
||||||
|
import com.google.common.util.concurrent.ListenableFuture;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Adrian Cole
|
||||||
|
*/
|
||||||
|
@RequestFilters(FormSigner.class)
|
||||||
|
@VirtualHost
|
||||||
|
public interface NovaEC2KeyPairAsyncClient extends KeyPairAsyncClient {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see NovaEC2KeyPairClient#importKeyPairInRegion(String, String, String)
|
||||||
|
*/
|
||||||
|
@POST
|
||||||
|
@Path("/")
|
||||||
|
@FormParams(keys = ACTION, values = "ImportKeyPair")
|
||||||
|
@XMLResponseParser(KeyPairResponseHandler.class)
|
||||||
|
ListenableFuture<KeyPair> importKeyPairInRegion(
|
||||||
|
@EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) @Nullable String region,
|
||||||
|
@FormParam("KeyName") String keyName,
|
||||||
|
@FormParam("PublicKeyMaterial") @ParamParser(EncodedRSAPublicKeyToBase64.class) String publicKeyMaterial);
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2.services;
|
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import org.jclouds.concurrent.Timeout;
|
||||||
|
import org.jclouds.ec2.domain.KeyPair;
|
||||||
|
import org.jclouds.ec2.services.KeyPairClient;
|
||||||
|
import org.jclouds.javax.annotation.Nullable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Adrian Cole
|
||||||
|
*/
|
||||||
|
@Timeout(duration = 90, timeUnit = TimeUnit.SECONDS)
|
||||||
|
public interface NovaEC2KeyPairClient extends KeyPairClient {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Imports the public key from an RSA key pair that you created with a third-party tool. Compare
|
||||||
|
* this with CreateKeyPair, in which AWS creates the key pair and gives the keys to you (Nova
|
||||||
|
* keeps a copy of the public key). With ImportKeyPair, you create the key pair and give Nova just
|
||||||
|
* the public key. The private key is never transferred between you and Nova.
|
||||||
|
*
|
||||||
|
* <p/>
|
||||||
|
* You can easily create an RSA key pair on Windows and Linux using the ssh-keygen command line
|
||||||
|
* tool (provided with the standard OpenSSH installation). Standard library support for RSA key
|
||||||
|
* pair creation is also available in Java, Ruby, Python, and many other programming languages.
|
||||||
|
*
|
||||||
|
* <p/>
|
||||||
|
* <h4>Supported Formats</h4>
|
||||||
|
* <ul>
|
||||||
|
* <li>OpenSSH public key format (e.g., the format in ~/.ssh/authorized_keys)</li>
|
||||||
|
* <li>Base64 encoded DER format</li>
|
||||||
|
* <li>SSH public key file format as specified in RFC4716</li>
|
||||||
|
* </ul>
|
||||||
|
* DSA keys are not supported. Make sure your key generator is set up to create RSA keys.
|
||||||
|
* <p/>
|
||||||
|
* Supported lengths: 1024, 2048, and 4096.
|
||||||
|
* <p/>
|
||||||
|
*
|
||||||
|
* @param region
|
||||||
|
* region to import the key into
|
||||||
|
* @param keyName
|
||||||
|
* A unique name for the key pair. Accepts alphanumeric characters, spaces, dashes, and
|
||||||
|
* underscores.
|
||||||
|
* @param publicKeyMaterial
|
||||||
|
* The public key
|
||||||
|
* @return imported key including fingerprint
|
||||||
|
*/
|
||||||
|
KeyPair importKeyPairInRegion(@Nullable String region, String keyName, String publicKeyMaterial);
|
||||||
|
|
||||||
|
}
|
|
@ -8,9 +8,9 @@ import javax.ws.rs.core.MediaType;
|
||||||
import org.jclouds.Constants;
|
import org.jclouds.Constants;
|
||||||
import org.jclouds.date.DateService;
|
import org.jclouds.date.DateService;
|
||||||
import org.jclouds.date.internal.SimpleDateFormatDateService;
|
import org.jclouds.date.internal.SimpleDateFormatDateService;
|
||||||
import org.jclouds.ec2.EC2Client;
|
|
||||||
import org.jclouds.http.HttpRequest;
|
import org.jclouds.http.HttpRequest;
|
||||||
import org.jclouds.http.HttpResponse;
|
import org.jclouds.http.HttpResponse;
|
||||||
|
import org.jclouds.openstack.nova.ec2.NovaEC2Client;
|
||||||
import org.jclouds.openstack.nova.ec2.config.NovaEC2RestClientModule;
|
import org.jclouds.openstack.nova.ec2.config.NovaEC2RestClientModule;
|
||||||
import org.jclouds.rest.ConfiguresRestClient;
|
import org.jclouds.rest.ConfiguresRestClient;
|
||||||
import org.jclouds.rest.internal.BaseRestClientExpectTest;
|
import org.jclouds.rest.internal.BaseRestClientExpectTest;
|
||||||
|
@ -19,7 +19,7 @@ import com.google.common.collect.ImmutableMultimap;
|
||||||
import com.google.inject.Module;
|
import com.google.inject.Module;
|
||||||
import com.google.inject.Provides;
|
import com.google.inject.Provides;
|
||||||
|
|
||||||
public abstract class BaseNovaEC2RestClientExpectTest extends BaseRestClientExpectTest<EC2Client> {
|
public abstract class BaseNovaEC2RestClientExpectTest extends BaseRestClientExpectTest<NovaEC2Client> {
|
||||||
protected static final String CONSTANT_DATE = "2012-04-16T15:54:08.897Z";
|
protected static final String CONSTANT_DATE = "2012-04-16T15:54:08.897Z";
|
||||||
protected DateService dateService = new SimpleDateFormatDateService();
|
protected DateService dateService = new SimpleDateFormatDateService();
|
||||||
protected URI endpoint = URI.create("http://localhost:8773/services/Cloud/");
|
protected URI endpoint = URI.create("http://localhost:8773/services/Cloud/");
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2.services;
|
||||||
|
|
||||||
|
import static org.testng.Assert.assertEquals;
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
|
||||||
|
import org.jclouds.ec2.domain.KeyPair;
|
||||||
|
import org.jclouds.http.HttpRequest;
|
||||||
|
import org.jclouds.http.HttpResponse;
|
||||||
|
import org.jclouds.openstack.nova.ec2.internal.BaseNovaEC2RestClientExpectTest;
|
||||||
|
import org.jclouds.rest.ResourceNotFoundException;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMultimap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Adam Lowe
|
||||||
|
*/
|
||||||
|
public class NovaEC2KeyPairClientExpectTest extends BaseNovaEC2RestClientExpectTest {
|
||||||
|
|
||||||
|
public void testImportKeyPair() {
|
||||||
|
NovaEC2KeyPairClient client = requestsSendResponses(
|
||||||
|
describeAvailabilityZonesRequest,
|
||||||
|
describeAvailabilityZonesResponse,
|
||||||
|
HttpRequest.builder().method("POST")
|
||||||
|
.endpoint(URI.create("http://localhost:8773/services/Cloud/"))
|
||||||
|
.headers(ImmutableMultimap.of("Host", "localhost:8773"))
|
||||||
|
.payload(payloadFromStringWithContentType("Action=ImportKeyPair&KeyName=mykey&PublicKeyMaterial=c3NoLXJzYSBBQQ%3D%3D&Signature=wOOKOlDfJezRkx7NKcyOyaBQuY7PoVE3HFa9495RL7s%3D&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2012-04-16T15%3A54%3A08.897Z&Version=2009-04-04&AWSAccessKeyId=identity", "application/x-www-form-urlencoded")).build(),
|
||||||
|
HttpResponse.builder().statusCode(200).payload(payloadFromResource("/nova_ec2_import_keypair_response.xml")).build()
|
||||||
|
).getKeyPairServices();
|
||||||
|
|
||||||
|
KeyPair result = client.importKeyPairInRegion(null, "mykey", "ssh-rsa AA");
|
||||||
|
assertEquals(result.getKeyName(), "aplowe-nova-ec22");
|
||||||
|
assertEquals(result.getSha1OfPrivateKey(), "e3:fd:de:f6:4c:36:7d:9b:8f:2f:4c:20:f8:ae:b0:ea");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expectedExceptions = ResourceNotFoundException.class)
|
||||||
|
public void testImportKeyPairFailsNotFound() {
|
||||||
|
NovaEC2KeyPairClient client = requestsSendResponses(
|
||||||
|
describeAvailabilityZonesRequest,
|
||||||
|
describeAvailabilityZonesResponse,
|
||||||
|
HttpRequest.builder().method("POST")
|
||||||
|
.endpoint(URI.create("http://localhost:8773/services/Cloud/"))
|
||||||
|
.headers(ImmutableMultimap.of("Host", "localhost:8773"))
|
||||||
|
.payload(payloadFromStringWithContentType("Action=ImportKeyPair&KeyName=mykey&PublicKeyMaterial=c3NoLXJzYSBBQQ%3D%3D&Signature=wOOKOlDfJezRkx7NKcyOyaBQuY7PoVE3HFa9495RL7s%3D&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2012-04-16T15%3A54%3A08.897Z&Version=2009-04-04&AWSAccessKeyId=identity", "application/x-www-form-urlencoded")).build(),
|
||||||
|
HttpResponse.builder().statusCode(404).build()
|
||||||
|
).getKeyPairServices();
|
||||||
|
|
||||||
|
client.importKeyPairInRegion(null, "mykey", "ssh-rsa AA");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expectedExceptions = IllegalStateException.class)
|
||||||
|
public void testImportKeyPairFailsAlreadyExists() {
|
||||||
|
NovaEC2KeyPairClient client = requestsSendResponses(
|
||||||
|
describeAvailabilityZonesRequest,
|
||||||
|
describeAvailabilityZonesResponse,
|
||||||
|
HttpRequest.builder().method("POST")
|
||||||
|
.endpoint(URI.create("http://localhost:8773/services/Cloud/"))
|
||||||
|
.headers(ImmutableMultimap.of("Host", "localhost:8773"))
|
||||||
|
.payload(payloadFromStringWithContentType("Action=ImportKeyPair&KeyName=mykey&PublicKeyMaterial=c3NoLXJzYSBBQQ%3D%3D&Signature=wOOKOlDfJezRkx7NKcyOyaBQuY7PoVE3HFa9495RL7s%3D&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2012-04-16T15%3A54%3A08.897Z&Version=2009-04-04&AWSAccessKeyId=identity", "application/x-www-form-urlencoded")).build(),
|
||||||
|
HttpResponse.builder().statusCode(409).build()
|
||||||
|
).getKeyPairServices();
|
||||||
|
|
||||||
|
client.importKeyPairInRegion(null, "mykey", "ssh-rsa AA");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,136 @@
|
||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds 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.openstack.nova.ec2.services;
|
||||||
|
|
||||||
|
import static com.google.common.collect.Sets.newTreeSet;
|
||||||
|
import static org.testng.Assert.assertEquals;
|
||||||
|
import static org.testng.Assert.assertNotNull;
|
||||||
|
import static org.testng.Assert.fail;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.SortedSet;
|
||||||
|
|
||||||
|
import org.jclouds.compute.ComputeTestUtils;
|
||||||
|
import org.jclouds.compute.internal.BaseComputeServiceContextLiveTest;
|
||||||
|
import org.jclouds.crypto.SshKeys;
|
||||||
|
import org.jclouds.ec2.domain.KeyPair;
|
||||||
|
import org.jclouds.openstack.nova.ec2.NovaEC2ApiMetadata;
|
||||||
|
import org.testng.annotations.BeforeClass;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests behavior of {@code NovaKeyPairClient}
|
||||||
|
*
|
||||||
|
* @author Adam Lowe
|
||||||
|
*/
|
||||||
|
@Test(groups = "live", singleThreaded = true)
|
||||||
|
public class NovaEC2KeyPairClientLiveTest extends BaseComputeServiceContextLiveTest {
|
||||||
|
|
||||||
|
public static final String PREFIX = System.getProperty("user.name") + "-nova-ec2";
|
||||||
|
|
||||||
|
public NovaEC2KeyPairClientLiveTest() {
|
||||||
|
provider = "openstack-nova-ec2";
|
||||||
|
}
|
||||||
|
|
||||||
|
private NovaEC2KeyPairClient client;
|
||||||
|
private Set<String> regions;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@BeforeClass(groups = { "integration", "live" })
|
||||||
|
public void setupContext() {
|
||||||
|
super.setupContext();
|
||||||
|
client = view.unwrap(NovaEC2ApiMetadata.CONTEXT_TOKEN).getApi().getKeyPairServices();
|
||||||
|
regions = view.unwrap(NovaEC2ApiMetadata.CONTEXT_TOKEN).getApi().getAvailabilityZoneAndRegionServices().describeRegions().keySet();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testDescribeKeyPairs() {
|
||||||
|
for (String region : regions) {
|
||||||
|
SortedSet<KeyPair> allResults = newTreeSet(client.describeKeyPairsInRegion(region));
|
||||||
|
assertNotNull(allResults);
|
||||||
|
if (allResults.size() >= 1) {
|
||||||
|
KeyPair pair = allResults.last();
|
||||||
|
SortedSet<KeyPair> result = newTreeSet(client.describeKeyPairsInRegion(region, pair.getKeyName()));
|
||||||
|
assertNotNull(result);
|
||||||
|
KeyPair compare = result.last();
|
||||||
|
assertEquals(compare, pair);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testCreateKeyPair() {
|
||||||
|
String keyName = PREFIX + "1";
|
||||||
|
cleanupKeyPair(keyName);
|
||||||
|
try {
|
||||||
|
KeyPair keyPair = client.createKeyPairInRegion(null, keyName);
|
||||||
|
checkKeyPair(keyName, keyPair);
|
||||||
|
assertNotNull(keyPair.getKeyMaterial());
|
||||||
|
} finally {
|
||||||
|
cleanupKeyPair(keyName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void cleanupKeyPair(String keyName) {
|
||||||
|
try {
|
||||||
|
client.deleteKeyPairInRegion(null, keyName);
|
||||||
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
client.deleteKeyPairInRegion(null, keyName);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testImportKeyPair() throws IOException {
|
||||||
|
String keyName = PREFIX + "2";
|
||||||
|
cleanupKeyPair(keyName);
|
||||||
|
Map<String, String> myKey = ComputeTestUtils.setupKeyPair();
|
||||||
|
try {
|
||||||
|
KeyPair keyPair = client.importKeyPairInRegion(null, keyName, myKey.get("public"));
|
||||||
|
checkKeyPair(keyName, keyPair);
|
||||||
|
|
||||||
|
// check the fingerprint of public key (in the sha10OfPrivateKey field)
|
||||||
|
assertEquals(keyPair.getSha1OfPrivateKey(), SshKeys.fingerprintPublicKey(myKey.get("public")));
|
||||||
|
|
||||||
|
// try again to see if there's an error
|
||||||
|
try {
|
||||||
|
client.importKeyPairInRegion(null, keyName, myKey.get("public"));
|
||||||
|
fail("Duplicate call importKeyPairInRegion should have failed!");
|
||||||
|
} catch (IllegalStateException e) {
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
cleanupKeyPair(keyName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void checkKeyPair(String keyName, KeyPair keyPair) {
|
||||||
|
assertNotNull(keyPair);
|
||||||
|
assertNotNull(keyPair.getSha1OfPrivateKey());
|
||||||
|
assertEquals(keyPair.getKeyName(), keyName);
|
||||||
|
|
||||||
|
Set<KeyPair> twoResults = client.describeKeyPairsInRegion(null, keyName);
|
||||||
|
assertNotNull(twoResults);
|
||||||
|
assertEquals(twoResults.size(), 1);
|
||||||
|
KeyPair listPair = twoResults.iterator().next();
|
||||||
|
assertEquals(listPair.getKeyName(), keyPair.getKeyName());
|
||||||
|
assertEquals(listPair.getSha1OfPrivateKey(), keyPair.getSha1OfPrivateKey());
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<ImportKeyPairResponse xmlns="http://ec2.amazonaws.com/doc/2009-04-04/">
|
||||||
|
<requestId>req-dd54edc5-4beb-4b40-9694-0209fcf50459</requestId>
|
||||||
|
<keyName>aplowe-nova-ec22</keyName>
|
||||||
|
<keyFingerprint>e3:fd:de:f6:4c:36:7d:9b:8f:2f:4c:20:f8:ae:b0:ea</keyFingerprint>
|
||||||
|
</ImportKeyPairResponse>
|
|
@ -24,11 +24,10 @@ import javax.ws.rs.FormParam;
|
||||||
import javax.ws.rs.POST;
|
import javax.ws.rs.POST;
|
||||||
import javax.ws.rs.Path;
|
import javax.ws.rs.Path;
|
||||||
|
|
||||||
import org.jclouds.aws.ec2.functions.EncodedRSAPublicKeyToBase64;
|
|
||||||
import org.jclouds.aws.filters.FormSigner;
|
import org.jclouds.aws.filters.FormSigner;
|
||||||
import org.jclouds.ec2.domain.KeyPair;
|
import org.jclouds.ec2.domain.KeyPair;
|
||||||
|
import org.jclouds.ec2.functions.EncodedRSAPublicKeyToBase64;
|
||||||
import org.jclouds.ec2.services.KeyPairAsyncClient;
|
import org.jclouds.ec2.services.KeyPairAsyncClient;
|
||||||
import org.jclouds.ec2.services.KeyPairClient;
|
|
||||||
import org.jclouds.ec2.xml.KeyPairResponseHandler;
|
import org.jclouds.ec2.xml.KeyPairResponseHandler;
|
||||||
import org.jclouds.javax.annotation.Nullable;
|
import org.jclouds.javax.annotation.Nullable;
|
||||||
import org.jclouds.location.functions.RegionToEndpointOrProviderIfNull;
|
import org.jclouds.location.functions.RegionToEndpointOrProviderIfNull;
|
||||||
|
@ -49,7 +48,7 @@ import com.google.common.util.concurrent.ListenableFuture;
|
||||||
public interface AWSKeyPairAsyncClient extends KeyPairAsyncClient {
|
public interface AWSKeyPairAsyncClient extends KeyPairAsyncClient {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see KeyPairClient#importKeyPairInRegion
|
* @see AWSKeyPairClient#importKeyPairInRegion
|
||||||
*/
|
*/
|
||||||
@POST
|
@POST
|
||||||
@Path("/")
|
@Path("/")
|
||||||
|
|
Loading…
Reference in New Issue