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.guard;
 
  23 import static org.junit.Assert.assertEquals;
 
  24 import static org.junit.Assert.assertFalse;
 
  25 import static org.junit.Assert.assertSame;
 
  26 import static org.junit.Assert.assertTrue;
 
  27 import static org.mockito.Mockito.when;
 
  29 import java.util.concurrent.Executor;
 
  30 import org.junit.Before;
 
  31 import org.junit.Test;
 
  32 import org.mockito.Mock;
 
  33 import org.mockito.MockitoAnnotations;
 
  34 import org.onap.policy.common.endpoints.http.client.HttpClient;
 
  35 import org.onap.policy.common.endpoints.http.client.HttpClientFactory;
 
  36 import org.onap.policy.models.decisions.concepts.DecisionRequest;
 
  38 public class GuardConfigTest {
 
  39     private static final String MY_CLIENT = "my-client";
 
  40     private static final String PATH = "my-path";
 
  41     private static final int TIMEOUT = 10;
 
  42     private static final String ONAP_NAME = "onap-nap";
 
  43     private static final String ONAP_COMP = "onap-component";
 
  44     private static final String ONAP_INST = "onap-instance";
 
  45     private static final String MY_ACTION = "my-action";
 
  48     private HttpClient client;
 
  50     private HttpClientFactory factory;
 
  52     private Executor executor;
 
  54     private GuardParams params;
 
  55     private GuardConfig config;
 
  62         MockitoAnnotations.initMocks(this);
 
  64         when(factory.get(MY_CLIENT)).thenReturn(client);
 
  66         params = GuardParams.builder().onapName(ONAP_NAME).onapComponent(ONAP_COMP).onapInstance(ONAP_INST)
 
  67                         .action(MY_ACTION).clientName(MY_CLIENT).path(PATH).timeoutSec(TIMEOUT).build();
 
  68         config = new GuardConfig(executor, params, factory);
 
  73         DecisionRequest expected = new DecisionRequest();
 
  74         expected.setOnapComponent(ONAP_COMP);
 
  75         expected.setOnapInstance(ONAP_INST);
 
  76         expected.setOnapName(ONAP_NAME);
 
  77         expected.setAction(MY_ACTION);
 
  79         DecisionRequest actual = config.makeRequest();
 
  80         assertEquals(expected, actual);
 
  82         // check value from superclass
 
  83         assertSame(executor, config.getBlockingExecutor());
 
  84         assertSame(client, config.getClient());
 
  86         // repeat, with minimal parameters
 
  87         params = GuardParams.builder().clientName(MY_CLIENT).path(PATH).timeoutSec(TIMEOUT).build();
 
  88         config = new GuardConfig(executor, params, factory);
 
  89         assertFalse(config.isDisabled());
 
  91         actual = config.makeRequest();
 
  92         assertEquals(new DecisionRequest(), actual);
 
  94         // try with disabled=true
 
  95         params = params.toBuilder().disabled(true).build();
 
  96         config = new GuardConfig(executor, params, factory);
 
  97         assertTrue(config.isDisabled());