e3a575456d182c949e54d6f22a63011b799deaac
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / util / JsonMessageTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pap.xacml.rest.util;
24
25 import static org.junit.Assert.assertEquals;
26 import org.junit.Test;
27
28 public class JsonMessageTest {
29     @Test
30     public void testSetAndGet() {
31         String data = "testData";
32         String data2 = "testData2";
33         String data3 = "testData3";
34
35         // Test constructors
36         JsonMessage msg = new JsonMessage(data);
37         assertEquals(msg.getData(), data);
38
39         JsonMessage msg2 = new JsonMessage(data, data2);
40         assertEquals(msg2.getData2(), data2);
41
42         JsonMessage msg3 = new JsonMessage(data, data2, data3);
43         assertEquals(msg3.getData3(), data3);
44
45         // Test set and get
46         msg.setData(data);
47         msg.setData2(data2);
48         msg.setData3(data3);
49         assertEquals(msg.getData(), data);
50         assertEquals(msg.getData2(), data2);
51         assertEquals(msg.getData3(), data3);
52     }
53 }