LCM package test classes refactor
[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 import static org.onap.appc.listener.TestUtil.buildActionIdentifiers;
30 import static org.onap.appc.listener.TestUtil.buildCommonHeader;
31
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 }