Modify Actors to use properties when provided
[policy/models.git] / models-interactions / model-actors / actor.sdnc / src / test / java / org / onap / policy / controlloop / actor / sdnc / BandwidthOnDemandOperationTest.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.sdnc;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import java.util.List;
28 import java.util.Map;
29 import org.junit.AfterClass;
30 import org.junit.Before;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
34 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
35 import org.onap.policy.controlloop.actorserviceprovider.controlloop.ControlLoopEventContext;
36 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
37 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpParams;
38 import org.onap.policy.controlloop.policy.PolicyResult;
39 import org.onap.policy.sdnc.SdncRequest;
40 import org.onap.policy.sdnc.SdncResponse;
41
42 public class BandwidthOnDemandOperationTest extends BasicSdncOperation {
43     private static final String MY_SERVICE = "my-service";
44     private static final String MY_VNF = "my-vnf";
45     private static final String MY_BANDWIDTH = "my-bandwidth";
46     private static final String MY_CHANGE_TIME = "my-change-time";
47
48     private BandwidthOnDemandOperation oper;
49
50     public BandwidthOnDemandOperationTest() {
51         super(DEFAULT_ACTOR, BandwidthOnDemandOperation.NAME);
52     }
53
54     @BeforeClass
55     public static void setUpBeforeClass() throws Exception {
56         initBeforeClass();
57     }
58
59     @AfterClass
60     public static void tearDownAfterClass() {
61         destroyAfterClass();
62     }
63
64     /**
65      * Set up.
66      */
67     @Before
68     public void setUp() throws Exception {
69         super.setUp();
70         oper = new BandwidthOnDemandOperation(params, config);
71     }
72
73     @Test
74     public void testConstructor() {
75         assertEquals(DEFAULT_ACTOR, oper.getActorName());
76         assertEquals(BandwidthOnDemandOperation.NAME, oper.getName());
77     }
78
79     @Test
80     public void testGetPropertyNames() {
81         // @formatter:off
82         assertThat(oper.getPropertyNames()).isEqualTo(
83                         List.of(
84                             OperationProperties.ENRICHMENT_SERVICE_ID,
85                             OperationProperties.ENRICHMENT_BANDWIDTH,
86                             OperationProperties.ENRICHMENT_BANDWIDTH_CHANGE_TIME,
87                             OperationProperties.ENRICHMENT_VNF_ID));
88
89         // @formatter:on
90     }
91
92     /**
93      * Tests "success" case with simulator.
94      */
95     @Test
96     public void testSuccess() throws Exception {
97         HttpParams opParams = HttpParams.builder().clientName(MY_CLIENT)
98                         .path("GENERIC-RESOURCE-API:vf-module-topology-operation").build();
99         config = new HttpConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
100
101         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).preprocessed(true).build();
102         oper = new BandwidthOnDemandOperation(params, config);
103
104         oper.setProperty(OperationProperties.ENRICHMENT_SERVICE_ID, MY_SERVICE);
105         oper.setProperty(OperationProperties.ENRICHMENT_BANDWIDTH, MY_BANDWIDTH);
106         oper.setProperty(OperationProperties.ENRICHMENT_BANDWIDTH_CHANGE_TIME, MY_CHANGE_TIME);
107         oper.setProperty(OperationProperties.ENRICHMENT_VNF_ID, MY_VNF);
108
109         outcome = oper.start().get();
110         assertEquals(PolicyResult.SUCCESS, outcome.getResult());
111         assertTrue(outcome.getResponse() instanceof SdncResponse);
112     }
113
114     @Test
115     public void testMakeRequest() throws Exception {
116         oper.generateSubRequestId(1);
117         SdncRequest request = oper.makeRequest(1);
118         assertEquals(MY_SERVICE, request.getNsInstanceId());
119         assertEquals(REQ_ID, request.getRequestId());
120         assertEquals("/my-path/", request.getUrl());
121         assertEquals(oper.getSubRequestId(), request.getHealRequest().getRequestHeaderInfo().getSvcRequestId());
122
123         verifyRequest("bod.json", request, IGNORE_FIELDS);
124
125         verifyMissing(BandwidthOnDemandOperation.SERVICE_ID_KEY, "service", BandwidthOnDemandOperation::new);
126
127         // perform the operation
128         makeContext();
129         verifyRequest("bod.json", verifyOperation(oper), IGNORE_FIELDS);
130     }
131
132     @Test
133     public void testMakeRequestViaProperties() throws Exception {
134         // clear the enrichment data and remake the operation
135         event.setAai(null);
136         context = new ControlLoopEventContext(event);
137         params = params.toBuilder().context(context).build();
138         oper = new BandwidthOnDemandOperation(params, config);
139
140         oper.setProperty(OperationProperties.ENRICHMENT_SERVICE_ID, MY_SERVICE);
141         oper.setProperty(OperationProperties.ENRICHMENT_BANDWIDTH, MY_BANDWIDTH);
142         oper.setProperty(OperationProperties.ENRICHMENT_BANDWIDTH_CHANGE_TIME, MY_CHANGE_TIME);
143         oper.setProperty(OperationProperties.ENRICHMENT_VNF_ID, MY_VNF);
144
145         verifyRequest("bod.json", verifyOperation(oper), IGNORE_FIELDS);
146     }
147
148     @Override
149     protected Map<String, String> makeEnrichment() {
150         return Map.of(BandwidthOnDemandOperation.SERVICE_ID_KEY, MY_SERVICE, BandwidthOnDemandOperation.BANDWIDTH,
151                         MY_BANDWIDTH, BandwidthOnDemandOperation.BANDWIDTH_CHANGE_TIME, MY_CHANGE_TIME,
152                         BandwidthOnDemandOperation.VNF_ID, MY_VNF);
153     }
154 }