-package org.onap.ccsdk.sli.core.sli.provider;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-import static org.junit.Assert.assertNull;\r
-import java.util.LinkedList;\r
-import org.junit.Test;\r
-import org.onap.ccsdk.sli.core.sli.SvcLogicContext;\r
-import org.onap.ccsdk.sli.core.sli.SvcLogicGraph;\r
-import org.onap.ccsdk.sli.core.sli.SvcLogicNode;\r
-import org.onap.ccsdk.sli.core.sli.SvcLogicParser;\r
-\r
-public class SetNodeExecutorTest {\r
- @Test\r
- public void clearProperties() throws Exception {\r
- SetNodeExecutor sne = new SetNodeExecutor();\r
- SvcLogicContext ctx = new SvcLogicContext();\r
-\r
- SvcLogicParser slp = new SvcLogicParser();\r
- LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/clearValues.xml");\r
- SvcLogicNode root = graph.getFirst().getRootNode();\r
- SvcLogicNode nodeOne = root.getOutcomeValue("1");\r
- SvcLogicNode nodeTwo = root.getOutcomeValue("2");\r
-\r
- sne.execute(nodeOne, ctx);\r
- sne.execute(nodeTwo, ctx);\r
-\r
- assertNull(ctx.getAttribute("si.field1"));\r
- assertNull(ctx.getAttribute("si.field2"));\r
- assertNull(ctx.getAttribute("si.field3"));\r
- assertEquals("6", ctx.getAttribute("search1"));\r
- assertEquals("KeepMe!", ctx.getAttribute("simonSays"));\r
- }\r
-\r
- @Test\r
- public void subtreeCopy() throws Exception {\r
- SetNodeExecutor sne = new SetNodeExecutor();\r
- SvcLogicContext ctx = new SvcLogicContext();\r
-\r
- SvcLogicParser slp = new SvcLogicParser();\r
- LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/copyValues.xml");\r
- SvcLogicNode root = graph.getFirst().getRootNode();\r
- SvcLogicNode nodeOne = root.getOutcomeValue("1");\r
- SvcLogicNode nodeTwo = root.getOutcomeValue("2");\r
-\r
- sne.execute(nodeOne, ctx);\r
- sne.execute(nodeTwo, ctx);\r
- \r
- assertEquals("1",ctx.getAttribute("si.field1"));\r
- assertEquals("2",ctx.getAttribute("si.field2"));\r
- assertEquals("3",ctx.getAttribute("si.field3"));\r
- assertEquals("1",ctx.getAttribute("rootTwo.field1"));\r
- assertEquals("2",ctx.getAttribute("rootTwo.field2"));\r
- assertEquals("3",ctx.getAttribute("rootTwo.field3"));\r
- }\r
-\r
-}\r
+package org.onap.ccsdk.sli.core.sli.provider;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+import java.util.LinkedList;
+import org.junit.Test;
+import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
+import org.onap.ccsdk.sli.core.sli.SvcLogicGraph;
+import org.onap.ccsdk.sli.core.sli.SvcLogicNode;
+import org.onap.ccsdk.sli.core.sli.SvcLogicParser;
+
+public class SetNodeExecutorTest {
+ @Test
+ public void clearProperties() throws Exception {
+ SetNodeExecutor sne = new SetNodeExecutor();
+ SvcLogicContext ctx = new SvcLogicContext();
+
+ SvcLogicParser slp = new SvcLogicParser();
+ LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/clearValues.xml");
+ SvcLogicNode root = graph.getFirst().getRootNode();
+ SvcLogicNode nodeOne = root.getOutcomeValue("1");
+ SvcLogicNode nodeTwo = root.getOutcomeValue("2");
+
+ sne.execute(nodeOne, ctx);
+ sne.execute(nodeTwo, ctx);
+
+ assertNull(ctx.getAttribute("si.field1"));
+ assertNull(ctx.getAttribute("si.field2"));
+ assertNull(ctx.getAttribute("si.field3"));
+ assertEquals("6", ctx.getAttribute("search1"));
+ assertEquals("KeepMe!", ctx.getAttribute("simonSays"));
+ }
+
+ @Test
+ public void clearMultipleArrayProperties() throws Exception {
+ SetNodeExecutor sne = new SetNodeExecutor();
+ SvcLogicContext ctx = new SvcLogicContext();
+
+ SvcLogicParser slp = new SvcLogicParser();
+ LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/clearArrayValues.xml");
+ SvcLogicNode root = graph.getFirst().getRootNode();
+ SvcLogicNode nodeOne = root.getOutcomeValue("1");
+ SvcLogicNode nodeTwo = root.getOutcomeValue("2");
+
+ sne.execute(nodeOne, ctx);
+ sne.execute(nodeTwo, ctx);
+
+ assertNull(ctx.getAttribute("si[0].field1"));
+ assertNull(ctx.getAttribute("si[1].field2"));
+ assertNull(ctx.getAttribute("si[2].field3"));
+ assertEquals("6", ctx.getAttribute("search1"));
+ assertEquals("KeepMe!", ctx.getAttribute("simonSays"));
+ }
+
+ @Test
+ public void clearSingleArrayProperties() throws Exception {
+ SetNodeExecutor sne = new SetNodeExecutor();
+ SvcLogicContext ctx = new SvcLogicContext();
+
+ SvcLogicParser slp = new SvcLogicParser();
+ LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/clearSingleArrayValues.xml");
+ SvcLogicNode root = graph.getFirst().getRootNode();
+ SvcLogicNode nodeOne = root.getOutcomeValue("1");
+ SvcLogicNode nodeTwo = root.getOutcomeValue("2");
+
+ sne.execute(nodeOne, ctx);
+ sne.execute(nodeTwo, ctx);
+
+ assertNull(ctx.getAttribute("si[0].field1"));
+ assertEquals("2",ctx.getAttribute("si[1].field2"));
+ assertEquals("3", ctx.getAttribute("si[2].field3"));
+ assertEquals("6", ctx.getAttribute("search1"));
+ assertEquals("KeepMe!", ctx.getAttribute("simonSays"));
+ }
+
+ @Test
+ public void arrayPattern() {
+ SetNodeExecutor sne = new SetNodeExecutor();
+ String source = "one.two[0].three[0].four";
+ assertEquals("one.two.three.four", source.replaceAll(sne.arrayPattern, ""));
+ }
+
+ @Test
+ public void subtreeCopy() throws Exception {
+ SetNodeExecutor sne = new SetNodeExecutor();
+ SvcLogicContext ctx = new SvcLogicContext();
+
+ SvcLogicParser slp = new SvcLogicParser();
+ LinkedList<SvcLogicGraph> graph = slp.parse("src/test/resources/copyValues.xml");
+ SvcLogicNode root = graph.getFirst().getRootNode();
+ SvcLogicNode nodeOne = root.getOutcomeValue("1");
+ SvcLogicNode nodeTwo = root.getOutcomeValue("2");
+
+ sne.execute(nodeOne, ctx);
+ sne.execute(nodeTwo, ctx);
+
+ assertEquals("1", ctx.getAttribute("si.field1"));
+ assertEquals("2", ctx.getAttribute("si.field2"));
+ assertEquals("3", ctx.getAttribute("si.field3"));
+ assertEquals("1", ctx.getAttribute("rootTwo.field1"));
+ assertEquals("2", ctx.getAttribute("rootTwo.field2"));
+ assertEquals("3", ctx.getAttribute("rootTwo.field3"));
+ }
+
+}