30ee9b1b99ac49012ae2f30d803f6c82ae6f07b6
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.clamp.controlloop.runtime.supervision;
22
23 import static org.mockito.ArgumentMatchers.eq;
24 import static org.mockito.Mockito.mock;
25 import static org.mockito.Mockito.spy;
26 import static org.mockito.Mockito.timeout;
27 import static org.mockito.Mockito.verify;
28
29 import org.junit.jupiter.api.Test;
30 import org.onap.policy.clamp.controlloop.models.messages.dmaap.participant.ParticipantStatus;
31 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
32
33 class SupervisionAspectTest {
34
35     @Test
36     void testSchedule() throws Exception {
37         var supervisionScanner = spy(mock(SupervisionScanner.class));
38         try (var supervisionAspect = new SupervisionAspect(supervisionScanner)) {
39             supervisionAspect.schedule();
40             verify(supervisionScanner, timeout(500)).run(eq(true));
41         }
42     }
43
44     @Test
45     void testDoCheck() throws Exception {
46         var supervisionScanner = spy(mock(SupervisionScanner.class));
47         try (var supervisionAspect = new SupervisionAspect(supervisionScanner)) {
48             supervisionAspect.doCheck();
49             supervisionAspect.doCheck();
50             verify(supervisionScanner, timeout(500).times(2)).run(eq(false));
51         }
52     }
53
54     @Test
55     void testHandleParticipantStatus() throws Exception {
56         var supervisionScanner = spy(mock(SupervisionScanner.class));
57         var participantStatusMessage = new ParticipantStatus();
58         var identifier = new ToscaConceptIdentifier("abc", "1.0.0");
59         participantStatusMessage.setParticipantId(identifier);
60
61         try (var supervisionAspect = new SupervisionAspect(supervisionScanner)) {
62             supervisionAspect.handleParticipantStatus(participantStatusMessage);
63             verify(supervisionScanner, timeout(500)).handleParticipantStatus(eq(identifier));
64         }
65     }
66 }