Update license header in appc-event-listener files
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / test / java / org / onap / appc / listener / LCM / model / DmaapOutgoingMessageTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2018 Nokia Solutions and Networks
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23 package org.onap.appc.listener.LCM.model;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.onap.appc.listener.TestUtil.JSON_INPUT_BODY_STR;
27
28 import com.fasterxml.jackson.databind.JsonNode;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.onap.appc.listener.util.Mapper;
32
33 public class DmaapOutgoingMessageTest {
34
35     private DmaapOutgoingMessage dmaapOutgoingMessage;
36
37     @Before
38     public void setup() {
39         dmaapOutgoingMessage = new DmaapOutgoingMessage();
40     }
41
42     @Test
43     public void should_set_default_cambria_partition_when_initialized() {
44
45         assertEquals("MSO", dmaapOutgoingMessage.getCambriaPartition());
46     }
47
48     @Test
49     public void toString_should_return_valid_string_representation() {
50         JsonNode jsonNode = Mapper.toJsonNodeFromJsonString(JSON_INPUT_BODY_STR);
51
52         dmaapOutgoingMessage.setVersion("test-version");
53         dmaapOutgoingMessage.setType("test-type");
54         dmaapOutgoingMessage.setCorrelationID("test-correlation-id");
55         dmaapOutgoingMessage.setCambriaPartition("test-cambria-partition");
56         dmaapOutgoingMessage.setRpcName("test-rpc-name");
57         dmaapOutgoingMessage.setBody(jsonNode);
58
59         assertEquals("DmaapOutgoingMessage{DmaapMessage{" +
60             "version='" + dmaapOutgoingMessage.getVersion() + '\'' +
61             ", type='" + dmaapOutgoingMessage.getType() + '\'' +
62             ", correlationId='" + dmaapOutgoingMessage.getCorrelationID() + '\'' +
63             ", cambriaPartition='" + dmaapOutgoingMessage.getCambriaPartition() + '\'' +
64             ", rpcName='" + dmaapOutgoingMessage.getRpcName() + '\'' +
65             ", body=" + dmaapOutgoingMessage.getBody() +
66             "}}", dmaapOutgoingMessage.toString());
67     }
68 }