- Added exi capability utilities, handlers and necessary modifications
[controller.git] / opendaylight / netconf / netconf-impl / src / test / java / org / opendaylight / controller / netconf / impl / ExiEncodeDecodeTest.java
diff --git a/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/ExiEncodeDecodeTest.java b/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/ExiEncodeDecodeTest.java
new file mode 100644 (file)
index 0000000..6b0316b
--- /dev/null
@@ -0,0 +1,44 @@
+package org.opendaylight.controller.netconf.impl;\r
+\r
+import static junit.framework.Assert.assertNotNull;\r
+import io.netty.buffer.ByteBuf;\r
+import io.netty.buffer.Unpooled;\r
+\r
+import java.util.ArrayList;\r
+import java.util.List;\r
+\r
+import org.junit.Test;\r
+import org.opendaylight.controller.netconf.api.NetconfMessage;\r
+import org.opendaylight.controller.netconf.util.test.XmlFileLoader;\r
+import org.opendaylight.controller.netconf.util.xml.ExiParameters;\r
+import org.opendaylight.controller.netconf.util.xml.ExiUtil;\r
+import org.opendaylight.controller.netconf.util.xml.XmlElement;\r
+\r
+\r
+\r
+public class ExiEncodeDecodeTest  {\r
+    @Test\r
+    public void encodeExi() throws Exception{\r
+\r
+        String startExiString = XmlFileLoader.xmlFileToString("netconfMessages/startExi.xml");\r
+        assertNotNull(startExiString);\r
+\r
+        NetconfMessage startExiMessage = XmlFileLoader.xmlFileToNetconfMessage(("netconfMessages/startExi.xml"));\r
+        assertNotNull(startExiMessage);\r
+\r
+        ExiParameters exiParams = new ExiParameters();\r
+        exiParams.setParametersFromXmlElement(XmlElement.fromDomElement(startExiMessage.getDocument().getDocumentElement()));\r
+        assertNotNull(exiParams);\r
+\r
+        ByteBuf encodedBuf = Unpooled.buffer();\r
+        ByteBuf sourceBuf = Unpooled.copiedBuffer(startExiString.getBytes());\r
+        ExiUtil.encode(sourceBuf, encodedBuf, exiParams);\r
+\r
+        List<Object> newOut = new ArrayList<Object>();\r
+        ExiUtil.decode(encodedBuf, newOut, exiParams);\r
+\r
+        ByteBuf decodedBuf = (ByteBuf)newOut.get(0);\r
+        String decodedString = new String(decodedBuf.array(),"UTF-8");\r
+        assertNotNull(decodedString);\r
+    }\r
+}\r