Add property lists to Actors
[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.parameters.HttpPollingConfig;
39 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingParams;
40 import org.onap.policy.controlloop.policy.PolicyResult;
41 import org.onap.policy.vfc.VfcRequest;
42 import org.onap.policy.vfc.VfcResponse;
43
44 public class RestartTest extends BasicVfcOperation {
45     private Restart restartOper;
46
47     @BeforeClass
48     public static void setUpBeforeClass() throws Exception {
49         initBeforeClass();
50     }
51
52     @AfterClass
53     public static void tearDownAfterClass() {
54         destroyAfterClass();
55     }
56
57     /**
58      * setup restart operation.
59      */
60     @Before
61     public void setup() throws Exception {
62         super.setUp();
63         params.getContext().getEnrichment().put("service-instance.service-instance-id", "test-service-instance-id");
64         params.getContext().getEnrichment().put("vserver.vserver-id", "test-vserver-id");
65         params.getContext().getEnrichment().put("vserver.vserver-name", "test-vserver-name");
66         restartOper = new Restart(params, config);
67     }
68
69     /**
70      * Tests "success" case with simulator.
71      */
72     @Test
73     public void testSuccess() throws Exception {
74         HttpPollingParams opParams = HttpPollingParams.builder().clientName(MY_CLIENT).path("ns").pollPath("jobs")
75                         .maxPolls(1).build();
76         config = new HttpPollingConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
77
78         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).build();
79
80         restartOper = new Restart(params, config);
81
82         outcome = restartOper.start().get();
83         assertEquals(PolicyResult.SUCCESS, outcome.getResult());
84         assertTrue(outcome.getResponse() instanceof VfcResponse);
85     }
86
87     @Test
88     public void testConstructor() {
89         CompletableFuture<OperationOutcome> futureRes = restartOper.startOperationAsync(1, outcome);
90         assertNotNull(futureRes);
91         assertEquals(0, restartOper.getPollCount());
92     }
93
94     @Test
95     public void testGetPropertyNames() {
96         // @formatter:off
97         assertThat(restartOper.getPropertyNames()).isEqualTo(
98                         List.of(
99                             OperationProperties.ENRICHMENT_SERVICE_INSTANCE_ID,
100                             OperationProperties.ENRICHMENT_VSERVER_ID,
101                             OperationProperties.ENRICHMENT_VSERVER_NAME,
102                             OperationProperties.ENRICHMENT_GENERIC_VNF_ID));
103         // @formatter:on
104     }
105
106     @Test
107     public void testMakeRequest() {
108         Pair<String, VfcRequest> resultPair = restartOper.makeRequest();
109         assertNotNull(resultPair.getLeft());
110         assertNotNull(resultPair.getRight());
111     }
112 }