2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.policy.controlloop.actor.so;
 
  23 import static org.mockito.ArgumentMatchers.any;
 
  24 import static org.mockito.Mockito.when;
 
  26 import java.util.Collections;
 
  27 import java.util.HashMap;
 
  28 import java.util.LinkedList;
 
  29 import java.util.List;
 
  31 import org.mockito.Mock;
 
  32 import org.onap.policy.aai.AaiCqResponse;
 
  33 import org.onap.policy.common.endpoints.event.comm.bus.internal.BusTopicParams;
 
  34 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
 
  35 import org.onap.policy.common.endpoints.http.server.HttpServletServerFactoryInstance;
 
  36 import org.onap.policy.common.gson.GsonMessageBodyHandler;
 
  37 import org.onap.policy.controlloop.actor.test.BasicHttpOperation;
 
  38 import org.onap.policy.controlloop.actorserviceprovider.Util;
 
  39 import org.onap.policy.controlloop.policy.Target;
 
  40 import org.onap.policy.simulators.SoSimulatorJaxRs;
 
  41 import org.onap.policy.so.SoRequest;
 
  42 import org.onap.policy.so.SoRequestParameters;
 
  43 import org.onap.policy.so.SoRequestReferences;
 
  44 import org.onap.policy.so.SoRequestStatus;
 
  45 import org.onap.policy.so.SoResponse;
 
  48  * Superclass for various operator tests.
 
  50 public abstract class BasicSoOperation extends BasicHttpOperation<SoRequest> {
 
  51     protected static final String[] IGNORE_FIELDS = {"RequestID", "subRequestID", "seconds", "nanos"};
 
  53     public static final String MODEL_CUSTOM_ID = "my-model-customization-id";
 
  54     public static final String MODEL_INVAR_ID = "my-model-invariant-id";
 
  55     public static final String MODEL_NAME = "my-model-name";
 
  56     public static final String MODEL_VERSION = "my-model-version";
 
  57     public static final String MODEL_VERS_ID = "my-model-version-id";
 
  58     public static final String SUBSCRIPTION_SVC_TYPE = "my-subscription-service-type";
 
  59     public static final String MY_PATH = "my-path";
 
  60     public static final String PATH_GET = "my-path-get/";
 
  61     public static final int MAX_GETS = 3;
 
  62     public static final int WAIT_SEC_GETS = 20;
 
  63     public static final Integer VF_COUNT = 10;
 
  66     protected SoConfig config;
 
  68     protected Target target;
 
  69     protected SoResponse response;
 
  72      * Constructs the object using a default actor and operation name.
 
  74     public BasicSoOperation() {
 
  79      * Constructs the object.
 
  81      * @param actor actor name
 
  82      * @param operation operation name
 
  84     public BasicSoOperation(String actor, String operation) {
 
  85         super(actor, operation);
 
  89      * Starts the simulator.
 
  91     protected static void initBeforeClass() throws Exception {
 
  92         org.onap.policy.simulators.Util.buildSoSim();
 
  94         BusTopicParams clientParams = BusTopicParams.builder().clientName(MY_CLIENT).basePath("").hostname("localhost")
 
  95                         .managed(true).port(org.onap.policy.simulators.Util.SOSIM_SERVER_PORT)
 
  96                         .serializationProvider(GsonMessageBodyHandler.class.getName()).build();
 
  97         HttpClientFactoryInstance.getClientFactory().build(clientParams);
 
  99         SoSimulatorJaxRs.setYieldIncomplete(true);
 
 102     protected static void destroyAfterClass() {
 
 103         SoSimulatorJaxRs.setYieldIncomplete(false);
 
 104         HttpClientFactoryInstance.getClientFactory().destroy();
 
 105         HttpServletServerFactoryInstance.getServerFactory().destroy();
 
 109      * Initializes mocks and sets up.
 
 111     public void setUp() throws Exception {
 
 114         response = new SoResponse();
 
 116         SoRequest request = new SoRequest();
 
 117         response.setRequest(request);
 
 119         SoRequestStatus status = new SoRequestStatus();
 
 120         request.setRequestStatus(status);
 
 121         status.setRequestState(SoOperation.COMPLETE);
 
 123         SoRequestReferences ref = new SoRequestReferences();
 
 124         response.setRequestReferences(ref);
 
 125         ref.setRequestId(REQ_ID.toString());
 
 127         when(rawResponse.getStatus()).thenReturn(200);
 
 128         when(rawResponse.readEntity(String.class)).thenReturn(coder.encode(response));
 
 134     protected void initConfig() {
 
 136         when(config.getClient()).thenReturn(client);
 
 137         when(config.getPath()).thenReturn(MY_PATH);
 
 138         when(config.getMaxGets()).thenReturn(MAX_GETS);
 
 139         when(config.getPathGet()).thenReturn(PATH_GET);
 
 140         when(config.getWaitSecGet()).thenReturn(WAIT_SEC_GETS);
 
 144     protected void makeContext() {
 
 147         target = new Target();
 
 148         target.setModelCustomizationId(MODEL_CUSTOM_ID);
 
 149         target.setModelInvariantId(MODEL_INVAR_ID);
 
 150         target.setModelName(MODEL_NAME);
 
 151         target.setModelVersion(MODEL_VERSION);
 
 152         target.setModelVersionId(MODEL_VERS_ID);
 
 154         params = params.toBuilder().target(target).build();
 
 158     protected Map<String, Object> makePayload() {
 
 159         Map<String, Object> payload = new HashMap<>();
 
 161         // request parameters
 
 162         SoRequestParameters reqParams = new SoRequestParameters();
 
 163         reqParams.setSubscriptionServiceType(SUBSCRIPTION_SVC_TYPE);
 
 164         payload.put(SoOperation.REQ_PARAM_NM, Util.translate("", reqParams, String.class));
 
 167         List<Map<String, String>> config = new LinkedList<>();
 
 168         config.add(Collections.emptyMap());
 
 169         payload.put(SoOperation.CONFIG_PARAM_NM, Util.translate("", config, String.class));
 
 174     protected AaiCqResponse makeCqResponse() {
 
 175         when(cqResponse.getVfModuleCount(any(), any(), any())).thenReturn(VF_COUNT);