summaryrefslogtreecommitdiffstats
path: root/sliPluginUtils
diff options
context:
space:
mode:
Diffstat (limited to 'sliPluginUtils')
-rw-r--r--sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliPluginUtils_ctxSortList.java215
-rw-r--r--sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java501
2 files changed, 370 insertions, 346 deletions
diff --git a/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliPluginUtils_ctxSortList.java b/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliPluginUtils_ctxSortList.java
index bfd19bc6..78e846ae 100644
--- a/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliPluginUtils_ctxSortList.java
+++ b/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliPluginUtils_ctxSortList.java
@@ -19,8 +19,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
- */
-
+ */
+
package org.onap.ccsdk.sli.core.slipluginutils;
import static org.junit.Assert.assertEquals;
@@ -28,7 +28,7 @@ import static org.junit.Assert.assertTrue;
import java.util.HashMap;
import java.util.Random;
-
+
import org.junit.Before;
import org.junit.Test;
import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
@@ -38,104 +38,113 @@ import org.slf4j.LoggerFactory;
@SuppressWarnings("unused")
public class SliPluginUtils_ctxSortList {
- private static final Logger LOG = LoggerFactory.getLogger(SliPluginUtils_ctxSortList.class);
- SliPluginUtils utils = new SliPluginUtils();
- SvcLogicContext ctx;
- HashMap<String,String> parameters;
- Random rand = new Random();
-
- @Before
- public void setUp() throws Exception {
- this.ctx = new SvcLogicContext();
- this.parameters = new HashMap<String,String>();
- }
-
- @Test
- public final void list_of_containers() throws SvcLogicException {
- this.parameters.put("list", "input.list");
- this.parameters.put("sort-fields", "sort-key");
- this.parameters.put("delimiter",",");
-
- ctx.setAttribute("input.list_length", "10");
- for( int i = 0; i < 10; i++ ) {
- this.ctx.setAttribute("input.list[" + i + "].sort-key", Integer.toString( rand.nextInt(10) ));
- this.ctx.setAttribute("input.list[" + i + "].value", Integer.toString( rand.nextInt(10) ));
- }
-
- LOG.trace("BEFORE SORT:");
- SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
-
- utils.ctxSortList(this.parameters, this.ctx);
-
- LOG.trace("AFTER SORT:");
- SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
-
- for( int i = 0; i < 9; i++ ) {
- assertTrue(this.ctx.getAttribute("input.list[" + i + "].sort-key").compareTo(this.ctx.getAttribute("input.list[" + (i+1) + "].sort-key")) < 1 );
- }
- }
-
- @Test
- public final void list_of_elements() throws SvcLogicException {
- this.parameters.put("list", "input.list");
- this.parameters.put("delimiter",",");
-
- this.ctx.setAttribute("input.list_length", "10");
- for( int i = 0; i < 10; i++ ) {
- this.ctx.setAttribute("input.list[" + i + ']', Integer.toString( rand.nextInt(10) ));
- }
-
- LOG.trace("BEFORE SORT:");
- SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
-
- utils.ctxSortList(this.parameters, this.ctx);
-
- LOG.trace("AFTER SORT:");
- SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
-
- for( int i = 0; i < 9; i++ ) {
- assertTrue(this.ctx.getAttribute("input.list[" + i + ']').compareTo(this.ctx.getAttribute("input.list[" + (i+1) + ']')) < 1 );
- }
- }
-
- @Test
- public void testGenerateUUID() throws SvcLogicException
- {
- SliPluginUtils utils= new SliPluginUtils();
- this.parameters.put("ctx-destination", "testDestination");
- utils.generateUUID(this.parameters, ctx);
- }
-
- @Test
- public void testSubstring() throws SvcLogicException
- {
- SliPluginUtils utils= new SliPluginUtils();
- this.parameters.put("string", "testString");
- this.parameters.put("begin-index", "1");
- this.parameters.put("result", "testResult");
- this.parameters.put("end-index", "5");
- utils.substring(this.parameters, ctx);
- assertEquals("estS",ctx.getAttribute("testResult"));
- }
-
- @Test
- public void testSubstringForNullEndIndex() throws SvcLogicException
- {
- SliPluginUtils utils= new SliPluginUtils();
- this.parameters.put("string", "testString");
- this.parameters.put("begin-index", "1");
- this.parameters.put("result", "testResult");
- utils.substring(this.parameters, ctx);
- assertEquals("estString",ctx.getAttribute("testResult"));
- }
-
- @Test
- public void testCtxBulkCopy()
- {
- ctx.setAttribute("Mykey1", "MyValue1");
- ctx.setAttribute("Mykey2", "MyValue2");
- SliPluginUtils.ctxBulkCopy(ctx, "Mykey", "test.");
- assertEquals("MyValue1",ctx.getAttribute("test.1"));
- assertEquals("MyValue2",ctx.getAttribute("test.2"));
- }
+ private static final Logger LOG = LoggerFactory.getLogger(SliPluginUtils_ctxSortList.class);
+ SliPluginUtils utils = new SliPluginUtils();
+ SvcLogicContext ctx;
+ HashMap<String, String> parameters;
+ Random rand = new Random();
+
+ @Before
+ public void setUp() throws Exception {
+ this.ctx = new SvcLogicContext();
+ this.parameters = new HashMap<String, String>();
+ }
+
+ @Test
+ public final void list_of_containers() throws SvcLogicException {
+ this.parameters.put("list", "input.list");
+ this.parameters.put("sort-fields", "sort-key");
+ this.parameters.put("delimiter", ",");
+
+ ctx.setAttribute("input.list_length", "10");
+ for (int i = 0; i < 10; i++) {
+ this.ctx.setAttribute("input.list[" + i + "].sort-key", Integer.toString(rand.nextInt(10)));
+ this.ctx.setAttribute("input.list[" + i + "].value", Integer.toString(rand.nextInt(10)));
+ }
+
+ LOG.trace("BEFORE SORT:");
+ SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
+
+ utils.ctxSortList(this.parameters, this.ctx);
+
+ LOG.trace("AFTER SORT:");
+ SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
+
+ for (int i = 0; i < 9; i++) {
+ assertTrue(this.ctx.getAttribute("input.list[" + i + "].sort-key")
+ .compareTo(this.ctx.getAttribute("input.list[" + (i + 1) + "].sort-key")) < 1);
+ }
+ }
+
+ @Test
+ public final void list_of_elements() throws SvcLogicException {
+ this.parameters.put("list", "input.list");
+ this.parameters.put("delimiter", ",");
+
+ this.ctx.setAttribute("input.list_length", "10");
+ for (int i = 0; i < 10; i++) {
+ this.ctx.setAttribute("input.list[" + i + ']', Integer.toString(rand.nextInt(10)));
+ }
+
+ LOG.trace("BEFORE SORT:");
+ SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
+
+ utils.ctxSortList(this.parameters, this.ctx);
+
+ LOG.trace("AFTER SORT:");
+ SliPluginUtils.logContextMemory(ctx, LOG, SliPluginUtils.LogLevel.TRACE);
+
+ for (int i = 0; i < 9; i++) {
+ assertTrue(this.ctx.getAttribute("input.list[" + i + ']')
+ .compareTo(this.ctx.getAttribute("input.list[" + (i + 1) + ']')) < 1);
+ }
+ }
+
+ @Test
+ public void testGenerateUUID() throws SvcLogicException {
+ SliPluginUtils utils = new SliPluginUtils();
+ this.parameters.put("ctx-destination", "testDestination");
+ utils.generateUUID(this.parameters, ctx);
+ }
+
+ @Test
+ public void testSubstring() throws SvcLogicException {
+ SliPluginUtils utils = new SliPluginUtils();
+ this.parameters.put("string", "testString");
+ this.parameters.put("begin-index", "1");
+ this.parameters.put("result", "testResult");
+ this.parameters.put("end-index", "5");
+ utils.substring(this.parameters, ctx);
+ assertEquals("estS", ctx.getAttribute("testResult"));
+ }
+
+ @Test
+ public void testSubstringForNullEndIndex() throws SvcLogicException {
+ SliPluginUtils utils = new SliPluginUtils();
+ this.parameters.put("string", "testString");
+ this.parameters.put("begin-index", "1");
+ this.parameters.put("result", "testResult");
+ utils.substring(this.parameters, ctx);
+ assertEquals("estString", ctx.getAttribute("testResult"));
+ }
+
+ @Test
+ public void testCtxBulkCopy() {
+ ctx.setAttribute("Mykey1", "MyValue1");
+ ctx.setAttribute("Mykey2", "MyValue2");
+ SliPluginUtils.ctxBulkCopy(ctx, "Mykey", "test.");
+ assertEquals("MyValue1", ctx.getAttribute("test.1"));
+ assertEquals("MyValue2", ctx.getAttribute("test.2"));
+ }
+
+ @Test
+ public void testSetPropertiesForList() {
+ parameters.put("prefixKey", "testPrefixKey");
+ parameters.put("valuePrefixKey", "testPrefixValue");
+ parameters.put("keyName", "testKey");
+ parameters.put("keyValue", "testValue");
+
+ assertEquals("success", SliPluginUtils.setPropertiesForList(parameters, ctx));
+
+ }
}
diff --git a/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java b/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java
index 9bf851d5..085d46ef 100644
--- a/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java
+++ b/sliPluginUtils/provider/src/test/java/org/onap/ccsdk/sli/core/slipluginutils/SliStringUtilsTest.java
@@ -19,7 +19,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
- */
+ */
package org.onap.ccsdk.sli.core.slipluginutils;
@@ -29,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;
@@ -40,246 +40,261 @@ import org.onap.ccsdk.sli.core.sli.SvcLogicException;
*
*/
public class SliStringUtilsTest {
- private SvcLogicContext ctx;
- private HashMap<String, String> param;
- private SliStringUtils stringUtils = new SliStringUtils();
-
- /**
- * @throws java.lang.Exception
- */
- @Before
- public void setUp() throws Exception {
- this.ctx = new SvcLogicContext();
- param = new HashMap<String, String>();
- }
-
- /**
- * @throws SvcLogicException
- * @see SliStringUtils#split(Map, SvcLogicContext)
- */
- @Test
- public final void testSplit() throws SvcLogicException {
- param.put("original_string", "one ## two ## three");
- param.put("regex", " ## ");
- param.put("ctx_memory_result_key", "result");
-
- stringUtils.split(param, ctx);
-
- assertThat(ctx.getAttribute("result[0]"), equalTo("one"));
- assertThat(ctx.getAttribute("result[1]"), equalTo("two"));
- assertThat(ctx.getAttribute("result[2]"), equalTo("three"));
- assertThat(ctx.getAttribute("result_length"), equalTo("3"));
- }
-
- /**
- * @throws SvcLogicException
- * @see SliStringUtils#split(Map, SvcLogicContext)
- */
- @Test
- public final void testSplit_limit() throws SvcLogicException {
- param.put("original_string", "one ## two ## three");
- param.put("regex", " ## ");
- param.put("limit", "2");
- param.put("ctx_memory_result_key", "result");
-
- stringUtils.split(param, ctx);
-
- assertThat(ctx.getAttribute("result[0]"), equalTo("one"));
- assertThat(ctx.getAttribute("result[1]"), equalTo("two ## three"));
- assertThat(ctx.getAttribute("result_length"), equalTo("2"));
- }
-
- @Test
- public final void testSubString() throws SvcLogicException {
- param.put("string","splitatgivenindex");
- param.put("begin-index","0");
- param.put("end-index","5");
- param.put("result","result");
-
- stringUtils.substring(param, ctx);
-
- assertEquals("split", ctx.getAttribute("result"));
- }
-
- @Test
- public final void testQuotedOrNull() throws SvcLogicException {
- //param.put("nullString",null);
- assertEquals("NULL",SliStringUtils.quotedOrNULL(null));
- }
-
- @Test
- public void equalsIgnoreCaseTrue() throws SvcLogicException {
- String sourceString = "HeLlOwORLD";
- String targetSTring = "HELLOWORLD";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("true", SliStringUtils.equalsIgnoreCase(param, ctx));
- }
-
- @Test
- public void equalsIgnoreCaseFalse() throws SvcLogicException {
- String sourceString = "HeLlOwORLD";
- String targetSTring = "goodbyeWORLD";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("false", SliStringUtils.equalsIgnoreCase(param, ctx));
- }
-
- @Test
- public void toUpper() throws SvcLogicException {
- String sourceString = "HeLlOwORLD";
- param.put("source", sourceString);
- String path = "my.unique.path.";
- param.put("outputPath", path);
- SliStringUtils.toUpper(param, ctx);
- assertEquals(sourceString.toUpperCase(), ctx.getAttribute(path));
- }
-
- @Test
- public void toLower() throws SvcLogicException {
- String sourceString = "HeLlOwORLD";
- param.put("source", sourceString);
- String path = "my.unique.path.";
- param.put("outputPath", path);
- SliStringUtils.toLower(param, ctx);
- assertEquals(sourceString.toLowerCase(), ctx.getAttribute(path));
- }
-
- @Test
- public void containsTrue() throws SvcLogicException {
- String sourceString = "Pizza";
- String targetSTring = "izza";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("true", SliStringUtils.contains(param, ctx));
- }
-
- @Test
- public void containsFalse() throws SvcLogicException {
- String sourceString = "Pizza";
- String targetSTring = "muffin";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("false", SliStringUtils.contains(param, ctx));
- }
-
- @Test
- public void endsWithTrue() throws SvcLogicException {
- String sourceString = "Pizza";
- String targetSTring = "za";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("true", SliStringUtils.endsWith(param, ctx));
- }
-
- @Test
- public void endsWithFalse() throws SvcLogicException {
- String sourceString = "Pizza";
- String targetSTring = "muffin";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("false", SliStringUtils.endsWith(param, ctx));
- }
-
- @Test
- public void trim() throws SvcLogicException {
- String sourceString = " H E L L O W O R L D";
- String outputPath = "muffin";
- param.put("source", sourceString);
- param.put("outputPath", outputPath);
- SliStringUtils.trim(param, ctx);
- assertEquals(sourceString.trim(), ctx.getAttribute(outputPath));
- }
-
- @Test
- public void getLength() throws SvcLogicException {
- String sourceString = "SomeRandomString";
- String outputPath = "muffin";
- param.put("source", sourceString);
- param.put("outputPath", outputPath);
- SliStringUtils.getLength(param, ctx);
- assertEquals(String.valueOf(sourceString.length()), ctx.getAttribute(outputPath));
- }
-
- @Test
- public void startsWithFalse() throws SvcLogicException {
- String sourceString = "Java";
- String targetSTring = "DG";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("false", SliStringUtils.startsWith(param, ctx));
- }
-
- @Test
- public void startsWithTrue() throws SvcLogicException {
- String sourceString = "Java";
- String targetSTring = "Ja";
- param.put("source", sourceString);
- param.put("target", targetSTring);
- assertEquals("true", SliStringUtils.startsWith(param, ctx));
- }
-
- @Test
- public void replace() throws SvcLogicException {
- String sourceString = "cat Hello World cat";
- String old = "cat";
- String neww = "dog";
- String outputPath = "out";
-
- param.put("source", sourceString);
- param.put("target", old);
- param.put("replacement", neww);
- param.put("outputPath", outputPath);
- SliStringUtils.replace(param, ctx);
- assertEquals(sourceString.replace(old, neww), ctx.getAttribute(outputPath));
- }
-
- @Test
- public void replaceAll() throws SvcLogicException {
- String source = "cat Hello World cat";
- String target = "\\s";
- String replacement = "";
- String outputPath = "out";
-
- param.put("source", source);
- param.put("target", target);
- param.put("replacement", replacement);
- param.put("outputPath", outputPath);
- SliStringUtils.replaceAll(param, ctx);
- assertEquals(source.replaceAll(target, replacement), ctx.getAttribute(outputPath));
- }
-
- @Test
- public void concat() throws SvcLogicException {
- String sourceString = "cat";
- String targetString = "dog";
- String outputPath = "out";
-
- param.put("source", sourceString);
- param.put("target", targetString);
- param.put("outputPath", outputPath);
- SliStringUtils.concat(param, ctx);
- assertEquals(sourceString + targetString, ctx.getAttribute(outputPath));
- }
-
- @Test
- public void urlEncode() throws SvcLogicException {
- String sourceString = "102/GE100/SNJSCAMCJP8/SNJSCAMCJT4";
- String outputPath = "out";
-
- param.put("source", sourceString);
- param.put("outputPath", outputPath);
- 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"));
- }
+ private SvcLogicContext ctx;
+ private HashMap<String, String> param;
+ private SliStringUtils stringUtils = new SliStringUtils();
+
+ /**
+ * @throws java.lang.Exception
+ */
+ @Before
+ public void setUp() throws Exception {
+ this.ctx = new SvcLogicContext();
+ param = new HashMap<String, String>();
+ }
+
+ /**
+ * @throws SvcLogicException
+ * @see SliStringUtils#split(Map, SvcLogicContext)
+ */
+ @Test
+ public final void testSplit() throws SvcLogicException {
+ param.put("original_string", "one ## two ## three");
+ param.put("regex", " ## ");
+ param.put("ctx_memory_result_key", "result");
+
+ stringUtils.split(param, ctx);
+
+ assertThat(ctx.getAttribute("result[0]"), equalTo("one"));
+ assertThat(ctx.getAttribute("result[1]"), equalTo("two"));
+ assertThat(ctx.getAttribute("result[2]"), equalTo("three"));
+ assertThat(ctx.getAttribute("result_length"), equalTo("3"));
+ }
+
+ /**
+ * @throws SvcLogicException
+ * @see SliStringUtils#split(Map, SvcLogicContext)
+ */
+ @Test
+ public final void testSplit_limit() throws SvcLogicException {
+ param.put("original_string", "one ## two ## three");
+ param.put("regex", " ## ");
+ param.put("limit", "2");
+ param.put("ctx_memory_result_key", "result");
+
+ stringUtils.split(param, ctx);
+
+ assertThat(ctx.getAttribute("result[0]"), equalTo("one"));
+ assertThat(ctx.getAttribute("result[1]"), equalTo("two ## three"));
+ assertThat(ctx.getAttribute("result_length"), equalTo("2"));
+ }
+
+ @Test
+ public final void testSubString() throws SvcLogicException {
+ param.put("string", "splitatgivenindex");
+ param.put("begin-index", "0");
+ param.put("end-index", "5");
+ param.put("result", "result");
+
+ stringUtils.substring(param, ctx);
+
+ assertEquals("split", ctx.getAttribute("result"));
+ }
+
+ @Test
+ public final void testQuotedOrNull() throws SvcLogicException {
+ // param.put("nullString",null);
+ assertEquals("NULL", SliStringUtils.quotedOrNULL(null));
+ }
+
+ @Test
+ public void equalsIgnoreCaseTrue() throws SvcLogicException {
+ String sourceString = "HeLlOwORLD";
+ String targetSTring = "HELLOWORLD";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("true", SliStringUtils.equalsIgnoreCase(param, ctx));
+ }
+
+ @Test
+ public void equalsIgnoreCaseFalse() throws SvcLogicException {
+ String sourceString = "HeLlOwORLD";
+ String targetSTring = "goodbyeWORLD";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("false", SliStringUtils.equalsIgnoreCase(param, ctx));
+ }
+
+ @Test
+ public void toUpper() throws SvcLogicException {
+ String sourceString = "HeLlOwORLD";
+ param.put("source", sourceString);
+ String path = "my.unique.path.";
+ param.put("outputPath", path);
+ SliStringUtils.toUpper(param, ctx);
+ assertEquals(sourceString.toUpperCase(), ctx.getAttribute(path));
+ }
+
+ @Test
+ public void toLower() throws SvcLogicException {
+ String sourceString = "HeLlOwORLD";
+ param.put("source", sourceString);
+ String path = "my.unique.path.";
+ param.put("outputPath", path);
+ SliStringUtils.toLower(param, ctx);
+ assertEquals(sourceString.toLowerCase(), ctx.getAttribute(path));
+ }
+
+ @Test
+ public void containsTrue() throws SvcLogicException {
+ String sourceString = "Pizza";
+ String targetSTring = "izza";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("true", SliStringUtils.contains(param, ctx));
+ }
+
+ @Test
+ public void containsFalse() throws SvcLogicException {
+ String sourceString = "Pizza";
+ String targetSTring = "muffin";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("false", SliStringUtils.contains(param, ctx));
+ }
+
+ @Test
+ public void endsWithTrue() throws SvcLogicException {
+ String sourceString = "Pizza";
+ String targetSTring = "za";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("true", SliStringUtils.endsWith(param, ctx));
+ }
+
+ @Test
+ public void endsWithFalse() throws SvcLogicException {
+ String sourceString = "Pizza";
+ String targetSTring = "muffin";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("false", SliStringUtils.endsWith(param, ctx));
+ }
+
+ @Test
+ public void trim() throws SvcLogicException {
+ String sourceString = " H E L L O W O R L D";
+ String outputPath = "muffin";
+ param.put("source", sourceString);
+ param.put("outputPath", outputPath);
+ SliStringUtils.trim(param, ctx);
+ assertEquals(sourceString.trim(), ctx.getAttribute(outputPath));
+ }
+
+ @Test
+ public void getLength() throws SvcLogicException {
+ String sourceString = "SomeRandomString";
+ String outputPath = "muffin";
+ param.put("source", sourceString);
+ param.put("outputPath", outputPath);
+ SliStringUtils.getLength(param, ctx);
+ assertEquals(String.valueOf(sourceString.length()), ctx.getAttribute(outputPath));
+ }
+
+ @Test
+ public void startsWithFalse() throws SvcLogicException {
+ String sourceString = "Java";
+ String targetSTring = "DG";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("false", SliStringUtils.startsWith(param, ctx));
+ }
+
+ @Test
+ public void startsWithTrue() throws SvcLogicException {
+ String sourceString = "Java";
+ String targetSTring = "Ja";
+ param.put("source", sourceString);
+ param.put("target", targetSTring);
+ assertEquals("true", SliStringUtils.startsWith(param, ctx));
+ }
+
+ @Test
+ public void replace() throws SvcLogicException {
+ String sourceString = "cat Hello World cat";
+ String old = "cat";
+ String neww = "dog";
+ String outputPath = "out";
+
+ param.put("source", sourceString);
+ param.put("target", old);
+ param.put("replacement", neww);
+ param.put("outputPath", outputPath);
+ SliStringUtils.replace(param, ctx);
+ assertEquals(sourceString.replace(old, neww), ctx.getAttribute(outputPath));
+ }
+
+ @Test
+ public void replaceAll() throws SvcLogicException {
+ String source = "cat Hello World cat";
+ String target = "\\s";
+ String replacement = "";
+ String outputPath = "out";
+
+ param.put("source", source);
+ param.put("target", target);
+ param.put("replacement", replacement);
+ param.put("outputPath", outputPath);
+ SliStringUtils.replaceAll(param, ctx);
+ assertEquals(source.replaceAll(target, replacement), ctx.getAttribute(outputPath));
+ }
+
+ @Test
+ public void concat() throws SvcLogicException {
+ String sourceString = "cat";
+ String targetString = "dog";
+ String outputPath = "out";
+
+ param.put("source", sourceString);
+ param.put("target", targetString);
+ param.put("outputPath", outputPath);
+ SliStringUtils.concat(param, ctx);
+ assertEquals(sourceString + targetString, ctx.getAttribute(outputPath));
+ }
+
+ @Test
+ public void urlEncode() throws SvcLogicException {
+ String sourceString = "102/GE100/SNJSCAMCJP8/SNJSCAMCJT4";
+ String outputPath = "out";
+
+ param.put("source", sourceString);
+ param.put("outputPath", outputPath);
+ 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"));
+ }
+
+ @Test(expected = Exception.class)
+ public void testSplitForEmptyParams() throws Exception {
+ SliStringUtils utils = new SliStringUtils();
+ ctx = new SvcLogicContext();
+ param = new HashMap<>();
+ utils.split(param, ctx);
+ }
+
+ @Test(expected = Exception.class)
+ public void testSubstringForEmptyParams() throws Exception {
+ SliStringUtils utils = new SliStringUtils();
+ ctx = new SvcLogicContext();
+ param = new HashMap<>();
+ utils.substring(param, ctx);
+ }
}