summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java
diff options
context:
space:
mode:
authorJames Guistwite <jguistwite@iconectiv.com>2019-05-01 09:24:06 -0400
committerOren Kleks <orenkle@amdocs.com>2019-05-29 07:13:15 +0000
commitddb67dc3cbb04f4857f2cf24221b306fa2bab052 (patch)
tree6f65605d2f2374f90491480b0fb4464632a8a5f3 /openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java
parent12a14459a87d1f5dc766457d125d04e320c8f9a9 (diff)
Improved test coverage.
Reorganized some of the tests due to comments Issue-ID: SDC-2238 Change-Id: I6b3bcc674c792f3c5c06e851a2cfe2d92eead07c Signed-off-by: James Guistwite <jguistwite@iconectiv.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java102
1 files changed, 0 insertions, 102 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java b/openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java
deleted file mode 100644
index bfa07ecc0c..0000000000
--- a/openecomp-be/lib/openecomp-sdc-externaltesting-lib/openecomp-sdc-externaltesting-api/src/test/java/org/openecomp/core/externaltesting/api/ExecutionRequestTests.java
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright © 2019 iconectiv
- *
- * 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.openecomp.core.externaltesting.api;
-
-import com.fasterxml.jackson.databind.ObjectMapper;
-import org.junit.Assert;
-import org.junit.Test;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.Map;
-import java.util.UUID;
-
-public class ExecutionRequestTests {
-
- @Test
- public void testTestCase() throws Exception {
- ObjectMapper mapper = new ObjectMapper();
- VtpTestCase req = mapper.readValue(new File("src/test/data/testcase.json"), VtpTestCase.class);
-
- Assert.assertEquals("Scenario must match", "compliance", req.getScenario());
- Assert.assertEquals("Suite name must match", "compliancetests", req.getTestSuiteName());
- Assert.assertEquals("Test case name must match", "sriov", req.getTestCaseName());
- Assert.assertEquals("Description must match", "SR-IOV Test", req.getDescription());
- Assert.assertEquals("Author must match", "Jim", req.getAuthor());
- Assert.assertEquals("Endpoint must match", "vtp", req.getEndpoint());
- Assert.assertEquals("Test must contain two inputs", 3, req.getInputs().size());
- Assert.assertEquals("Test must contain one outputs", 1, req.getOutputs().size());
-
- VtpTestCaseInput input1 = req.getInputs().get(0);
- Assert.assertEquals("Name match", "vspId", input1.getName());
- Assert.assertEquals("Description match", "VSP ID", input1.getDescription());
- Assert.assertEquals("Input type match", "text", input1.getType());
- Assert.assertEquals("Input default match", "", input1.getDefaultValue());
- Assert.assertFalse("Input optional match", input1.getIsOptional());
-
- VtpTestCaseOutput output1 = req.getOutputs().get(0);
- Assert.assertEquals("Name match", "something", output1.getName());
- Assert.assertEquals("Description match", "is produced", output1.getDescription());
- Assert.assertEquals("Output type match", "integer", output1.getType());
-
-
- Map<String,Object> meta = input1.getMetadata();
- Assert.assertEquals("Metadata count", 3, meta.size());
-
- VtpTestCase req2 = mapper.readValue(new File("src/test/data/testcase.json"), VtpTestCase.class);
-
- Assert.assertEquals("test equality", req, req2);
-
- }
-
- @Test
- public void testExecutionRequest() throws IOException {
- ObjectMapper mapper = new ObjectMapper();
- VtpTestExecutionRequest req = mapper.readValue(new File("src/test/data/executionrequest.json"), VtpTestExecutionRequest.class);
- Assert.assertEquals("compliance", req.getScenario());
- Assert.assertEquals("compliance", req.getProfile());
- Assert.assertEquals("sriov", req.getTestCaseName());
- Assert.assertEquals("compliancetests", req.getTestSuiteName());
- Assert.assertEquals("repository", req.getEndpoint());
-
- Assert.assertEquals(3, req.getParameters().size());
- }
-
- @Test
- public void testExecutionResponse() throws IOException {
- ObjectMapper mapper = new ObjectMapper();
- VtpTestExecutionResponse rsp = mapper.readValue(new File("src/test/data/priorexecution.json"), VtpTestExecutionResponse.class);
- Assert.assertEquals("compliance", rsp.getScenario());
- Assert.assertEquals("computeflavors", rsp.getTestCaseName());
- Assert.assertEquals("compliancetests", rsp.getTestSuiteName());
- Assert.assertTrue(UUID.fromString(rsp.getExecutionId()).getLeastSignificantBits() != 0);
- Assert.assertEquals("parameters", 6, rsp.getParameters().size());
- Assert.assertNotNull(rsp.getResults());
- Assert.assertEquals("COMPLETED", rsp.getStatus());
- Assert.assertNotNull(rsp.getStartTime());
- Assert.assertNotNull(rsp.getEndTime());
- }
-
- @Test
- public void testTree() throws IOException {
- ObjectMapper mapper = new ObjectMapper();
- TestTreeNode tree = mapper.readValue(new File("src/test/data/testtree.json"), TestTreeNode.class);
-
- Assert.assertEquals(2, tree.getChildren().size());
- Assert.assertEquals(0, tree.getTests().size());
- }
-}