Upgrade and clean up dependencies
[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-2021 AT&T Intellectual Property. All rights reserved.
7  * Modifications Copyright (C) 2020,2023 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.assertj.core.api.Assertions.assertThatIllegalStateException;
28 import static org.junit.Assert.assertEquals;
29 import static org.junit.Assert.assertFalse;
30 import static org.junit.Assert.assertTrue;
31
32 import java.util.List;
33 import org.junit.AfterClass;
34 import org.junit.Before;
35 import org.junit.BeforeClass;
36 import org.junit.Test;
37 import org.junit.runner.RunWith;
38 import org.mockito.junit.MockitoJUnitRunner;
39 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
40 import org.onap.policy.common.utils.resources.ResourceUtils;
41 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
42 import org.onap.policy.controlloop.actorserviceprovider.OperationResult;
43 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingConfig;
44 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingParams;
45 import org.onap.policy.so.SoResponse;
46
47 @RunWith(MockitoJUnitRunner.class)
48 public class ModifyNssiTest extends BasicSoOperation {
49
50     private ModifyNssi oper;
51
52
53     public ModifyNssiTest() {
54         super(DEFAULT_ACTOR, ModifyNssi.NAME);
55     }
56
57     @BeforeClass
58     public static void setUpBeforeClass() throws Exception {
59         initBeforeClass();
60     }
61
62     @AfterClass
63     public static void tearDownAfterClass() {
64         destroyAfterClass();
65     }
66
67     @Override
68     @Before
69     public void setUp() throws Exception {
70         super.setUp();
71         oper = new ModifyNssi(params, config);
72     }
73
74     @Test
75     public void testSuccess() throws Exception {
76         HttpPollingParams opParams = HttpPollingParams.builder().clientName(MY_CLIENT).path("3gppservices/v7/modify")
77                 .pollPath("orchestrationRequests/v5/").maxPolls(2).build();
78         config = new HttpPollingConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
79         params = params.toBuilder().retry(0).timeoutSec(5).executor(blockingExecutor).build();
80
81         oper = new ModifyNssi(params, config);
82         oper.setProperty(OperationProperties.EVENT_PAYLOAD, getPayload());
83         outcome = oper.start().get();
84
85         assertEquals(OperationResult.SUCCESS, outcome.getResult());
86         assertTrue(outcome.getResponse() instanceof SoResponse);
87     }
88
89     @Test
90     public void testConstructor() {
91         assertEquals(DEFAULT_ACTOR, oper.getActorName());
92         assertEquals(ModifyNssi.NAME, oper.getName());
93         assertFalse(oper.isUsePolling());
94
95         params = params.toBuilder().targetType(null).build();
96         assertThatIllegalArgumentException().isThrownBy(() -> new ModifyNssi(params, config))
97                 .withMessageContaining("Target information");
98     }
99
100     @Test
101     public void testGetPropertyNames() {
102         assertThat(oper.getPropertyNames()).isEqualTo(List.of(OperationProperties.EVENT_PAYLOAD));
103     }
104
105     private String getPayload() {
106         return ResourceUtils.getResourceAsString("src/test/resources/ModifyNSSI.json");
107     }
108
109     /**
110      * Tests makeRequest() when a property is missing.
111      */
112     @Test
113     public void testMakeRequestMissingProperty() throws Exception {
114         oper = new ModifyNssi(params, config);
115
116         assertThatIllegalStateException().isThrownBy(() -> oper.makeRequest())
117                         .withMessageContaining("missing event payload");
118     }
119
120 }