Update new SDNR actor with v2.0 structures
[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 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.mockito.ArgumentCaptor;
32 import org.mockito.Mock;
33 import org.mockito.MockitoAnnotations;
34 import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
35 import org.onap.policy.common.endpoints.event.comm.TopicSink;
36 import org.onap.policy.common.endpoints.event.comm.TopicSource;
37 import org.onap.policy.common.utils.resources.ResourceUtils;
38
39 public class AppcLcmTopicServerTest {
40     private static final String MY_TOPIC = "my-topic";
41
42     @Mock
43     private TopicSink sink;
44     @Mock
45     private TopicSource source;
46
47     private AppcLcmTopicServer server;
48
49     /**
50      * Sets up.
51      */
52     @Before
53     public void setUp() {
54         MockitoAnnotations.initMocks(this);
55
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 }