Upgrade and clean up dependencies
[policy/models.git] / models-interactions / model-actors / actor.so / src / test / java / org / onap / policy / controlloop / actor / so / ModifyCllTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2022 CTC, Inc. and others. All rights reserved.
6  * Modifications Copyright (C) 2023 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.actor.so;
23
24 import static org.assertj.core.api.Assertions.assertThat;
25 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
26 import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
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.junit.runner.RunWith;
37 import org.mockito.junit.MockitoJUnitRunner;
38 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
39 import org.onap.policy.common.utils.resources.ResourceUtils;
40 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
41 import org.onap.policy.controlloop.actorserviceprovider.OperationResult;
42 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingConfig;
43 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingParams;
44 import org.onap.policy.so.SoResponse;
45
46 @RunWith(MockitoJUnitRunner.class)
47 public class ModifyCllTest extends BasicSoOperation {
48
49     private ModifyCll oper;
50
51
52     public ModifyCllTest() {
53         super(DEFAULT_ACTOR, ModifyCll.NAME);
54     }
55
56     @BeforeClass
57     public static void setUpBeforeClass() throws Exception {
58         initBeforeClass();
59     }
60
61     @AfterClass
62     public static void tearDownAfterClass() {
63         destroyAfterClass();
64     }
65
66     @Override
67     @Before
68     public void setUp() throws Exception {
69         super.setUp();
70         oper = new ModifyCll(params, config);
71     }
72
73     @Test
74     public void testSuccess() throws Exception {
75         HttpPollingParams opParams = HttpPollingParams.builder().clientName(MY_CLIENT)
76                 .path("infra/serviceIntent/v1/modify")
77                 .pollPath("orchestrationRequests/v5/").maxPolls(2).build();
78         config = new HttpPollingConfig(blockingExecutor, opParams, HttpClientFactoryInstance.getClientFactory());
79         params = params.toBuilder().retry(0).timeoutSec(50).executor(blockingExecutor).build();
80
81         oper = new ModifyCll(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(ModifyCll.NAME, oper.getName());
93         assertFalse(oper.isUsePolling());
94
95         params = params.toBuilder().targetType(null).build();
96         assertThatIllegalArgumentException().isThrownBy(() -> new ModifyCll(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/ModifyCll.json");
107     }
108
109     /**
110      * Tests makeRequest() when a property is missing.
111      */
112     @Test
113     public void testMakeRequestMissingProperty() throws Exception {
114         oper = new ModifyCll(params, config);
115
116         assertThatIllegalStateException().isThrownBy(() -> oper.makeRequest())
117                         .withMessageContaining("missing event payload");
118     }
119
120 }