fd96451f3d36389b0670431a88be0f75cf6c62e3
[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-2019 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
27 import org.junit.Test;
28
29 public class JsonMessageTest {
30     @Test
31     public void testSetAndGet() {
32         String data = "testData";
33         String data2 = "testData2";
34         String data3 = "testData3";
35
36         // Test constructors
37         JsonMessage msg = new JsonMessage(data);
38         assertEquals(msg.getData(), data);
39
40         JsonMessage msg2 = new JsonMessage(data, data2);
41         assertEquals(msg2.getData2(), data2);
42
43         JsonMessage msg3 = new JsonMessage(data, data2, data3);
44         assertEquals(msg3.getData3(), data3);
45
46         // Test set and get
47         msg.setData(data);
48         msg.setData2(data2);
49         msg.setData3(data3);
50         assertEquals(msg.getData(), data);
51         assertEquals(msg.getData2(), data2);
52         assertEquals(msg.getData3(), data3);
53     }
54 }