75ed8b29ba347c7f380a264bf72e6532701b91be
[policy/models.git] / models-interactions / model-actors / actor.vfc / src / test / java / org / onap / policy / controlloop / actor / vfc / RestartTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.policy.controlloop.actor.vfc;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
27
28 import java.util.List;
29 import java.util.concurrent.CompletableFuture;
30 import org.apache.commons.lang3.tuple.Pair;
31 import org.junit.AfterClass;
32 import org.junit.Before;
33 import org.junit.BeforeClass;
34 import org.junit.Test;
35 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
36 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
37 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
38 import org.onap.policy.controlloop.actorserviceprovider.OperationResult;
39 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingConfig;
40 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingParams;
41 import org.onap.policy.vfc.VfcRequest;
42 import org.onap.policy.vfc.VfcResponse;
43
44 public class RestartTest extends BasicVfcOperation {
45     private static final String TEST_SERVICE_INSTANCE_ID = "test-service-instance-id";
46     private static final String TEST_VSERVER_ID = "test-vserver-id";
47     private static final String TEST_VSERVER_NAME = "test-vserver-name";
48     private static final String TEST_GENERIC_VNF_ID = "test-generic-vnf-id";
49
50     private Restart restartOper;
51
52
53     @BeforeClass
54     public static void setUpBeforeClass() throws Exception {
55         initBeforeClass();
56     }
57
58     @AfterClass
59     public static void tearDownAfterClass() {
60         destroyAfterClass();
61     }
62
63     /**
64      * setup restart operation.
65      */
66     @Before
67     public void setup() throws Exception {
68         super.setUp();
69
70         restartOper = new Restart(params, config);
71
72         loadProperties();
73     }
74
75     /**
76      * Tests "success" case with simulator.
77      */
78     @Test
79     public void testSuccess() throws Exception {
80         HttpPollingParams opParams = HttpPollingParams.builder().clientName(MY_CLIENT).path("ns").pollPath("jobs")
81                         .maxPolls(1).build();
82         config = new HttpPollingConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
83
84         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).build();
85
86         restartOper = new Restart(params, config);
87
88         loadProperties();
89
90         // run the operation
91         outcome = restartOper.start().get();
92         assertEquals(OperationResult.SUCCESS, outcome.getResult());
93         assertTrue(outcome.getResponse() instanceof VfcResponse);
94     }
95
96     @Test
97     public void testConstructor() {
98         CompletableFuture<OperationOutcome> futureRes = restartOper.startOperationAsync(1, outcome);
99         assertNotNull(futureRes);
100         assertEquals(0, restartOper.getPollCount());
101     }
102
103     @Test
104     public void testGetPropertyNames() {
105         // @formatter:off
106         assertThat(restartOper.getPropertyNames()).isEqualTo(
107                         List.of(
108                             OperationProperties.ENRICHMENT_SERVICE_ID,
109                             OperationProperties.ENRICHMENT_VSERVER_ID,
110                             OperationProperties.ENRICHMENT_VSERVER_NAME,
111                             OperationProperties.ENRICHMENT_GENERIC_VNF_ID));
112         // @formatter:on
113     }
114
115     @Test
116     public void testMakeRequest() {
117         Pair<String, VfcRequest> resultPair = restartOper.makeRequest();
118         assertNotNull(resultPair.getLeft());
119         assertNotNull(resultPair.getRight());
120     }
121
122     private void loadProperties() {
123         restartOper.setProperty(OperationProperties.ENRICHMENT_SERVICE_ID, TEST_SERVICE_INSTANCE_ID);
124         restartOper.setProperty(OperationProperties.ENRICHMENT_VSERVER_ID, TEST_VSERVER_ID);
125         restartOper.setProperty(OperationProperties.ENRICHMENT_VSERVER_NAME, TEST_VSERVER_NAME);
126         restartOper.setProperty(OperationProperties.ENRICHMENT_GENERIC_VNF_ID, TEST_GENERIC_VNF_ID);
127     }
128 }