401e0ca580c0afef03ec7fc721d7939e48e3647b
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.policy.controlloop.actorserviceprovider;
22
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;
36
37 import java.util.Arrays;
38 import java.util.Collection;
39 import java.util.Iterator;
40 import java.util.Map;
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;
51
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";
58
59     private Actor actor1;
60     private Actor actor2;
61     private Actor actor3;
62     private Actor actor4;
63
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;
69
70     private ActorService service;
71
72
73     /**
74      * Initializes the fields, including a fully populated {@link #service}.
75      */
76     @Before
77     public void setUp() {
78         actor1 = spy(new ActorImpl(ACTOR1));
79         actor2 = spy(new ActorImpl(ACTOR2));
80         actor3 = spy(new ActorImpl(ACTOR3));
81         actor4 = spy(new ActorImpl(ACTOR4));
82
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");
87
88         params = Map.of(ACTOR1, sub1, ACTOR2, sub2, ACTOR3, sub3, ACTOR4, sub4);
89
90         service = makeService(actor1, actor2, actor3, actor4);
91     }
92
93     @Test
94     public void testActorService() {
95         /*
96          * make a service where actors two and four have names that are duplicates of the
97          * others
98          */
99         actor2 = spy(new ActorImpl(ACTOR1));
100         actor4 = spy(new ActorImpl(ACTOR3));
101
102         service = makeService(actor1, actor2, actor3, actor4);
103
104         assertEquals(2, service.getActorNames().size());
105
106         assertSame(actor1, service.getActor(ACTOR1));
107         assertSame(actor3, service.getActor(ACTOR3));
108     }
109
110     @Test
111     public void testDoStart() {
112         service.configure(params);
113
114         setUpOp("testDoStart", actor -> when(actor.isConfigured()).thenReturn(false), Actor::start);
115
116         /*
117          * Start the service.
118          */
119         service.start();
120         assertTrue(service.isAlive());
121
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();
127
128         // no additional types of operations
129         verify(actor1).configure(any());
130
131         // no other types of operations
132         verify(actor1, never()).stop();
133         verify(actor1, never()).shutdown();
134     }
135
136     @Test
137     public void testDoStop() {
138         service.configure(params);
139         service.start();
140
141         setUpOp("testDoStop", Actor::stop, Actor::stop);
142
143         /*
144          * Stop the service.
145          */
146         service.stop();
147         assertFalse(service.isAlive());
148
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();
154
155         // no additional types of operations
156         verify(actor1).configure(any());
157         verify(actor1).start();
158
159         // no other types of operation
160         verify(actor1, never()).shutdown();
161     }
162
163     @Test
164     public void testDoShutdown() {
165         service.configure(params);
166         service.start();
167
168         setUpOp("testDoShutdown", Actor::shutdown, Actor::shutdown);
169
170         /*
171          * Shut down the service.
172          */
173         service.shutdown();
174         assertFalse(service.isAlive());
175
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();
181
182         // no additional types of operations
183         verify(actor1).configure(any());
184         verify(actor1).start();
185
186         // no other types of operation
187         verify(actor1, never()).stop();
188     }
189
190     /**
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.
193      *
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
197      */
198     private void setUpOp(String testName, Consumer<Actor> oper2, Consumer<Actor> oper3) {
199         Collection<Actor> actors = service.getActors();
200         assertEquals(testName, 4, actors.size());
201
202         Iterator<Actor> iter = actors.iterator();
203
204         // leave the first alone
205         iter.next();
206
207         // apply oper2 to the second actor
208         oper2.accept(iter.next());
209
210         // throw an exception in the third
211         oper3.accept(doThrow(new IllegalStateException(EXPECTED_EXCEPTION)).when(iter.next()));
212
213         // leave the fourth alone
214         iter.next();
215     }
216
217     @Test
218     public void testGetActor() {
219         assertSame(actor1, service.getActor(ACTOR1));
220         assertSame(actor3, service.getActor(ACTOR3));
221
222         assertThatIllegalArgumentException().isThrownBy(() -> service.getActor("unknown actor"));
223     }
224
225     @Test
226     public void testGetActors() {
227         // @formatter:off
228         assertEquals("[actor A, actor B, actor C, actor D]",
229                         service.getActors().stream()
230                             .map(Actor::getName)
231                             .sorted()
232                             .collect(Collectors.toList())
233                             .toString());
234         // @formatter:on
235     }
236
237     @Test
238     public void testGetActorNames() {
239         // @formatter:off
240         assertEquals("[actor A, actor B, actor C, actor D]",
241                         service.getActorNames().stream()
242                             .sorted()
243                             .collect(Collectors.toList())
244                             .toString());
245         // @formatter:on
246     }
247
248     @Test
249     public void testDoConfigure() {
250         service.configure(params);
251         assertTrue(service.isConfigured());
252
253         verify(actor1).configure(sub1);
254         verify(actor2).configure(sub2);
255         verify(actor3).configure(sub3);
256         verify(actor4).configure(sub4);
257
258         // no other types of operations
259         verify(actor1, never()).start();
260         verify(actor1, never()).stop();
261         verify(actor1, never()).shutdown();
262     }
263
264     /**
265      * Tests doConfigure() where actors throw parameter validation and runtime exceptions.
266      */
267     @Test
268     public void testDoConfigureExceptions() {
269         makeValidException(actor1);
270         makeRuntimeException(actor2);
271         makeValidException(actor3);
272
273         service.configure(params);
274         assertTrue(service.isConfigured());
275     }
276
277     /**
278      * Tests doConfigure(). Arranges for the following:
279      * <ul>
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>
283      * </ul>
284      */
285     @Test
286     public void testDoConfigureConfigure() {
287         // need mutable parameters
288         params = new TreeMap<>(params);
289
290         // configure one actor
291         actor1.configure(sub1);
292
293         // configure another and remove its parameters
294         actor2.configure(sub2);
295         params.remove(ACTOR2);
296
297         // create a new, unconfigured actor
298         ActorImpl actor5 = spy(new ActorImpl("UNCONFIGURED"));
299         service = makeService(actor1, actor2, actor3, actor4, actor5);
300
301         /*
302          * Configure it.
303          */
304         service.configure(params);
305         assertTrue(service.isConfigured());
306
307         // this should have been configured again
308         verify(actor1, times(2)).configure(sub1);
309
310         // no parameters, so this should not have been configured again
311         verify(actor2).configure(sub2);
312
313         // these were only configured once
314         verify(actor3).configure(sub3);
315         verify(actor4).configure(sub4);
316
317         // never configured
318         verify(actor5, never()).configure(any());
319         assertFalse(actor5.isConfigured());
320
321         // start and verify that all are started except for the last
322         service.start();
323         verify(actor1).start();
324         verify(actor2).start();
325         verify(actor3).start();
326         verify(actor4).start();
327         verify(actor5, never()).start();
328     }
329
330     /**
331      * Arranges for an actor to throw a validation exception when
332      * {@link Actor#configure(Map)} is invoked.
333      *
334      * @param actor actor of interest
335      */
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());
340     }
341
342     /**
343      * Arranges for an actor to throw a runtime exception when
344      * {@link Actor#configure(Map)} is invoked.
345      *
346      * @param actor actor of interest
347      */
348     private void makeRuntimeException(Actor actor) {
349         IllegalStateException ex = new IllegalStateException(EXPECTED_EXCEPTION);
350         doThrow(ex).when(actor).configure(any());
351     }
352
353     @Test
354     public void testLoadActors() {
355         ActorService service = new ActorService();
356         assertFalse(service.getActors().isEmpty());
357         assertNotNull(service.getActor(DummyActor.class.getSimpleName()));
358     }
359
360     /**
361      * Makes an actor service whose {@link ActorService#loadActors()} method returns the
362      * given actors.
363      *
364      * @param actors actors to be returned
365      * @return a new actor service
366      */
367     private ActorService makeService(Actor... actors) {
368         return new ActorService() {
369             @Override
370             protected Iterable<Actor> loadActors() {
371                 return Arrays.asList(actors);
372             }
373         };
374     }
375 }