b06908da2a21e83a9d8b019642318801f1d0cbf2
[policy/apex-pdp.git] / examples / examples-adaptive / src / test / java / org / onap / policy / apex / examples / adaptive / TestApexActionListener.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 Nordix Foundation.
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.apex.examples.adaptive;
23
24 import static org.awaitility.Awaitility.await;
25
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.concurrent.TimeUnit;
29
30 import org.onap.policy.apex.core.engine.engine.EnEventListener;
31 import org.onap.policy.apex.core.engine.event.EnEvent;
32
33 /**
34  * The listener interface for receiving testApexAction events. The class that is interested in processing a
35  * testApexAction event implements this interface, and the object created with that class is registered with a component
36  * using the component's <code>addTestApexActionListener</code> method. When the testApexAction event occurs, that
37  * object's appropriate method is invoked.
38  *
39  * @author Liam Fallon (liam.fallon@ericsson.com)
40  */
41 public class TestApexActionListener implements EnEventListener {
42     private List<EnEvent> resultEvents = new ArrayList<>();
43
44     private final String id;
45
46     /**
47      * Instantiates a new test apex action listener.
48      *
49      * @param id the id
50      */
51     public TestApexActionListener(final String id) {
52         this.id = id;
53     }
54
55     /**
56      * Gets the result.
57      *
58      * @return the result
59      */
60     public EnEvent getResult() {
61         await().atLeast(100, TimeUnit.MILLISECONDS).until(() -> !resultEvents.isEmpty());
62         return resultEvents.remove(0);
63     }
64
65     /**
66      * {@inheritDoc}.
67      */
68     @Override
69     public void onEnEvent(final EnEvent actionEvent) {
70         if (actionEvent != null) {
71             System.out.println("Action event from engine:" + actionEvent.getName());
72             resultEvents.add(actionEvent);
73         }
74     }
75
76     /**
77      * Gets the id.
78      *
79      * @return the id
80      */
81     public String getId() {
82         return id;
83     }
84 }