2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2020 AT&T Intellectual Property. 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.policy.controlloop.actorserviceprovider;
23 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertNotNull;
27 import static org.junit.Assert.assertSame;
28 import static org.junit.Assert.assertTrue;
29 import static org.mockito.ArgumentMatchers.any;
30 import static org.mockito.Mockito.doThrow;
31 import static org.mockito.Mockito.never;
32 import static org.mockito.Mockito.spy;
33 import static org.mockito.Mockito.times;
34 import static org.mockito.Mockito.verify;
35 import static org.mockito.Mockito.when;
37 import java.util.Arrays;
38 import java.util.Collection;
39 import java.util.Iterator;
41 import java.util.TreeMap;
42 import java.util.function.Consumer;
43 import java.util.stream.Collectors;
44 import org.junit.Before;
45 import org.junit.Test;
46 import org.onap.policy.common.parameters.ObjectValidationResult;
47 import org.onap.policy.common.parameters.ValidationStatus;
48 import org.onap.policy.controlloop.actorserviceprovider.impl.ActorImpl;
49 import org.onap.policy.controlloop.actorserviceprovider.parameters.ParameterValidationRuntimeException;
50 import org.onap.policy.controlloop.actorserviceprovider.spi.Actor;
52 public class ActorServiceTest {
53 private static final String EXPECTED_EXCEPTION = "expected exception";
54 private static final String ACTOR1 = "actor A";
55 private static final String ACTOR2 = "actor B";
56 private static final String ACTOR3 = "actor C";
57 private static final String ACTOR4 = "actor D";
64 private Map<String, Object> sub1;
65 private Map<String, Object> sub2;
66 private Map<String, Object> sub3;
67 private Map<String, Object> sub4;
68 private Map<String, Object> params;
70 private ActorService service;
74 * Initializes the fields, including a fully populated {@link #service}.
78 actor1 = spy(new ActorImpl(ACTOR1));
79 actor2 = spy(new ActorImpl(ACTOR2));
80 actor3 = spy(new ActorImpl(ACTOR3));
81 actor4 = spy(new ActorImpl(ACTOR4));
83 sub1 = Map.of("sub A", "value A");
84 sub2 = Map.of("sub B", "value B");
85 sub3 = Map.of("sub C", "value C");
86 sub4 = Map.of("sub D", "value D");
88 params = Map.of(ACTOR1, sub1, ACTOR2, sub2, ACTOR3, sub3, ACTOR4, sub4);
90 service = makeService(actor1, actor2, actor3, actor4);
94 public void testActorService() {
96 * make a service where actors two and four have names that are duplicates of the
99 actor2 = spy(new ActorImpl(ACTOR1));
100 actor4 = spy(new ActorImpl(ACTOR3));
102 service = makeService(actor1, actor2, actor3, actor4);
104 assertEquals(2, service.getActorNames().size());
106 assertSame(actor1, service.getActor(ACTOR1));
107 assertSame(actor3, service.getActor(ACTOR3));
111 public void testDoStart() {
112 service.configure(params);
114 setUpOp("testDoStart", actor -> when(actor.isConfigured()).thenReturn(false), Actor::start);
120 assertTrue(service.isAlive());
122 Iterator<Actor> iter = service.getActors().iterator();
123 verify(iter.next()).start();
124 verify(iter.next(), never()).start();
125 verify(iter.next()).start();
126 verify(iter.next()).start();
128 // no additional types of operations
129 verify(actor1).configure(any());
131 // no other types of operations
132 verify(actor1, never()).stop();
133 verify(actor1, never()).shutdown();
137 public void testDoStop() {
138 service.configure(params);
141 setUpOp("testDoStop", Actor::stop, Actor::stop);
147 assertFalse(service.isAlive());
149 Iterator<Actor> iter = service.getActors().iterator();
150 verify(iter.next()).stop();
151 verify(iter.next(), times(2)).stop();
152 verify(iter.next()).stop();
153 verify(iter.next()).stop();
155 // no additional types of operations
156 verify(actor1).configure(any());
157 verify(actor1).start();
159 // no other types of operation
160 verify(actor1, never()).shutdown();
164 public void testDoShutdown() {
165 service.configure(params);
168 setUpOp("testDoShutdown", Actor::shutdown, Actor::shutdown);
171 * Shut down the service.
174 assertFalse(service.isAlive());
176 Iterator<Actor> iter = service.getActors().iterator();
177 verify(iter.next()).shutdown();
178 verify(iter.next(), times(2)).shutdown();
179 verify(iter.next()).shutdown();
180 verify(iter.next()).shutdown();
182 // no additional types of operations
183 verify(actor1).configure(any());
184 verify(actor1).start();
186 // no other types of operation
187 verify(actor1, never()).stop();
191 * Applies an operation to the second actor, and then arranges for the third actor to
192 * throw an exception when its operation is performed.
194 * @param testName test name
195 * @param oper2 operation to apply to the second actor
196 * @param oper3 operation to apply to the third actor
198 private void setUpOp(String testName, Consumer<Actor> oper2, Consumer<Actor> oper3) {
199 Collection<Actor> actors = service.getActors();
200 assertEquals(testName, 4, actors.size());
202 Iterator<Actor> iter = actors.iterator();
204 // leave the first alone
207 // apply oper2 to the second actor
208 oper2.accept(iter.next());
210 // throw an exception in the third
211 oper3.accept(doThrow(new IllegalStateException(EXPECTED_EXCEPTION)).when(iter.next()));
213 // leave the fourth alone
218 public void testGetActor() {
219 assertSame(actor1, service.getActor(ACTOR1));
220 assertSame(actor3, service.getActor(ACTOR3));
222 assertThatIllegalArgumentException().isThrownBy(() -> service.getActor("unknown actor"));
226 public void testGetActors() {
228 assertEquals("[actor A, actor B, actor C, actor D]",
229 service.getActors().stream()
232 .collect(Collectors.toList())
238 public void testGetActorNames() {
240 assertEquals("[actor A, actor B, actor C, actor D]",
241 service.getActorNames().stream()
243 .collect(Collectors.toList())
249 public void testDoConfigure() {
250 service.configure(params);
251 assertTrue(service.isConfigured());
253 verify(actor1).configure(sub1);
254 verify(actor2).configure(sub2);
255 verify(actor3).configure(sub3);
256 verify(actor4).configure(sub4);
258 // no other types of operations
259 verify(actor1, never()).start();
260 verify(actor1, never()).stop();
261 verify(actor1, never()).shutdown();
265 * Tests doConfigure() where actors throw parameter validation and runtime exceptions.
268 public void testDoConfigureExceptions() {
269 makeValidException(actor1);
270 makeRuntimeException(actor2);
271 makeValidException(actor3);
273 service.configure(params);
274 assertTrue(service.isConfigured());
278 * Tests doConfigure(). Arranges for the following:
280 * <li>one actor is configured, but has parameters</li>
281 * <li>another actor is configured, but has no parameters</li>
282 * <li>another actor has no parameters and is not configured</li>
286 public void testDoConfigureConfigure() {
287 // need mutable parameters
288 params = new TreeMap<>(params);
290 // configure one actor
291 actor1.configure(sub1);
293 // configure another and remove its parameters
294 actor2.configure(sub2);
295 params.remove(ACTOR2);
297 // create a new, unconfigured actor
298 ActorImpl actor5 = spy(new ActorImpl("UNCONFIGURED"));
299 service = makeService(actor1, actor2, actor3, actor4, actor5);
304 service.configure(params);
305 assertTrue(service.isConfigured());
307 // this should have been configured again
308 verify(actor1, times(2)).configure(sub1);
310 // no parameters, so this should not have been configured again
311 verify(actor2).configure(sub2);
313 // these were only configured once
314 verify(actor3).configure(sub3);
315 verify(actor4).configure(sub4);
318 verify(actor5, never()).configure(any());
319 assertFalse(actor5.isConfigured());
321 // start and verify that all are started except for the last
323 verify(actor1).start();
324 verify(actor2).start();
325 verify(actor3).start();
326 verify(actor4).start();
327 verify(actor5, never()).start();
331 * Arranges for an actor to throw a validation exception when
332 * {@link Actor#configure(Map)} is invoked.
334 * @param actor actor of interest
336 private void makeValidException(Actor actor) {
337 ParameterValidationRuntimeException ex = new ParameterValidationRuntimeException(
338 new ObjectValidationResult(actor.getName(), null, ValidationStatus.INVALID, "null"));
339 doThrow(ex).when(actor).configure(any());
343 * Arranges for an actor to throw a runtime exception when
344 * {@link Actor#configure(Map)} is invoked.
346 * @param actor actor of interest
348 private void makeRuntimeException(Actor actor) {
349 IllegalStateException ex = new IllegalStateException(EXPECTED_EXCEPTION);
350 doThrow(ex).when(actor).configure(any());
354 public void testLoadActors() {
355 ActorService service = new ActorService();
356 assertFalse(service.getActors().isEmpty());
357 assertNotNull(service.getActor(DummyActor.class.getSimpleName()));
361 * Makes an actor service whose {@link ActorService#loadActors()} method returns the
364 * @param actors actors to be returned
365 * @return a new actor service
367 private ActorService makeService(Actor... actors) {
368 return new ActorService() {
370 protected Iterable<Actor> loadActors() {
371 return Arrays.asList(actors);