Test new actors against simulators
[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.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25
26 import java.util.Map;
27 import org.junit.AfterClass;
28 import org.junit.Before;
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
32 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
33 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpParams;
34 import org.onap.policy.controlloop.policy.PolicyResult;
35 import org.onap.policy.sdnc.SdncRequest;
36
37 public class BandwidthOnDemandOperationTest extends BasicSdncOperation {
38
39     private BandwidthOnDemandOperation oper;
40
41     public BandwidthOnDemandOperationTest() {
42         super(DEFAULT_ACTOR, BandwidthOnDemandOperation.NAME);
43     }
44
45     @BeforeClass
46     public static void setUpBeforeClass() throws Exception {
47         initBeforeClass();
48     }
49
50     @AfterClass
51     public static void tearDownAfterClass() {
52         destroyAfterClass();
53     }
54
55     /**
56      * Set up.
57      */
58     @Before
59     public void setUp() throws Exception {
60         super.setUp();
61         oper = new BandwidthOnDemandOperation(params, config);
62     }
63
64     @Test
65     public void testConstructor() {
66         assertEquals(DEFAULT_ACTOR, oper.getActorName());
67         assertEquals(BandwidthOnDemandOperation.NAME, oper.getName());
68     }
69
70     /**
71      * Tests "success" case with simulator.
72      */
73     @Test
74     public void testSuccess() throws Exception {
75         HttpParams opParams = HttpParams.builder().clientName(MY_CLIENT)
76                         .path("GENERIC-RESOURCE-API:vf-module-topology-operation").build();
77         config = new HttpConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
78
79         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).build();
80         oper = new BandwidthOnDemandOperation(params, config);
81
82         outcome = oper.start().get();
83         assertEquals(PolicyResult.SUCCESS, outcome.getResult());
84     }
85
86     @Test
87     public void testMakeRequest() throws Exception {
88         SdncRequest request = oper.makeRequest(1);
89         assertEquals("my-service", request.getNsInstanceId());
90         assertEquals(REQ_ID, request.getRequestId());
91         assertEquals("/my-path/", request.getUrl());
92         assertNotNull(request.getHealRequest().getRequestHeaderInfo().getSvcRequestId());
93
94         verifyRequest("bod.json", request, IGNORE_FIELDS);
95
96         verifyMissing(BandwidthOnDemandOperation.SERVICE_ID_KEY, "service", BandwidthOnDemandOperation::new);
97
98         // perform the operation
99         makeContext();
100         verifyRequest("bod.json", verifyOperation(oper), IGNORE_FIELDS);
101     }
102
103     @Override
104     protected Map<String, String> makeEnrichment() {
105         return Map.of(BandwidthOnDemandOperation.SERVICE_ID_KEY, "my-service", BandwidthOnDemandOperation.VNF_ID,
106                         "my-vnf");
107     }
108 }