2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.drools.apps.controller.usecases;
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;
31 import java.util.List;
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;
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";
53 private StepContext stepContext;
55 private ControlLoopOperationParams params;
57 private VirtualControlLoopEvent event;
58 private CompletableFuture<OperationOutcome> future;
59 private GenericVnf vnf;
60 private LockOperation2 oper;
67 MockitoAnnotations.initMocks(this);
69 event = new VirtualControlLoopEvent();
70 event.setTarget("pnf.pnf-name");
71 event.setAai(Map.of("pnf.pnf-name", MY_PNF));
73 future = new CompletableFuture<>();
75 vnf = new GenericVnf();
78 when(stepContext.requestLock(anyString())).thenReturn(future);
80 when(params.getTargetType()).thenReturn(TargetType.PNF);
81 when(params.getActor()).thenReturn(MY_ACTOR);
82 when(params.getOperation()).thenReturn(MY_OPERATION);
84 oper = new LockOperation2(stepContext, params);
88 public void testGetPropertyNames() {
89 assertThat(oper.getPropertyNames()).isEqualTo(List.of(OperationProperties.AAI_TARGET_ENTITY));
93 public void testStart() {
95 assertThatIllegalStateException().isThrownBy(() -> oper.start())
96 .withMessage("target lock entity has not been determined yet");
98 oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "some-target");
99 assertSame(future, oper.start());
103 public void testSetProperty() {
104 oper.setProperty("unknown-property", "some data");
105 assertNull(oper.getTargetEntity());
107 oper.setProperty(OperationProperties.AAI_TARGET_ENTITY, "other data");
108 assertEquals("other data", oper.getTargetEntity());
112 public void testGetActorName_testGetName() {
113 assertEquals(MY_ACTOR, oper.getActorName());
114 assertEquals(MY_OPERATION, oper.getName());