e4b06dff35cf2e4b9c06fbcda5b75703aa249693
[appc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24 package org.onap.appc.listener.LCM.model;
25
26 import static org.junit.Assert.assertEquals;
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 DmaapIncomingMessageTest {
34
35     private static final String jsonInputBodyStr =
36         "{\"input\":{ \"common-header\": { \"timestamp\": \"2016-08-03T08:50:18.97Z\", "
37             + "\"api-ver\": \"1\", \"originator-id\": \"1\", \"request-id\": \"123\", \"sub-request-id\": \"1\", "
38             + "\"flags\": { \"force\":\"TRUE\", \"ttl\":\"9900\" } }, \"action\": \"Stop\", "
39             + "\"action-identifiers\": { \"vnf-id\": \"TEST\" } }}";
40
41     private DmaapIncomingMessage dmaapIncomingMessage;
42
43     @Before
44     public void setup() {
45         dmaapIncomingMessage = new DmaapIncomingMessage();
46     }
47
48     @Test
49     public void should_set_default_cambria_partition_when_initialized() {
50
51         assertEquals("APP-C", dmaapIncomingMessage.getCambriaPartition());
52     }
53
54     @Test
55     public void toString_should_return_valid_string_representation() {
56         JsonNode jsonNode = Mapper.toJsonNodeFromJsonString(jsonInputBodyStr);
57
58         dmaapIncomingMessage.setVersion("test-version");
59         dmaapIncomingMessage.setType("test-type");
60         dmaapIncomingMessage.setCorrelationID("test-correlation-id");
61         dmaapIncomingMessage.setCambriaPartition("test-cambria-partition");
62         dmaapIncomingMessage.setRpcName("test-rpc-name");
63         dmaapIncomingMessage.setBody(jsonNode);
64
65         assertEquals("DmaapIncomingMessage{DmaapMessage{" +
66             "version='" + dmaapIncomingMessage.getVersion() + '\'' +
67             ", type='" + dmaapIncomingMessage.getType() + '\'' +
68             ", correlationId='" + dmaapIncomingMessage.getCorrelationID() + '\'' +
69             ", cambriaPartition='" + dmaapIncomingMessage.getCambriaPartition() + '\'' +
70             ", rpcName='" + dmaapIncomingMessage.getRpcName() + '\'' +
71             ", body=" + dmaapIncomingMessage.getBody() +
72             "}}", dmaapIncomingMessage.toString());
73     }
74
75
76 }