cli-command unit test cases added 41/128941/2
authorGanesh <ganesh.c@samsung.com>
Thu, 28 Apr 2022 10:12:26 +0000 (15:42 +0530)
committerGanesh Chandrasekaran <ganesh.c@samsung.com>
Thu, 12 May 2022 06:24:41 +0000 (06:24 +0000)
Signed-off-by: Ganesh <ganesh.c@samsung.com>
Change-Id: I6095b147b1bc44f6c0be07ec5a6b9fb8418f538c
Issue-ID: CLI-443

profiles/command/src/test/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmdTest.java [new file with mode: 0644]

diff --git a/profiles/command/src/test/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmdTest.java b/profiles/command/src/test/java/org/onap/cli/fw/cmd/cmd/OpenCommandShellCmdTest.java
new file mode 100644 (file)
index 0000000..bd7bcdc
--- /dev/null
@@ -0,0 +1,51 @@
+/*\r
+ * Copyright 2022 Samsung Electronics\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.onap.cli.fw.cmd.cmd;\r
+\r
+import org.junit.Assert;\r
+import org.junit.Test;\r
+\r
+import java.util.*;\r
+\r
+public class OpenCommandShellCmdTest {\r
+    List<String> command = new ArrayList<>();\r
+    Map<String, String> envVariable = new HashMap<String, String>();\r
+    Map<String, String> resultMap = new IdentityHashMap<>();\r
+\r
+    @Test\r
+    public void setCmdTest() {\r
+        OpenCommandShellCmd cmdShell = new OpenCommandShellCmd();\r
+        command.add("test");\r
+        cmdShell.setCommand(command);\r
+        Assert.assertEquals("test", cmdShell.getCommand().get(0));\r
+    }\r
+\r
+    @Test\r
+    public void setCmdEnvVariable() {\r
+        OpenCommandShellCmd cmdShell = new OpenCommandShellCmd();\r
+        envVariable.put("variableOne","test");\r
+        cmdShell.setEnvs(envVariable);\r
+        Assert.assertEquals("test", cmdShell.getEnvs().get("variableOne"));\r
+    }\r
+\r
+    @Test\r
+    public void setCmdError() {\r
+        OpenCommandShellCmd cmdShell = new OpenCommandShellCmd();\r
+        cmdShell.setError("Timeout");\r
+        Assert.assertEquals("Timeout", cmdShell.getError());\r
+    }\r
+}\r