f5ab9f28ddac7272b095c77f6b196a0568434001
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.clamp.controlloop.runtime.supervision;
23
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(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(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(identifier);
64         }
65     }
66 }