From d8cd4ad85264b717abbf6ba26ee377fb1decf5eb Mon Sep 17 00:00:00 2001 From: jitendra sharma Date: Thu, 8 Aug 2019 13:17:18 +0000 Subject: UT for OnapProductsListCommandTest and OnapServiceListCommandTest UT for product-list command and service-list command Issue-ID: CLI-169 Signed-off-by: jitendra sharma Change-Id: I5fc65771af030a10fb159ea2bf8cfaa30535e37d --- .../cmd/product/OnapProductsListCommandTest.java | 36 +++++++++++++++++++++ .../fw/cmd/product/OnapServiceListCommandTest.java | 37 ++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java create mode 100644 framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java (limited to 'framework') 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 index 00000000..88779bb4 --- /dev/null +++ b/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java @@ -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 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 index 00000000..5ba8a042 --- /dev/null +++ b/framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java @@ -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 oclipCommandResultAttributes = cmd.getResult() + .getRecords(); + assertTrue(oclipCommandResultAttributes.size() > 1); + } +} \ No newline at end of file -- cgit 1.2.3-korg