aboutsummaryrefslogtreecommitdiffstats
path: root/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/listeners/RequestIdDispatcherTest.java
blob: 94717e53f7d2df8b3f218e42b8a41ebeaa3310e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.common.endpoints.listeners;

import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;

import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.Logger;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
import org.onap.policy.common.utils.coder.Coder;
import org.onap.policy.common.utils.coder.CoderException;
import org.onap.policy.common.utils.coder.StandardCoder;
import org.onap.policy.common.utils.coder.StandardCoderObject;
import org.onap.policy.common.utils.test.log.logback.ExtractAppender;
import org.slf4j.LoggerFactory;

public class RequestIdDispatcherTest {

    /**
     * Used to attach an appender to the class' logger.
     */
    private static final Logger logger = (Logger) LoggerFactory.getLogger(RequestIdDispatcher.class);
    private static final ExtractAppender appender = new ExtractAppender();

    /**
     * Original logging level for the logger.
     */
    private static Level saveLevel;

    private static final CommInfrastructure INFRA = CommInfrastructure.NOOP;
    private static final String REQID_FIELD = "requestId";
    private static final String TOPIC = "my-topic";
    private static final String REQID1 = "request-1";
    private static final String REQID2 = "request-2";

    private static final Coder coder = new StandardCoder();

    private RequestIdDispatcher<MyMessage> primary;
    private TypedMessageListener<MyMessage> secondary1;
    private TypedMessageListener<MyMessage> secondary2;
    private TypedMessageListener<MyMessage> secondary3;
    private TypedMessageListener<MyMessage> secondary4;
    private MyMessage status;

    /**
     * Initializes statics.
     */
    @BeforeClass
    public static void setUpBeforeClass() {
        saveLevel = logger.getLevel();
        logger.setLevel(Level.INFO);

        appender.setContext(logger.getLoggerContext());
        appender.start();
    }

    @AfterClass
    public static void tearDownAfterClass() {
        logger.setLevel(saveLevel);
        appender.stop();
    }

    /**
     * Create various mocks and primary listener.
     */
    @SuppressWarnings("unchecked")
    @Before
    public void setUp() {
        appender.clearExtractions();

        secondary1 = mock(TypedMessageListener.class);
        secondary2 = mock(TypedMessageListener.class);
        secondary3 = mock(TypedMessageListener.class);
        secondary4 = mock(TypedMessageListener.class);

        primary = new RequestIdDispatcher<>(MyMessage.class, REQID_FIELD);
    }

    @After
    public void tearDown() {
        logger.detachAppender(appender);
    }

    @Test
    public void testRegisterMessageListener() {
        primary.register(secondary1);

        // should process message that does not have a request id
        status = new MyMessage();
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // should process again
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, times(2)).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // should NOT process a message that has a request id
        status = new MyMessage(REQID1);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
    }

    @Test
    public void testRegisterStringMessageListener() {
        primary.register(REQID1, secondary1);

        // should NOT process message that does not have a request id
        status = new MyMessage();
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // should process a message that has the desired request id
        status = new MyMessage(REQID1);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // should process again
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, times(2)).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // should NOT process a message that does NOT have the desired request id
        status = new MyMessage(REQID2);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // null request id => exception
        assertThatIllegalArgumentException().isThrownBy(() -> primary.register(null, secondary1));

        // empty request id => exception
        assertThatIllegalArgumentException().isThrownBy(() -> primary.register("", secondary1));
    }

    @Test
    public void testUnregisterMessageListener() {
        primary.register(secondary1);
        primary.register(secondary2);

        // should process message
        status = new MyMessage();
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary2).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        primary.unregister(secondary1);

        // should NOT process again
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, times(1)).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // other listener should still have processed it
        verify(secondary2, times(2)).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
    }

    @Test
    public void testUnregisterString() {
        primary.register(REQID1, secondary1);
        primary.register(REQID2, secondary2);

        // should process a message that has the desired request id
        status = new MyMessage(REQID1);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        primary.unregister(REQID1);

        // should NOT re-process
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, times(1)).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // secondary should still be able to process
        status = new MyMessage(REQID2);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary2).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
    }

    @Test
    public void testOnTopicEvent() {
        primary.register(REQID1, secondary1);
        primary.register(REQID2, secondary2);
        primary.register(secondary3);
        primary.register(secondary4);

        // without request id
        status = new MyMessage();
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary2, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary3).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary4).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));

        // with request id
        status = new MyMessage(REQID1);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        verify(secondary1).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary2, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary3, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
        verify(secondary4, never()).onTopicEvent(eq(INFRA), eq(TOPIC), eq(status));
    }

    @Test
    public void testOfferToListener() {
        logger.addAppender(appender);

        // no listener for this
        status = new MyMessage(REQID1);
        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));

        assertFalse(appender.getExtracted().toString().contains("failed to process message"));

        // listener throws an exception
        primary.register(secondary1);

        status = new MyMessage();

        RuntimeException ex = new RuntimeException("expected exception");
        doThrow(ex).when(secondary1).onTopicEvent(INFRA, TOPIC, status);

        primary.onTopicEvent(INFRA, TOPIC, makeSco(status));
        assertTrue(appender.getExtracted().toString().contains("failed to process message"));
    }

    /**
     * Makes a standard object from a status message.
     *
     * @param source message to be converted
     * @return a standard object representing the message
     */
    private StandardCoderObject makeSco(MyMessage source) {
        try {
            return coder.toStandard(source);

        } catch (CoderException e) {
            throw new RuntimeException(e);
        }
    }

    protected static class MyMessage {
        private String requestId;

        public MyMessage() {
            super();
        }

        public MyMessage(String requestId) {
            this.requestId = requestId;
        }

        @Override
        public int hashCode() {
            final int prime = 31;
            int result = 1;
            result = prime * result + ((requestId == null) ? 0 : requestId.hashCode());
            return result;
        }

        @Override
        public boolean equals(Object obj) {
            if (this == obj) {
                return true;
            }
            if (obj == null) {
                return false;
            }
            if (getClass() != obj.getClass()) {
                return false;
            }
            MyMessage other = (MyMessage) obj;
            if (requestId == null) {
                if (other.requestId != null) {
                    return false;
                }
            } else if (!requestId.equals(other.requestId)) {
                return false;
            }
            return true;
        }
    }
}