2  * ============LICENSE_START=======================================================
 
   3  * TestVFCActorServiceProvider
 
   4  * ================================================================================
 
   5  * Copyright (C) 2018 Ericsson. All rights reserved.
 
   6  * Modifications Copyright (C) 2018 AT&T Corp. All rights reserved.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.policy.controlloop.actor.vfc;
 
  24 import static org.junit.Assert.assertEquals;
 
  25 import static org.junit.Assert.assertNotNull;
 
  26 import static org.junit.Assert.assertNull;
 
  27 import static org.junit.Assert.fail;
 
  29 import java.util.Objects;
 
  30 import java.util.UUID;
 
  32 import org.junit.AfterClass;
 
  33 import org.junit.BeforeClass;
 
  34 import org.junit.Test;
 
  35 import org.onap.policy.aai.AaiGetVnfResponse;
 
  36 import org.onap.policy.common.endpoints.http.server.HttpServletServer;
 
  37 import org.onap.policy.controlloop.ControlLoopOperation;
 
  38 import org.onap.policy.controlloop.VirtualControlLoopEvent;
 
  39 import org.onap.policy.controlloop.policy.Policy;
 
  40 import org.onap.policy.drools.system.PolicyEngine;
 
  41 import org.onap.policy.simulators.Util;
 
  42 import org.onap.policy.vfc.VFCRequest;
 
  44 public class VfcActorServiceProviderTest {
 
  47      * Set up for test class.
 
  50     public static void setUpSimulator() {
 
  53         } catch (Exception e) {
 
  59     public static void tearDownSimulator() {
 
  60         HttpServletServer.factory.destroy();
 
  64     public void testConstructRequest() {
 
  65         VirtualControlLoopEvent onset = new VirtualControlLoopEvent();
 
  66         ControlLoopOperation operation = new ControlLoopOperation();
 
  68         Policy policy = new Policy();
 
  69         policy.setRecipe("GoToOz");
 
  71         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  73         onset.getAai().put("generic-vnf.vnf-id", "dorothy.gale.1939");
 
  74         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  76         PolicyEngine.manager.setEnvironmentProperty("aai.url", "http://localhost:6666");
 
  77         PolicyEngine.manager.setEnvironmentProperty("aai.username", "AAI");
 
  78         PolicyEngine.manager.setEnvironmentProperty("aai.password", "AAI");
 
  79         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  81         UUID requestId = UUID.randomUUID();
 
  82         onset.setRequestId(requestId);
 
  83         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  85         onset.getAai().put("generic-vnf.vnf-name", "Dorothy");
 
  86         PolicyEngine.manager.getEnvironment().remove("aai.password");
 
  87         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  89         PolicyEngine.manager.setEnvironmentProperty("aai.password", "AAI");
 
  90         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  92         onset.getAai().put("service-instance.service-instance-id", "");
 
  93         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, null));
 
  95         assertNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, new AaiGetVnfResponse()));
 
  97         policy.setRecipe("Restart");
 
  98         assertNotNull(VFCActorServiceProvider.constructRequest(onset, operation, policy, new AaiGetVnfResponse()));
 
 101                 VFCActorServiceProvider.constructRequest(onset, operation, policy, new AaiGetVnfResponse());
 
 103         assertEquals(requestId, Objects.requireNonNull(request).getRequestId());
 
 104         assertEquals("dorothy.gale.1939", request.getHealRequest().getVnfInstanceId());
 
 105         assertEquals("restartvm", request.getHealRequest().getAdditionalParams().getAction());
 
 109     public void testMethods() {
 
 110         VFCActorServiceProvider sp = new VFCActorServiceProvider();
 
 112         assertEquals("VFC", sp.actor());
 
 113         assertEquals(1, sp.recipes().size());
 
 114         assertEquals("Restart", sp.recipes().get(0));
 
 115         assertEquals("VM", sp.recipeTargets("Restart").get(0));
 
 116         assertEquals(0, sp.recipePayloads("Restart").size());