3208d4c53268372f4dfd344ce95b21834e265249
[policy/drools-applications.git] / controlloop / common / controller-usecases / src / test / java / org / onap / policy / drools / apps / controller / usecases / LockOperation2Test.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020-2021 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.drools.apps.controller.usecases;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.Assert.assertSame;
28 import static org.mockito.ArgumentMatchers.anyString;
29 import static org.mockito.Mockito.when;
30
31 import java.util.List;
32 import java.util.Map;
33 import java.util.concurrent.CompletableFuture;
34 import org.junit.Before;
35 import org.junit.Test;
36 import org.junit.runner.RunWith;
37 import org.mockito.Mock;
38 import org.mockito.junit.MockitoJUnitRunner;
39 import org.onap.aai.domain.yang.GenericVnf;
40 import org.onap.policy.controlloop.VirtualControlLoopEvent;
41 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
42 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
43 import org.onap.policy.controlloop.actorserviceprovider.parameters.ControlLoopOperationParams;
44 import org.onap.policy.controlloop.eventmanager.StepContext;
45
46 @RunWith(MockitoJUnitRunner.class)
47 public class LockOperation2Test {
48     private static final String MY_PNF = "my-pnf";
49     private static final String MY_VNF = "my-vnf";
50     private static final String MY_ACTOR = "my-actor";
51     private static final String MY_OPERATION = "my-operation";
52
53     @Mock
54     private StepContext stepContext;
55     @Mock
56     private ControlLoopOperationParams params;
57
58     private VirtualControlLoopEvent event;
59     private CompletableFuture<OperationOutcome> future;
60     private GenericVnf vnf;
61     private LockOperation2 oper;
62
63     /**
64      * Sets up.
65      */
66     @Before
67     public void setUp() {
68         event = new VirtualControlLoopEvent();
69         event.setTarget("pnf.pnf-name");
70         event.setAai(Map.of("pnf.pnf-name", MY_PNF));
71
72         future = new CompletableFuture<>();
73
74         vnf = new GenericVnf();
75         vnf.setVnfId(MY_VNF);
76
77         when(stepContext.requestLock(anyString())).thenReturn(future);
78
79         when(params.getActor()).thenReturn(MY_ACTOR);
80         when(params.getOperation()).thenReturn(MY_OPERATION);
81
82         oper = new LockOperation2(stepContext, params);
83     }
84
85     @Test
86     public void testGetPropertyNames() {
87         assertThat(oper.getPropertyNames()).isEqualTo(List.of(OperationProperties.AAI_TARGET_ENTITY));
88     }
89
90     @Test
91     public void testStart() {
92         // missing data
93         assertThatIllegalStateException().isThrownBy(() -> oper.start())
94                         .withMessage("target lock entity has not been determined yet");
95
96         oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "some-target");
97         assertSame(future, oper.start());
98     }
99
100     @Test
101     public void testSetProperty() {
102         oper.setProperty("unknown-property", "some data");
103         assertNull(oper.getTargetEntity());
104
105         oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "other data");
106         assertEquals("other data", oper.getTargetEntity());
107     }
108
109     @Test
110     public void testGetActorName_testGetName() {
111         assertEquals(MY_ACTOR, oper.getActorName());
112         assertEquals(MY_OPERATION, oper.getName());
113     }
114 }