Package com.vmware.aurora.composition

Source Code of com.vmware.aurora.composition.AbstractTmTest

/***************************************************************************
* Copyright (c) 2012-2013 VMware, Inc. All Rights Reserved.
* Licensed 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 com.vmware.aurora.composition;

import org.testng.annotations.BeforeClass;

import com.google.gson.internal.Pair;
import com.vmware.aurora.global.Configuration;
import com.vmware.aurora.util.CmsWorker;

import com.vmware.aurora.vc.VcDatacenter;
import com.vmware.aurora.vc.VcDatastore;
import com.vmware.aurora.vc.VcInventory;
import com.vmware.aurora.vc.VcResourcePool;
import com.vmware.aurora.vc.vcevent.VcEventRouter;
import com.vmware.aurora.vc.vcservice.VcContext;
import com.vmware.aurora.vc.vcservice.VcService;

abstract public class AbstractTmTest {

   protected static String vmName;
   protected static VcDatacenter dc;
   protected static VcResourcePool rp;
   protected static VcDatastore ds;
   protected static TestUtil util;

   protected static VcService vcService;

   @BeforeClass
   public static void setUpBeforeClass() throws Exception {
      // XXX hack to approve bootstrap instance id, should be moved out of Configuration
      Configuration.approveBootstrapInstanceId(Configuration.BootstrapUsage.ALLOWED);
      Configuration.approveBootstrapInstanceId(Configuration.BootstrapUsage.FINALIZED);

      VcContext.initVcContext();
      new VcEventRouter();

      CmsWorker.addPeriodic(new VcInventory.SyncInventoryRequest());
      VcInventory.loadInventory();
      try {
         Thread.sleep(1000);
      } catch (InterruptedException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
      }

      vmName = "PlatformTestVM";
      Pair<VcDatacenter, VcResourcePool> pair = VcTestConfig.getTestRPAndDC();
      dc = pair.first;
      rp = pair.second;
      ds = VcTestConfig.getTestDS();
      util = new TestUtil();
   }
}
TOP

Related Classes of com.vmware.aurora.composition.AbstractTmTest

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.