summaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java
diff options
context:
space:
mode:
authorBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>2020-10-08 11:48:34 +0200
committerBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>2020-10-08 12:07:15 +0200
commitc184cf1bda7a8a5d1cd489fb8080d2ee507611de (patch)
tree220770e6930f70d3b9ba8f61441aa96cc384fc5e /vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java
parent15c39f44fb16ca5e16b522b32eea79b4f73193c3 (diff)
Fix get executions JSON parsing error.
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: I1ee1c070cc0c97eebfad5cdb5e737d8136631cbf Issue-ID: VNFSDK-697
Diffstat (limited to 'vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java')
-rw-r--r--vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java
index 1a3200ab..4f15fcf5 100644
--- a/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java
+++ b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/VTPExecutionResourceTest.java
@@ -20,6 +20,7 @@ import com.google.common.collect.Lists;
import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
+import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import org.glassfish.jersey.media.multipart.ContentDisposition;
import org.glassfish.jersey.media.multipart.FormDataBodyPart;
@@ -153,12 +154,12 @@ public class VTPExecutionResourceTest {
String testProduct = "VTP Scenario 2";
String testCommand = "s1.ts1.testcase-2";
String testSuiteName = "testsuite-2";
- String testRequestId = "test-02-request-id";
+ String testRequestId = "test-wrong-request-id";
String testExecutionId = testRequestId + "-execution-id";
String testProfile = "open-cli-schema";
String expectedStatus = "FAIL";
JsonElement expectedResult = new Gson().fromJson("" +
- "[{ \"error\": \"unable to find execution results\"}]", JsonArray.class);
+ "{ \"error\": \"unable to find execution results\"}", JsonObject.class);
prepareMockRpcMethods(
testStartTime, testEndTime, testProduct, testCommand, testSuiteName,
@@ -193,11 +194,11 @@ public class VTPExecutionResourceTest {
String testProfile = "open-cli-schema";
String expectedStatus = "FAIL";
JsonElement expectedResult = new Gson().fromJson("" +
- "[{ " +
+ "{ " +
"\"error\": \"fail to load execution result\"," +
- "\"reason\":\"Expected a com.google.gson.JsonArray but was com.google.gson.JsonPrimitive\"" +
- "}]",
- JsonArray.class
+ "\"reason\":\"com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 8 path $\"" +
+ "}",
+ JsonObject.class
);
prepareMockRpcMethods(