91d420b0405732a8c72b884f4babc8b6202c8c42
[oam/tr069-adapter.git] / netconf-server / src / test / java / org / commscope / tr069adapter / netconf / rpc / XmlUtilityTest.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.netconf.rpc;\r
20 \r
21 import static org.junit.Assert.assertTrue;\r
22 import static org.junit.Assert.fail;\r
23 \r
24 import org.junit.jupiter.api.Test;\r
25 import org.w3c.dom.Element;\r
26 \r
27 class XmlUtilityTest {\r
28 \r
29   @Test\r
30   void testConvertDocumentToStringXmlElement() {\r
31 \r
32     String xmlStr =\r
33         "<?xml version=\"1.0\" encoding=\"UTF-8\"?><get-config xmlns=\"urn:ietf:params:xml:ns:netconf:base:1.0\"><source><running /></source><filter xmlns:ns0=\"urn:ietf:params:xml:ns:netconf:base:1.0\" ns0:type=\"subtree\"><device xmlns=\"urn:onf:otcc:wireless:yang:radio-access-186\"><services><fap-service xmlns=\"urn:onf:otcc:wireless:yang:radio-access\"><index>1</index><cell-config><lte><epc/></lte></cell-config></fap-service></services></device></filter></get-config>";\r
34     try {\r
35       Element el = XmlUtility.convertStringToDocument(xmlStr);\r
36       String result = XmlUtility.convertDocumentToString(el);\r
37       assertTrue(result != null);\r
38     } catch (Exception e) {\r
39       fail("Failed to convert string into document.");\r
40     }\r
41   }\r
42 \r
43   @Test\r
44   void testConvertStringToDocument() {\r
45     String xmlStr =\r
46         "<?xml version=\"1.0\" encoding=\"UTF-8\"?><rpc-reply xmlns=\"URN\" xmlns:junos=\"URL\"><data/></rpc-reply>";\r
47     try {\r
48       XmlUtility.convertStringToDocument(xmlStr);\r
49     } catch (Exception e) {\r
50       fail("Failed to convert string into document.");\r
51     }\r
52     assertTrue(true);\r
53   }\r
54 \r
55 }\r