UT for OnapProductsListCommandTest and OnapServiceListCommandTest 74/93074/1
authorjitendra sharma <jitendra.sharma1@huawei.com>
Thu, 8 Aug 2019 13:17:18 +0000 (13:17 +0000)
committerjitendra sharma <jitendra.sharma1@huawei.com>
Thu, 8 Aug 2019 13:18:30 +0000 (13:18 +0000)
UT for product-list command and service-list command

Issue-ID: CLI-169

Signed-off-by: jitendra sharma <jitendra.sharma1@huawei.com>
Change-Id: I5fc65771af030a10fb159ea2bf8cfaa30535e37d

framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java [new file with mode: 0644]
framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java [new file with mode: 0644]

diff --git a/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java b/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java
new file mode 100644 (file)
index 0000000..88779bb
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright 2019 Huawei Technologies Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.onap.cli.fw.cmd.product;
+
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandException;
+import org.onap.cli.fw.output.OnapCommandResultAttribute;
+
+import java.util.List;
+
+import static org.junit.Assert.*;
+
+public class OnapProductsListCommandTest {
+    @Test
+    public void runTest() throws OnapCommandException {
+         OnapProductsListCommand cmd=new OnapProductsListCommand ();
+        cmd.initializeSchema("product-list.yaml");
+        cmd.execute();
+        List<OnapCommandResultAttribute> oclipCommandResultAttributes = cmd.getResult()
+                .getRecords();
+        assertTrue(oclipCommandResultAttributes.size() > 1);
+    }
+}
diff --git a/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java b/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java
new file mode 100644 (file)
index 0000000..5ba8a04
--- /dev/null
@@ -0,0 +1,37 @@
+/* Copyright 2019 Huawei Technologies Co., Ltd.
+        *
+        * Licensed under the Apache License, Version 2.0 (the "License");
+        * you may not use this file except in compliance with the License.
+        * You may obtain a copy of the License at
+        *
+        *     http://www.apache.org/licenses/LICENSE-2.0
+        *
+        * Unless required by applicable law or agreed to in writing, software
+        * distributed under the License is distributed on an "AS IS" BASIS,
+        * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+        * See the License for the specific language governing permissions and
+        * limitations under the License.
+        */
+
+        package org.onap.cli.fw.cmd.product;
+
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandException;
+import org.onap.cli.fw.output.OnapCommandResultAttribute;
+
+import java.util.List;
+
+import static org.junit.Assert.*;
+
+public class OnapServiceListCommandTest {
+ @Test
+    public void runTest() throws OnapCommandException {
+          OnapServiceListCommand cmd=new OnapServiceListCommand();
+        cmd.initializeSchema("service-list.yaml");
+     cmd.getParametersMap().get("product").setValue("open-cli");
+        cmd.execute();
+        List<OnapCommandResultAttribute> oclipCommandResultAttributes = cmd.getResult()
+                .getRecords();
+        assertTrue(oclipCommandResultAttributes.size() > 1);
+    }
+}
\ No newline at end of file