diff options
author | jitendra sharma <jitendra.sharma1@huawei.com> | 2019-08-08 13:17:18 +0000 |
---|---|---|
committer | jitendra sharma <jitendra.sharma1@huawei.com> | 2019-08-08 13:18:30 +0000 |
commit | d8cd4ad85264b717abbf6ba26ee377fb1decf5eb (patch) | |
tree | f5bf86b2c4d2c3cf17955a39623ecbca1b10d11d /framework | |
parent | 6690d6e32e0be1994fe7f3588183ec20c919e8e7 (diff) |
UT for OnapProductsListCommandTest and OnapServiceListCommandTest
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
Diffstat (limited to 'framework')
-rw-r--r-- | framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java | 36 | ||||
-rw-r--r-- | framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java | 37 |
2 files changed, 73 insertions, 0 deletions
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<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 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<OnapCommandResultAttribute> oclipCommandResultAttributes = cmd.getResult() + .getRecords(); + assertTrue(oclipCommandResultAttributes.size() > 1); + } +}
\ No newline at end of file |