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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.clamp.controlloop.runtime.supervision;
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;
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;
33 class SupervisionAspectTest {
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);
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);
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);
61 try (var supervisionAspect = new SupervisionAspect(supervisionScanner)) {
62 supervisionAspect.handleParticipantStatus(participantStatusMessage);
63 verify(supervisionScanner, timeout(500)).handleParticipantStatus(identifier);