summaryrefslogtreecommitdiffstats
path: root/framework/src
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src')
-rw-r--r--framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowCommandTest.java51
-rw-r--r--framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowDebugCommandTest.java47
-rw-r--r--framework/src/test/java/org/onap/cli/fw/cmd/product/OnapProductsListCommandTest.java36
-rw-r--r--framework/src/test/java/org/onap/cli/fw/cmd/product/OnapServiceListCommandTest.java37
-rw-r--r--framework/src/test/java/org/onap/cli/fw/store/OnapCommandArtifactStoreTest.java86
-rw-r--r--framework/src/test/java/org/onap/cli/fw/store/OnapCommandExecutionStoreTest.java85
-rw-r--r--framework/src/test/java/org/onap/cli/fw/store/OnapCommandProfileStoreTest.java67
7 files changed, 409 insertions, 0 deletions
diff --git a/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowCommandTest.java b/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowCommandTest.java
new file mode 100644
index 00000000..172f7045
--- /dev/null
+++ b/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowCommandTest.java
@@ -0,0 +1,51 @@
+/*
+ * 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.execution;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandException;
+import org.onap.cli.fw.error.OnapCommandExecutionFailed;
+import org.onap.cli.fw.output.OnapCommandResultAttribute;
+import org.onap.cli.fw.store.OnapCommandExecutionStoreTest;
+
+import java.util.List;
+
+import static org.junit.Assert.*;
+
+public class OnapCommandExceutionShowCommandTest {
+@BeforeClass
+public static void setUp() throws Exception {
+ OnapCommandExecutionStoreTest executionStoreTest= new OnapCommandExecutionStoreTest();
+ executionStoreTest.setUp();
+ executionStoreTest.listExecutionsTest();
+ executionStoreTest.storeExectutionDebugTest();
+ executionStoreTest.storeExectutionEndTest();
+ executionStoreTest.storeExectutionOutputTest();
+ executionStoreTest.storeExectutionProgressTest();
+ executionStoreTest.storeExectutionStartTest();
+}
+ @Test
+ public void runTest() throws OnapCommandException {
+ OnapCommandExceutionShowCommand cmd=new OnapCommandExceutionShowCommand();
+ cmd.initializeSchema("execution-show.yaml");
+ cmd.getParametersMap().get("execution-id").setValue("requestId");
+ cmd.getParametersMap().get("format").setValue("TEXT");
+ cmd.execute();
+ List<OnapCommandResultAttribute> oclipCommandResultAttributes = cmd.getResult()
+ .getRecords();
+ assertTrue(oclipCommandResultAttributes.size() > 1);
+ }
+} \ No newline at end of file
diff --git a/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowDebugCommandTest.java b/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowDebugCommandTest.java
new file mode 100644
index 00000000..e31e53d5
--- /dev/null
+++ b/framework/src/test/java/org/onap/cli/fw/cmd/execution/OnapCommandExceutionShowDebugCommandTest.java
@@ -0,0 +1,47 @@
+/*
+ * 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.execution;
+
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandException;
+import org.onap.cli.fw.store.OnapCommandExecutionStoreTest;
+
+import static org.junit.Assert.*;
+
+public class OnapCommandExceutionShowDebugCommandTest {
+ @BeforeClass
+ public static void setUp() throws Exception {
+ OnapCommandExecutionStoreTest executionStoreTest= new OnapCommandExecutionStoreTest();
+ executionStoreTest.setUp();
+ executionStoreTest.listExecutionsTest();
+ executionStoreTest.storeExectutionDebugTest();
+ executionStoreTest.storeExectutionEndTest();
+ executionStoreTest.storeExectutionOutputTest();
+ executionStoreTest.storeExectutionProgressTest();
+ executionStoreTest.storeExectutionStartTest();
+ }
+ @Test
+ public void runTest() throws OnapCommandException {
+ OnapCommandExceutionShowDebugCommand cmd=new OnapCommandExceutionShowDebugCommand();
+ cmd.initializeSchema("execution-show-debug.yaml");
+ cmd.getParametersMap().get("execution-id").setValue("requestId");
+ cmd.execute();
+ assertNotNull(cmd.getResult().getOutput());
+
+ }
+
+} \ No newline at end of file
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
diff --git a/framework/src/test/java/org/onap/cli/fw/store/OnapCommandArtifactStoreTest.java b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandArtifactStoreTest.java
new file mode 100644
index 00000000..1a4d982a
--- /dev/null
+++ b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandArtifactStoreTest.java
@@ -0,0 +1,86 @@
+/*
+ * 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.store;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandArtifactAlreadyExist;
+import org.onap.cli.fw.error.OnapCommandArtifactContentChecksumNotMatch;
+import org.onap.cli.fw.error.OnapCommandArtifactContentNotExist;
+import org.onap.cli.fw.error.OnapCommandArtifactNotFound;
+
+import java.io.File;
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.junit.Assert.*;
+
+public class OnapCommandArtifactStoreTest {
+ OnapCommandArtifactStore onapCommandArtifactStore;
+ OnapCommandArtifactStore.Artifact artifact;
+ @Before
+ public void setUp() throws Exception {
+ onapCommandArtifactStore= OnapCommandArtifactStore.getStore();
+ artifact =new OnapCommandArtifactStore.Artifact();
+ Map<String,String> metadata=new HashMap<>();
+ metadata.put("name","data");
+ artifact.setName("artifact");
+ artifact.setCategoty("category");
+ artifact.setChecksum("checksum");
+ artifact.setPath(System.getProperty("user.dir")+ File.separator+"src/test/resources/sample-cmd-test-help.txt");
+ artifact.setCreateAt("12");
+ artifact.setDescription("description");
+ artifact.setLastUpdatedAt("12");
+ artifact.setMetadata(metadata);
+ artifact.setSize(12L);
+ }
+ @Test
+ public void createAndDeleteArtifactTest() throws OnapCommandArtifactContentChecksumNotMatch, OnapCommandArtifactAlreadyExist, OnapCommandArtifactContentNotExist, OnapCommandArtifactNotFound {
+ assertNotNull(onapCommandArtifactStore.createArtifact(artifact));
+ onapCommandArtifactStore.deleteArtifact("artifact","category");
+ String artifactPath=System.getProperty("user.dir")+File.separator+"data/artifacts";
+ File artifactFile= new File(artifactPath+File.separator+"artifact__category.json");
+ assertFalse(artifactFile.exists());
+
+ }
+ @Test
+ public void updateArtifactTest() throws OnapCommandArtifactNotFound, OnapCommandArtifactAlreadyExist, OnapCommandArtifactContentNotExist, OnapCommandArtifactContentChecksumNotMatch {
+ onapCommandArtifactStore.createArtifact(artifact);
+ OnapCommandArtifactStore.Artifact artifactForUpdate =new OnapCommandArtifactStore.Artifact();
+ Map<String,String> metadata=new HashMap<>();
+ metadata.put("name","data");
+ artifactForUpdate.setName("artifactForUpdate");
+ artifactForUpdate.setCategoty("categoryUpdate");
+ artifactForUpdate.setChecksum("checksum");
+ artifactForUpdate.setPath(System.getProperty("user.dir")+ File.separator+"src/test/resources/sample-cmd-test-help.txt");
+ artifactForUpdate.setCreateAt("12");
+ artifactForUpdate.setDescription("description");
+ artifactForUpdate.setLastUpdatedAt("12");
+ artifactForUpdate.setMetadata(metadata);
+ assertNotNull(onapCommandArtifactStore.updateArtifact("artifact","category",artifactForUpdate));
+ onapCommandArtifactStore.deleteArtifact("artifactForUpdate","categoryUpdate");
+ }
+ @Test(expected = OnapCommandArtifactNotFound.class)
+ public void getArtifactTest() throws OnapCommandArtifactNotFound {
+ onapCommandArtifactStore.getArtifact("abc","abc");
+ }
+ @Test
+ public void listArtifactTest() throws OnapCommandArtifactNotFound {
+ assertNotNull(onapCommandArtifactStore.listArtifact("category","namePattern"));
+ }
+} \ No newline at end of file
diff --git a/framework/src/test/java/org/onap/cli/fw/store/OnapCommandExecutionStoreTest.java b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandExecutionStoreTest.java
new file mode 100644
index 00000000..6b69f0b0
--- /dev/null
+++ b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandExecutionStoreTest.java
@@ -0,0 +1,85 @@
+/*
+ * 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.store;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandExecutionFailed;
+
+import java.io.File;
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.junit.Assert.*;
+
+public class OnapCommandExecutionStoreTest {
+ OnapCommandExecutionStore executionStore;
+ @Before
+ public void setUp() throws Exception {
+ executionStore=OnapCommandExecutionStore.getStore();
+ }
+ @Test
+ public void storeExectutionStartTest(){
+ assertNotNull(executionStore.storeExectutionStart("requestId","product","service","cmd","profile","input"));
+ }
+ @Test
+ public void listExecutionsTest() throws OnapCommandExecutionFailed {
+ Map<String,String> search=new HashMap<>();
+ search.put("startTime","12");
+ search.put("endTime","12");
+ search.put("execution-id","abc");
+ search.put("request-id","abc");
+ assertNotNull(executionStore.listExecutions(search));
+ }
+ @Test
+ public void storeExectutionEndTest(){
+ OnapCommandExecutionStore.ExecutionStoreContext store=new OnapCommandExecutionStore.ExecutionStoreContext();
+ store.setExecutionId("abc");
+ store.setRequestId("abc");
+ store.setStorePath("abc");
+ executionStore.storeExectutionEnd(store,"abc","abc","abc",true);
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"abc").exists());
+ }
+ @Test
+ public void storeExectutionProgressTest(){
+ OnapCommandExecutionStore.ExecutionStoreContext store=new OnapCommandExecutionStore.ExecutionStoreContext();
+ store.setExecutionId("abc");
+ store.setRequestId("abc");
+ store.setStorePath("abc");
+ executionStore.storeExectutionProgress(store,"abc","abc","abc");
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"abc").exists());
+ }
+ @Test
+ public void storeExectutionDebugTest(){
+ OnapCommandExecutionStore.ExecutionStoreContext store=new OnapCommandExecutionStore.ExecutionStoreContext();
+ store.setExecutionId("abc");
+ store.setRequestId("abc");
+ store.setStorePath("abc");
+ executionStore.storeExectutionDebug(store,"abc");
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"abc").exists());
+ }
+ @Test
+ public void storeExectutionOutputTest(){
+ OnapCommandExecutionStore.ExecutionStoreContext store=new OnapCommandExecutionStore.ExecutionStoreContext();
+ store.setExecutionId("abc");
+ store.setRequestId("abc");
+ store.setStorePath("abc");
+ executionStore.storeExectutionOutput(store,"abc");
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"abc").exists());
+ }
+
+} \ No newline at end of file
diff --git a/framework/src/test/java/org/onap/cli/fw/store/OnapCommandProfileStoreTest.java b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandProfileStoreTest.java
new file mode 100644
index 00000000..f98f518d
--- /dev/null
+++ b/framework/src/test/java/org/onap/cli/fw/store/OnapCommandProfileStoreTest.java
@@ -0,0 +1,67 @@
+/*
+ * 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.store;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.cli.fw.error.OnapCommandException;
+import org.onap.cli.fw.error.OnapCommandPersistProfileFailed;
+import org.onap.cli.fw.input.cache.OnapCommandParamEntity;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
+
+import static org.junit.Assert.*;
+
+public class OnapCommandProfileStoreTest {
+ OnapCommandProfileStore onapCommandProfileStore;
+ @Before
+ public void setUp() throws Exception {
+ onapCommandProfileStore=OnapCommandProfileStore.getInstance();
+ }
+ @Test
+ public void includeProfileTest() throws OnapCommandException {
+ onapCommandProfileStore.includeProfile("profiles");
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"data/profiles").exists());
+ }
+ @Test
+ public void persistProfileAndgetProfilesTest() throws OnapCommandPersistProfileFailed {
+ OnapCommandParamEntity onapCommandParamEntity=new OnapCommandParamEntity();
+ onapCommandParamEntity.setName("schema-list");
+ onapCommandParamEntity.setProduct("open-cli");
+ onapCommandParamEntity.setValue("value");
+ List<OnapCommandParamEntity> paramEntityList=new ArrayList<>();
+ paramEntityList.add(onapCommandParamEntity);
+ onapCommandProfileStore.persistProfile(paramEntityList,"abc");
+ assertTrue(new File(System.getProperty("user.dir")+File.separator+"data/profiles/abc-profile.json").exists());
+ assertNotNull(onapCommandProfileStore.getProfiles());
+ }
+ @Test
+ public void removeProfileTest(){
+ onapCommandProfileStore.removeProfile("abc");
+ assertFalse(new File(System.getProperty("user.dir")+File.separator+"data/profiles/abc-profile.json").exists());
+ }
+ @Test
+ public void addTest(){
+ onapCommandProfileStore.add("abc","abc","abc");
+ }
+@Test
+ public void getParamsTest(){
+ assertNotNull(onapCommandProfileStore.getParams("abc"));
+}
+
+} \ No newline at end of file