added test case to SliStringUtilsTest
authorSandeep J <sandeejh@in.ibm.com>
Tue, 25 Sep 2018 21:41:22 +0000 (03:11 +0530)
committerSandeep Jha <sandeejh@in.ibm.com>
Wed, 26 Sep 2018 07:14:27 +0000 (07:14 +0000)
to increase code coverage

Issue-ID: CCSDK-595
Change-Id: I3cc31ab404fa5ee26bcecd1a5617b2423a10a96c
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java

index 4c66512..9bf851d 100644 (file)
@@ -3,7 +3,9 @@
  * ONAP : CCSDK
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights
- *                                             reserved.
+ *                         reserved.
+ * ================================================================================
+ * Modifications Copyright (C) 2018 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,9 +21,6 @@
  * ============LICENSE_END=========================================================
  */
 
-/**
- *
- */
 package org.onap.ccsdk.sli.core.slipluginutils;
 
 import static org.hamcrest.Matchers.equalTo;
@@ -30,7 +29,7 @@ import static org.junit.Assert.assertThat;
 
 import java.util.HashMap;
 import java.util.Map;
-
 import org.junit.Before;
 import org.junit.Test;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
@@ -273,5 +272,14 @@ public class SliStringUtilsTest {
         SliStringUtils.urlEncode(param, ctx);
         assertEquals("102%2FGE100%2FSNJSCAMCJP8%2FSNJSCAMCJT4", ctx.getAttribute(outputPath));
     }
+    
+    @Test
+    public void testXmlEscapeText()
+    {
+        param.put("source", "102/GE100/SNJSCAMCJP8/SNJSCAMCJT4");
+        param.put("target", "target");
+        SliStringUtils.xmlEscapeText(param,ctx);
+        assertEquals("102/GE100/SNJSCAMCJP8/SNJSCAMCJT4",ctx.getAttribute("target"));
+    }
 
 }