009e99e712137f58d2bb2375608e3f5fec595c8d
[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-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.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertTrue;
28 import static org.onap.appc.listener.TestUtil.buildActionIdentifiers;
29 import static org.onap.appc.listener.TestUtil.buildCommonHeader;
30
31 import org.junit.Before;
32 import org.junit.Test;
33
34 public class InputBodyTest {
35
36     private InputBody inputBody;
37
38     @Before
39     public void setup() {
40         inputBody = new InputBody();
41     }
42
43     @Test
44     public void should_set_properties() {
45
46         CommonHeader testCommonHeader = buildCommonHeader();
47         ActionIdentifiers testActionIdentifiers = buildActionIdentifiers();
48
49         inputBody.setCommonHeader(testCommonHeader);
50         inputBody.setActionIdentifiers(testActionIdentifiers);
51         inputBody.setAction("test-action");
52         inputBody.setPayload("{\"payload\": \"value\"");
53
54         assertEquals(testCommonHeader, inputBody.getCommonHeader());
55         assertEquals(testActionIdentifiers, inputBody.getActionIdentifiers());
56         assertEquals("test-action", inputBody.getAction());
57         assertEquals("{\"payload\": \"value\"", inputBody.getPayload());
58     }
59
60     @Test
61     public void should_verify_if_is_valid() {
62
63         assertFalse(inputBody.isValid());
64         inputBody.setCommonHeader(buildCommonHeader());
65         assertTrue(inputBody.isValid());
66     }
67
68
69 }