Build XACML PDP support for native xacml policy type
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / rest / serialization / TestXacmlJsonMessageBodyHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.rest.serialization;
22
23 import com.att.research.xacml.std.dom.DOMStructureException;
24 import java.io.IOException;
25 import org.junit.Before;
26 import org.junit.Test;
27
28 public class TestXacmlJsonMessageBodyHandler {
29
30     private static final String PRIMARY_TYPE = "application";
31     private static final String SUB_TYPE = "xacml+json";
32
33     private XacmlJsonMessageBodyHandler hdlr;
34
35     @Before
36     public void setUp() {
37         hdlr = new XacmlJsonMessageBodyHandler();
38     }
39
40     @Test
41     public void testIsWriteable() {
42         CommonSerialization.testIsWritableOrReadable(PRIMARY_TYPE, SUB_TYPE, hdlr::isWriteable);
43     }
44
45     @Test
46     public void testWriteTo() throws IOException, DOMStructureException {
47         //TODO: placeholder for JsonResponseTranslator
48     }
49
50     @Test
51     public void testIsReadable() {
52         CommonSerialization.testIsWritableOrReadable(PRIMARY_TYPE, SUB_TYPE, hdlr::isReadable);
53     }
54
55     @Test
56     public void testReadFrom() throws IOException {
57         //TODO: placeholder for JsonRequestTranslator
58     }
59 }