Merge "Add docker file for all simulators"
[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.Mockito.verify;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.ArgumentCaptor;
30 import org.mockito.Mock;
31 import org.mockito.MockitoAnnotations;
32 import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
33 import org.onap.policy.common.endpoints.event.comm.TopicSink;
34 import org.onap.policy.common.endpoints.event.comm.TopicSource;
35 import org.onap.policy.common.utils.resources.ResourceUtils;
36
37 public class AppcLcmTopicServerTest {
38     private static final String MY_TOPIC = "my-topic";
39
40     @Mock
41     private TopicSink sink;
42     @Mock
43     private TopicSource source;
44
45     private AppcLcmTopicServer server;
46
47     /**
48      * Sets up.
49      */
50     @Before
51     public void setUp() {
52         MockitoAnnotations.initMocks(this);
53
54         server = new AppcLcmTopicServer(sink, source);
55     }
56
57     @Test
58     public void testProcessAppcLcmDmaapWrapper() {
59         String request = ResourceUtils.getResourceAsString("org/onap/policy/simulators/appclcm/appc.lcm.request.json");
60         assertNotNull(request);
61
62         server.onTopicEvent(CommInfrastructure.NOOP, MY_TOPIC, request);
63
64         ArgumentCaptor<String> respCaptor = ArgumentCaptor.forClass(String.class);
65         verify(sink).send(respCaptor.capture());
66
67         assertThat(respCaptor.getValue()).contains("111be3d2").doesNotContain("replaceMe");
68     }
69 }