2 * ========================LICENSE_START=================================
4 * ======================================================================
5 * Copyright (C) 2019-2020 Nordix Foundation. 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.ccsdk.oran.a1policymanagementservice.tasks;
23 import static ch.qos.logback.classic.Level.WARN;
24 import static org.assertj.core.api.Assertions.assertThat;
25 import static org.awaitility.Awaitility.await;
26 import static org.mockito.ArgumentMatchers.any;
27 import static org.mockito.Mockito.verify;
28 import static org.mockito.Mockito.verifyNoInteractions;
29 import static org.mockito.Mockito.verifyNoMoreInteractions;
30 import static org.mockito.Mockito.when;
32 import ch.qos.logback.classic.spi.ILoggingEvent;
33 import ch.qos.logback.core.read.ListAppender;
35 import java.time.Duration;
36 import java.time.Instant;
37 import java.util.Collections;
39 import org.awaitility.Durations;
40 import org.junit.jupiter.api.Test;
41 import org.junit.jupiter.api.extension.ExtendWith;
42 import org.mockito.Mock;
43 import org.mockito.junit.jupiter.MockitoExtension;
44 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1Client;
45 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1ClientFactory;
46 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.ApplicationConfig;
47 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.ImmutableRicConfig;
48 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.RicConfig;
49 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Policies;
50 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Policy;
51 import org.onap.ccsdk.oran.a1policymanagementservice.repository.PolicyType;
52 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Ric;
53 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Service;
54 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Services;
55 import org.onap.ccsdk.oran.a1policymanagementservice.utils.LoggingUtils;
56 import reactor.core.publisher.Mono;
58 @ExtendWith(MockitoExtension.class)
59 class ServiceSupervisionTest {
61 private static final String SERVICE_NAME = "Service name";
62 private static final String RIC_NAME = "name";
63 private static final String POLICY_ID = "policy";
66 A1ClientFactory a1ClientFactoryMock;
68 A1Client a1ClientMock;
70 private Services services;
71 private Service service;
72 private Policies policies;
73 private RicConfig ricConfig = ImmutableRicConfig.builder() //
75 .baseUrl("baseUrl") //
76 .managedElementIds(Collections.emptyList()) //
77 .controllerName("") //
79 private Ric ric = new Ric(ricConfig);
80 private PolicyType policyType = PolicyType.builder() //
81 .id("policyTypeName") //
84 private Policy policy = Policy.builder() //
87 .ownerServiceId(SERVICE_NAME) //
90 .lastModified(Instant.now()) //
91 .isTransient(false) //
92 .statusNotificationUri("statusNotificationUri") //
96 void serviceExpired_policyAndServiceAreDeletedInRepoAndPolicyIsDeletedInRic() {
97 setUpRepositoryWithKeepAliveInterval(Duration.ofSeconds(2));
99 setUpCreationOfA1Client();
100 when(a1ClientMock.deletePolicy(any(Policy.class))).thenReturn(Mono.just("Policy deleted"));
102 ServiceSupervision serviceSupervisionUnderTest =
103 new ServiceSupervision(services, policies, a1ClientFactoryMock);
105 await().atMost(Durations.FIVE_SECONDS).with().pollInterval(Durations.ONE_SECOND).until(service::isExpired);
107 serviceSupervisionUnderTest.checkAllServices().blockLast();
109 assertThat(policies.size()).isZero();
110 assertThat(services.size()).isZero();
112 verify(a1ClientMock).deletePolicy(policy);
113 verifyNoMoreInteractions(a1ClientMock);
117 void serviceExpiredButDeleteInRicFails_policyAndServiceAreDeletedInRepoAndErrorLoggedForRic() {
118 setUpRepositoryWithKeepAliveInterval(Duration.ofSeconds(2));
120 setUpCreationOfA1Client();
121 String originalErrorMessage = "Failed";
122 when(a1ClientMock.deletePolicy(any(Policy.class))).thenReturn(Mono.error(new Exception(originalErrorMessage)));
124 ServiceSupervision serviceSupervisionUnderTest =
125 new ServiceSupervision(services, policies, a1ClientFactoryMock);
127 await().atMost(Durations.FIVE_SECONDS).with().pollInterval(Durations.ONE_SECOND).until(service::isExpired);
129 final ListAppender<ILoggingEvent> logAppender = LoggingUtils.getLogListAppender(ServiceSupervision.class, WARN);
131 serviceSupervisionUnderTest.checkAllServices().blockLast();
133 assertThat(policies.size()).isZero();
134 assertThat(services.size()).isZero();
136 ILoggingEvent loggingEvent = logAppender.list.get(0);
137 assertThat(loggingEvent.getLevel()).isEqualTo(WARN);
138 String expectedLogMessage =
139 "Could not delete policy: " + POLICY_ID + " from ric: " + RIC_NAME + ". Cause: " + originalErrorMessage;
140 assertThat(loggingEvent.getFormattedMessage()).isEqualTo(expectedLogMessage);
144 void serviceNotExpired_shouldNotBeChecked() {
145 setUpRepositoryWithKeepAliveInterval(Duration.ofSeconds(2));
147 ServiceSupervision serviceSupervisionUnderTest =
148 new ServiceSupervision(services, policies, a1ClientFactoryMock);
150 serviceSupervisionUnderTest.checkAllServices().blockLast();
152 assertThat(policies.size()).isEqualTo(1);
153 assertThat(services.size()).isEqualTo(1);
155 verifyNoInteractions(a1ClientFactoryMock);
156 verifyNoInteractions(a1ClientMock);
160 void serviceWithoutKeepAliveInterval_shouldNotBeChecked() {
161 setUpRepositoryWithKeepAliveInterval(Duration.ofSeconds(0));
163 ServiceSupervision serviceSupervisionUnderTest =
164 new ServiceSupervision(services, policies, a1ClientFactoryMock);
166 serviceSupervisionUnderTest.checkAllServices().blockLast();
168 assertThat(policies.size()).isEqualTo(1);
169 assertThat(services.size()).isEqualTo(1);
171 verifyNoInteractions(a1ClientFactoryMock);
172 verifyNoInteractions(a1ClientMock);
175 private void setUpCreationOfA1Client() {
176 when(a1ClientFactoryMock.createA1Client(any(Ric.class))).thenReturn(Mono.just(a1ClientMock));
179 private void setUpRepositoryWithKeepAliveInterval(Duration keepAliveInterval) {
180 services = new Services();
181 service = new Service(SERVICE_NAME, keepAliveInterval, "callbackUrl");
182 services.put(service);
184 ApplicationConfig appConfig = new ApplicationConfig();
185 policies = new Policies(appConfig);
186 policies.put(policy);