2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.policy.simulators;
 
  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;
 
  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;
 
  39 public class AppcLegacyTopicServerTest {
 
  40     private static final String MY_TOPIC = "my-topic";
 
  43     private TopicSink sink;
 
  45     private TopicSource source;
 
  47     private AppcLegacyTopicServer server;
 
  54         MockitoAnnotations.initMocks(this);
 
  56         server = new AppcLegacyTopicServer(sink, source);
 
  60     public void testProcess() {
 
  61         String request = ResourceUtils.getResourceAsString("org/onap/policy/simulators/appc/appc.legacy.request.json");
 
  62         assertNotNull(request);
 
  64         server.onTopicEvent(CommInfrastructure.NOOP, MY_TOPIC, request);
 
  66         ArgumentCaptor<String> respCaptor = ArgumentCaptor.forClass(String.class);
 
  67         verify(sink).send(respCaptor.capture());
 
  69         assertThat(respCaptor.getValue()).contains("111be3d2").doesNotContain("replaceMe");
 
  73      * Tests process() when the message is a response.
 
  76     public void testProcessNoResponse() {
 
  77         // NOTE: this json file is a RESPONSE, not a request
 
  78         String request = ResourceUtils.getResourceAsString("org/onap/policy/simulators/appc/appc.legacy.success.json");
 
  79         assertNotNull(request);
 
  81         server.onTopicEvent(CommInfrastructure.NOOP, MY_TOPIC, request);
 
  83         verify(sink, never()).send(any());