InputBody and OutputBody unit tests
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / test / java / org / onap / appc / listener / LCM / model / InputBodyTest.java
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 import static org.junit.Assert.assertFalse;
28 import static org.junit.Assert.assertTrue;
29
30 import java.util.HashMap;
31 import java.util.Map;
32 import org.junit.Before;
33 import org.junit.Test;
34
35 public class InputBodyTest {
36
37     private InputBody inputBody;
38
39     @Before
40     public void setup() {
41         inputBody = new InputBody();
42     }
43
44     @Test
45     public void should_set_properties() {
46
47         CommonHeader testCommonHeader = buildCommonHeader();
48         ActionIdentifiers testActionIdentifiers = buildActionIdentifiers();
49
50         inputBody.setCommonHeader(testCommonHeader);
51         inputBody.setActionIdentifiers(testActionIdentifiers);
52         inputBody.setAction("test-action");
53         inputBody.setPayload("{\"payload\": \"value\"");
54
55         assertEquals(testCommonHeader, inputBody.getCommonHeader());
56         assertEquals(testActionIdentifiers, inputBody.getActionIdentifiers());
57         assertEquals("test-action", inputBody.getAction());
58         assertEquals("{\"payload\": \"value\"", inputBody.getPayload());
59     }
60
61     @Test
62     public void should_verify_if_is_valid() {
63
64         assertFalse(inputBody.isValid());
65         inputBody.setCommonHeader(buildCommonHeader());
66         assertTrue(inputBody.isValid());
67     }
68
69
70     private CommonHeader buildCommonHeader() {
71
72         CommonHeader commonHeader = new CommonHeader();
73         commonHeader.setTimeStamp("test-timestamp");
74         commonHeader.setApiVer("test-api-version");
75         commonHeader.setOriginatorId("test-originator-id");
76         commonHeader.setRequestID("test-request-id");
77         commonHeader.setSubRequestId("test-subrequest-id");
78
79         Map<String, String> flags = new HashMap<>();
80         flags.put("key1", "flag1");
81         flags.put("key2", "flag2");
82         flags.put("key3", "flag3");
83
84         commonHeader.setFlags(flags);
85         return commonHeader;
86     }
87
88     private ActionIdentifiers buildActionIdentifiers() {
89
90         ActionIdentifiers actionIdentifiers = new ActionIdentifiers();
91         actionIdentifiers.setServiceInstanceId("test-instance-id");
92         actionIdentifiers.setVnfID("test-vnf-id");
93         actionIdentifiers.setVnfcName("test-name");
94         actionIdentifiers.setVserverId("test-vserver-id");
95
96         return actionIdentifiers;
97     }
98 }