Add Service Template TOSCA handling
[policy/models.git] / models-interactions / model-actors / actor.so / src / test / java / org / onap / policy / controlloop / actor / so / ModifyNssiTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 Wipro Limited.
6  * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7  * Modifications Copyright (C) 2020 Nordix Foundation.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.controlloop.actor.so;
24
25 import static org.assertj.core.api.Assertions.assertThat;
26 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
27 import static org.junit.Assert.assertEquals;
28 import static org.junit.Assert.assertFalse;
29 import static org.junit.Assert.assertTrue;
30
31 import java.util.List;
32 import org.junit.AfterClass;
33 import org.junit.Before;
34 import org.junit.BeforeClass;
35 import org.junit.Test;
36 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
37 import org.onap.policy.common.utils.resources.ResourceUtils;
38 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
39 import org.onap.policy.controlloop.actorserviceprovider.OperationResult;
40 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingConfig;
41 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingParams;
42 import org.onap.policy.so.SoResponse;
43
44 public class ModifyNssiTest extends BasicSoOperation {
45
46     private ModifyNssi oper;
47
48
49     public ModifyNssiTest() {
50         super(DEFAULT_ACTOR, ModifyNssi.NAME);
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     @Override
64     @Before
65     public void setUp() throws Exception {
66         super.setUp();
67         oper = new ModifyNssi(params, config);
68     }
69
70     @Test
71     public void testSuccess() throws Exception {
72         HttpPollingParams opParams = HttpPollingParams.builder().clientName(MY_CLIENT).path("3gppservices/v7/modify")
73                 .pollPath("orchestrationRequests/v5/").maxPolls(2).build();
74         config = new HttpPollingConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
75         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).build();
76
77         oper = new ModifyNssi(params, config);
78         oper.setProperty(OperationProperties.EVENT_PAYLOAD, getPayload());
79         outcome = oper.start().get();
80
81         assertEquals(OperationResult.SUCCESS, outcome.getResult());
82         assertTrue(outcome.getResponse() instanceof SoResponse);
83     }
84
85     @Test
86     public void testConstructor() {
87         assertEquals(DEFAULT_ACTOR, oper.getActorName());
88         assertEquals(ModifyNssi.NAME, oper.getName());
89         assertFalse(oper.isUsePolling());
90
91         params = params.toBuilder().targetType(null).build();
92         assertThatIllegalArgumentException().isThrownBy(() -> new ModifyNssi(params, config))
93                 .withMessageContaining("Target information");
94     }
95
96     @Test
97     public void testGetPropertyNames() {
98         assertThat(oper.getPropertyNames()).isEqualTo(List.of(OperationProperties.EVENT_PAYLOAD));
99     }
100
101     private String getPayload() {
102         return ResourceUtils.getResourceAsString("src/test/resources/ModifyNSSI.json");
103     }
104
105
106 }