42fd9e4e44af90b5bdfbe713c40145523898b823
[policy/drools-applications.git] /
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.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.mockito.Mock;
37 import org.mockito.MockitoAnnotations;
38 import org.onap.aai.domain.yang.GenericVnf;
39 import org.onap.policy.controlloop.VirtualControlLoopEvent;
40 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
41 import org.onap.policy.controlloop.actorserviceprovider.OperationProperties;
42 import org.onap.policy.controlloop.actorserviceprovider.TargetType;
43 import org.onap.policy.controlloop.actorserviceprovider.parameters.ControlLoopOperationParams;
44 import org.onap.policy.controlloop.eventmanager.StepContext;
45
46 public class LockOperation2Test {
47     private static final String MY_PNF = "my-pnf";
48     private static final String MY_VNF = "my-vnf";
49     private static final String MY_ACTOR = "my-actor";
50     private static final String MY_OPERATION = "my-operation";
51
52     @Mock
53     private StepContext stepContext;
54     @Mock
55     private ControlLoopOperationParams params;
56
57     private VirtualControlLoopEvent event;
58     private CompletableFuture<OperationOutcome> future;
59     private GenericVnf vnf;
60     private LockOperation2 oper;
61
62     /**
63      * Sets up.
64      */
65     @Before
66     public void setUp() {
67         MockitoAnnotations.initMocks(this);
68
69         event = new VirtualControlLoopEvent();
70         event.setTarget("pnf.pnf-name");
71         event.setAai(Map.of("pnf.pnf-name", MY_PNF));
72
73         future = new CompletableFuture<>();
74
75         vnf = new GenericVnf();
76         vnf.setVnfId(MY_VNF);
77
78         when(stepContext.requestLock(anyString())).thenReturn(future);
79
80         when(params.getTargetType()).thenReturn(TargetType.PNF);
81         when(params.getActor()).thenReturn(MY_ACTOR);
82         when(params.getOperation()).thenReturn(MY_OPERATION);
83
84         oper = new LockOperation2(stepContext, params);
85     }
86
87     @Test
88     public void testGetPropertyNames() {
89         assertThat(oper.getPropertyNames()).isEqualTo(List.of(OperationProperties.AAI_TARGET_ENTITY));
90     }
91
92     @Test
93     public void testStart() {
94         // missing data
95         assertThatIllegalStateException().isThrownBy(() -> oper.start())
96                         .withMessage("target lock entity has not been determined yet");
97
98         oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "some-target");
99         assertSame(future, oper.start());
100     }
101
102     @Test
103     public void testSetProperty() {
104         oper.setProperty("unknown-property", "some data");
105         assertNull(oper.getTargetEntity());
106
107         oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "other data");
108         assertEquals("other data", oper.getTargetEntity());
109     }
110
111     @Test
112     public void testGetActorName_testGetName() {
113         assertEquals(MY_ACTOR, oper.getActorName());
114         assertEquals(MY_OPERATION, oper.getName());
115     }
116 }