Upgrade Java 17 in policy-drools-apps
[policy/drools-applications.git] / controlloop / common / controller-usecases / src / test / java / org / onap / policy / drools / apps / controller / usecases / step / GetTargetEntityStep2Test.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020-2021 AT&T Intellectual Property. 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.drools.apps.controller.usecases.step;
23
24 import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
25 import static org.junit.jupiter.api.Assertions.assertEquals;
26 import static org.junit.jupiter.api.Assertions.assertFalse;
27 import static org.junit.jupiter.api.Assertions.assertSame;
28 import static org.junit.jupiter.api.Assertions.assertTrue;
29 import static org.mockito.Mockito.mock;
30 import static org.mockito.Mockito.when;
31
32 import org.junit.jupiter.api.BeforeEach;
33 import org.junit.jupiter.api.Test;
34 import org.onap.policy.controlloop.VirtualControlLoopEvent;
35 import org.onap.policy.controlloop.actorserviceprovider.parameters.ControlLoopOperationParams;
36 import org.onap.policy.controlloop.eventmanager.StepContext;
37 import org.onap.policy.drools.apps.controller.usecases.GetTargetEntityOperation2;
38 import org.onap.policy.drools.apps.controller.usecases.UsecasesConstants;
39
40 class GetTargetEntityStep2Test {
41     private final ControlLoopOperationParams params = mock(ControlLoopOperationParams.class);
42     private final StepContext stepContext = mock(StepContext.class);
43     private final VirtualControlLoopEvent event = mock(VirtualControlLoopEvent.class);
44
45     private Step2 master;
46     private GetTargetEntityStep2 step;
47
48     /**
49      * Sets up.
50      */
51     @BeforeEach
52     public void setUp() {
53         when(params.toBuilder()).thenReturn(ControlLoopOperationParams.builder());
54
55         master = new Step2(stepContext, params, event);
56         step = new GetTargetEntityStep2(master);
57     }
58
59     @Test
60     void testConstructor() {
61         assertEquals(UsecasesConstants.GET_TARGET_ENTITY_ACTOR, step.getActorName());
62         assertEquals(UsecasesConstants.GET_TARGET_ENTITY_OPERATION, step.getOperationName());
63         assertSame(stepContext, step.stepContext);
64         assertSame(event, step.event);
65     }
66
67     @Test
68     void testBuildOperation() {
69         var oper = step.buildOperation();
70         assertTrue(oper instanceof GetTargetEntityOperation2);
71     }
72
73     @Test
74     void testStart() {
75         assertThatIllegalStateException().isThrownBy(() -> step.start(200))
76                         .withMessage("step has not been initialized");
77
78         step.init();
79         assertFalse(step.start(100));
80     }
81 }