9560658a8f7a4b496a7c49585ea2b6335b4b10d5
[policy/models.git] / models-interactions / model-simulators / src / test / java / org / onap / policy / simulators / AppcLcmTopicServerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020-2021 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.simulators;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.Assert.assertNotNull;
25 import static org.mockito.ArgumentMatchers.any;
26 import static org.mockito.Mockito.never;
27 import static org.mockito.Mockito.verify;
28
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.ArgumentCaptor;
33 import org.mockito.Mock;
34 import org.mockito.junit.MockitoJUnitRunner;
35 import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
36 import org.onap.policy.common.endpoints.event.comm.TopicSink;
37 import org.onap.policy.common.endpoints.event.comm.TopicSource;
38 import org.onap.policy.common.utils.resources.ResourceUtils;
39
40 @RunWith(MockitoJUnitRunner.class)
41 public class AppcLcmTopicServerTest {
42     private static final String MY_TOPIC = "my-topic";
43
44     @Mock
45     private TopicSink sink;
46     @Mock
47     private TopicSource source;
48
49     private AppcLcmTopicServer server;
50
51     /**
52      * Sets up.
53      */
54     @Before
55     public void setUp() {
56         server = new AppcLcmTopicServer(sink, source);
57     }
58
59     @Test
60     public void testProcessAppcLcmDmaapWrapper() {
61         String request = ResourceUtils.getResourceAsString("org/onap/policy/simulators/appclcm/appc.lcm.request.json");
62         assertNotNull(request);
63
64         server.onTopicEvent(CommInfrastructure.NOOP, MY_TOPIC, request);
65
66         ArgumentCaptor<String> respCaptor = ArgumentCaptor.forClass(String.class);
67         verify(sink).send(respCaptor.capture());
68
69         assertThat(respCaptor.getValue()).contains("111be3d2").doesNotContain("replaceMe");
70     }
71
72     /**
73      * Tests process() when the message is a response.
74      */
75     @Test
76     public void testProcessNoResponse() {
77         // NOTE: this json file is a RESPONSE, not a request
78         String request = ResourceUtils.getResourceAsString("org/onap/policy/simulators/appclcm/appc.lcm.success.json");
79         assertNotNull(request);
80
81         server.onTopicEvent(CommInfrastructure.NOOP, MY_TOPIC, request);
82
83         verify(sink, never()).send(any());
84     }
85 }