Package org.jclouds.cloudstack.compute

Source Code of org.jclouds.cloudstack.compute.CloudStackComputeServiceAdapterExpectTest

/*
* 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.cloudstack.compute;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;

import java.io.IOException;
import java.util.Map;

import org.jclouds.cloudstack.CloudStackContext;
import org.jclouds.cloudstack.compute.options.CloudStackTemplateOptions;
import org.jclouds.cloudstack.compute.strategy.CloudStackComputeServiceAdapter;
import org.jclouds.cloudstack.domain.VirtualMachine;
import org.jclouds.cloudstack.internal.BaseCloudStackComputeServiceContextExpectTest;
import org.jclouds.compute.ComputeServiceAdapter.NodeAndInitialCredentials;
import org.jclouds.compute.domain.OsFamily;
import org.jclouds.compute.domain.Template;
import org.jclouds.compute.domain.TemplateBuilder;
import org.jclouds.domain.LoginCredentials;
import org.jclouds.http.HttpRequest;
import org.jclouds.http.HttpResponse;
import org.jclouds.util.Strings2;
import org.testng.annotations.Test;

import com.google.common.collect.ImmutableMap;
import com.google.inject.Injector;

/**
* Tests the compute service abstraction of the cloudstack api.
*
* @author Adrian Cole
*/
@Test(groups = "unit")
public class CloudStackComputeServiceAdapterExpectTest extends BaseCloudStackComputeServiceContextExpectTest<Injector> {
   HttpResponse deployVMResponse = HttpResponse.builder().statusCode(200)
         .payload(payloadFromResource("/deployvirtualmachineresponse.json"))
         .build();
 
   HttpRequest queryAsyncJobResult = HttpRequest.builder().method("GET")
        .endpoint("http://localhost:8080/client/api")
        .addQueryParam("response", "json")
        .addQueryParam("command", "queryAsyncJobResult")
        .addQueryParam("jobid", "50006")
        .addQueryParam("apiKey", "APIKEY")
        .addQueryParam("signature", "v8BWKMxd%2BIzHIuTaZ9sNSzCWqFI%3D")
        .addHeader("Accept", "application/json")
        .build();

   HttpResponse queryAsyncJobResultResponse = HttpResponse.builder().statusCode(200)
        .payload(payloadFromResource("/queryasyncjobresultresponse-virtualmachine.json"))
        .build();

   HttpResponse queryAsyncJobResultSecurityGroupResponse = HttpResponse.builder().statusCode(200)
        .payload(payloadFromResource("/queryasyncjobresultresponse-virtualmachine-securitygroup.json"))
        .build();

   HttpRequest queryAsyncJobResultAuthorizeIngress = HttpRequest.builder().method("GET")
        .endpoint("http://localhost:8080/client/api")
        .addQueryParam("response", "json")
        .addQueryParam("command", "queryAsyncJobResult")
        .addQueryParam("jobid", "13330fc9-8b3e-4582-aa3e-90883c041010")
        .addQueryParam("apiKey", "APIKEY")
        .addQueryParam("signature", "y4gk3ckWAMPDNZM26LUK0gAhfiE%3D")
        .addHeader("Accept", "application/json")
        .build();

   HttpResponse queryAsyncJobResultAuthorizeIngressResponse = HttpResponse.builder().statusCode(200)
        .payload(payloadFromResource("/queryasyncjobresultresponse-authorizeingress.json"))
        .build();
  
   HttpRequest listCapabilitiesNotListAll = HttpRequest.builder().method("GET")
     .endpoint("http://localhost:8080/client/api")
     .addQueryParam("response", "json")
     .addQueryParam("command", "listCapabilities")
     .addQueryParam("apiKey", "APIKEY")     
     .addQueryParam("signature", "l3PVoJnKK2G2gHk3HPHtpwWjlW4%3D")
     .addHeader("Accept", "application/json")
     .build();

   public void testCreateNodeWithGroupEncodedIntoName() {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "1")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "4")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("networkids", "204")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "wJ%2BiflOS3am5qcjQOd8Y/Pw8/Dc%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksResponse)
            .put(getZone, getZoneResponse)
            .put(deployVM, deployVMResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultResponse)
            .build();

      Injector forNode = requestsSendResponses(requestResponseMap);

      Template template = forNode.getInstance(TemplateBuilder.class).osFamily(OsFamily.CENTOS).build();
      template.getOptions().as(CloudStackTemplateOptions.class).setupStaticNat(false);

      CloudStackComputeServiceAdapter adapter = forNode.getInstance(CloudStackComputeServiceAdapter.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertEquals(server.getCredentials(), LoginCredentials.builder().password("dD7jwajkh").build());
   }

   public void testCreateNodeWithGroupEncodedIntoNameWithKeyPair() throws IOException {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "1")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "4")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("networkids", "204")
            .addQueryParam("keypair", "mykeypair")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "hI/U4cWXdU6KTZKbJvzPCmOpGmU%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksResponse)
            .put(getZone, getZoneResponse)
            .put(deployVM, deployVMResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultResponse)
            .build();

      Injector forKeyPair = requestsSendResponses(requestResponseMap);

      String privKey = Strings2.toStringAndClose(getClass().getResourceAsStream("/test"));
      Template template = forKeyPair.getInstance(TemplateBuilder.class).osFamily(OsFamily.CENTOS).build();
      template.getOptions().as(CloudStackTemplateOptions.class).keyPair("mykeypair")
         .setupStaticNat(false)
         .overrideLoginPrivateKey(privKey);

      CloudStackComputeServiceAdapter adapter = forKeyPair.getInstance(CloudStackComputeServiceAdapter.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertEquals(server.getCredentials().getPrivateKey(), privKey);
   }

   public void testCreateNodeWithGroupEncodedIntoNameWithGenerateKeyPair() throws IOException {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "1")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "4")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("networkids", "204")
            .addQueryParam("keypair", "jclouds-test")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "4M9C8IjohDDKFMAXQSX3mjXpYvM%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksResponse)
            .put(getZone, getZoneResponse)
            .put(deployVM, deployVMResponse)
            .put(createSSHKeyPair, createSSHKeyPairResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultResponse)
            .build();

      Injector forKeyPair = requestsSendResponses(requestResponseMap);

      Template template = forKeyPair.getInstance(TemplateBuilder.class).osFamily(OsFamily.CENTOS).build();
      template.getOptions().as(CloudStackTemplateOptions.class).generateKeyPair(true)
         .setupStaticNat(false);

      CloudStackComputeServiceAdapter adapter = forKeyPair.getInstance(CloudStackComputeServiceAdapter.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertNotNull(server.getCredentials().getPrivateKey());
   }
  
   public void testCreateNodeWithGroupEncodedIntoNameWithKeyPairDefaultSecurityGroup() throws IOException {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "2")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "241")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("networkids", "204")
            .addQueryParam("keypair", "mykeypair")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "Ar2B/ZVxMO2078cP0XliWWR4cQ0%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksWithSecurityGroupsResponse)
            .put(getZoneWithSecurityGroups, getZoneWithSecurityGroupsResponse)
            .put(deployVM, deployVMResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultResponse)
            .build();

      Injector forKeyPair = requestsSendResponses(requestResponseMap);

      String privKey = Strings2.toStringAndClose(getClass().getResourceAsStream("/test"));
      Template template = forKeyPair.getInstance(TemplateBuilder.class)
         .osFamily(OsFamily.CENTOS)
         .locationId("2")
         .build();
      template.getOptions().as(CloudStackTemplateOptions.class).keyPair("mykeypair")
         .setupStaticNat(false)
         .overrideLoginPrivateKey(privKey);

      CloudStackComputeServiceAdapter adapter = forKeyPair.getInstance(CloudStackComputeServiceAdapter.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertEquals(server.getCredentials().getPrivateKey(), privKey);
   }

   public void testCreateNodeWithGroupEncodedIntoNameWithKeyPairGenerateSecurityGroup() throws IOException {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "2")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "241")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("networkids", "204")
            .addQueryParam("keypair", "mykeypair")
            .addQueryParam("securitygroupids", "30")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "yNAiMYw3RstNj979udttALOHxfU%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksWithSecurityGroupsResponse)
            .put(getZoneWithSecurityGroups, getZoneWithSecurityGroupsResponse)
            .put(deployVM, deployVMResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultSecurityGroupResponse)
            .put(queryAsyncJobResultAuthorizeIngress, queryAsyncJobResultAuthorizeIngressResponse)
            .put(getSecurityGroup, getSecurityGroupResponse)
            .put(createSecurityGroup, createSecurityGroupResponse)
            .put(authorizeIngress, authorizeIngressResponse)
            .build();

      Injector forKeyPair = requestsSendResponses(requestResponseMap);

      String privKey = Strings2.toStringAndClose(getClass().getResourceAsStream("/test"));
      Template template = forKeyPair.getInstance(TemplateBuilder.class)
         .osFamily(OsFamily.CENTOS)
         .locationId("2")
         .build();
      template.getOptions().as(CloudStackTemplateOptions.class).keyPair("mykeypair")
         .setupStaticNat(false)
         .generateSecurityGroup(true)
         .overrideLoginPrivateKey(privKey);

      CloudStackComputeServiceAdapter adapter = forKeyPair.getInstance(CloudStackComputeServiceAdapter.class);
      CloudStackContext context = forKeyPair.getInstance(CloudStackContext.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertEquals(server.getCredentials().getPrivateKey(), privKey);
   }

   public void testCreateNodeWithGroupEncodedIntoNameWithKeyPairAssignedToAccountAndDomain() throws IOException {
      HttpRequest deployVM = HttpRequest.builder().method("GET")
            .endpoint("http://localhost:8080/client/api")
            .addQueryParam("response", "json")
            .addQueryParam("command", "deployVirtualMachine")
            .addQueryParam("zoneid", "1")
            .addQueryParam("serviceofferingid", "1")
            .addQueryParam("templateid", "4")
            .addQueryParam("displayname", "test-e92")
            .addQueryParam("name", "test-e92")
            .addQueryParam("account", "account") //
            .addQueryParam("domainid", "domainId") //
            .addQueryParam("networkids", "204")
            .addQueryParam("keypair", "mykeypair")
            .addQueryParam("apiKey", "APIKEY")
            .addQueryParam("signature", "ly5Pip8ICOoVTmNLdDBTc3gbKlA%3D")
            .addHeader("Accept", "application/json")
            .build();
 
      Map<HttpRequest, HttpResponse> requestResponseMap = ImmutableMap.<HttpRequest, HttpResponse> builder()
            .put(listTemplates, listTemplatesResponse)
            .put(listOsTypes, listOsTypesResponse)
            .put(listOsCategories, listOsCategoriesResponse)
            .put(listZones, listZonesResponse)
            .put(listServiceOfferings, listServiceOfferingsResponse)
            .put(listAccounts, listAccountsResponse)
            .put(listNetworks, listNetworksResponse)
            .put(getZone, getZoneResponse)
            .put(deployVM, deployVMResponse)
            .put(queryAsyncJobResult, queryAsyncJobResultResponse)
            .build();

      Injector forKeyPair = requestsSendResponses(requestResponseMap);

      String privKey = Strings2.toStringAndClose(getClass().getResourceAsStream("/test"));
      Template template = forKeyPair.getInstance(TemplateBuilder.class).osFamily(OsFamily.CENTOS).build();
      template.getOptions().as(CloudStackTemplateOptions.class).keyPair("mykeypair")
         .account("account")
         .domainId("domainId")
         .setupStaticNat(false)
         .overrideLoginPrivateKey(privKey);

      CloudStackComputeServiceAdapter adapter = forKeyPair.getInstance(CloudStackComputeServiceAdapter.class);
      CloudStackContext context = forKeyPair.getInstance(CloudStackContext.class);

      NodeAndInitialCredentials<VirtualMachine> server = adapter.createNodeWithGroupEncodedIntoName("test", "test-e92",
            template);
      assertNotNull(server);
      assertEquals(server.getCredentials().getPrivateKey(), privKey);
   }  
  
   @Override
   protected Injector clientFrom(CloudStackContext context) {
      return context.utils().injector();
   }
}
TOP

Related Classes of org.jclouds.cloudstack.compute.CloudStackComputeServiceAdapterExpectTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.