aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java')
-rw-r--r--vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java31
1 files changed, 1 insertions, 30 deletions
diff --git a/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java
index e558a6bb..6d6afd5d 100644
--- a/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java
+++ b/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java
@@ -296,39 +296,10 @@ public class VTPExecutionResourceTest {
return result;
}
};
- new MockUp<VTPResource>(){
- @mockit.Mock
- protected Result makeRpc(List<String> args,int count,int index) throws VTPError.VTPException {
- Result result = Result.newBuilder().build();
- return result;
- }
- };
- new MockUp<VTPResource>(){
- @mockit.Mock
- protected JsonElement makeRpcAndGetJson(List<String> args,int count,int index, int timeout) throws VTPError.VTPException {
- String values = "[{\"start-time\":\"start-time\", \"end-time\":\"end-time\", " +
- "\"request-id\":\"request-id\", \"product\":\"product\"," +
- "\"service\":\"service\", \"command\":\"command\", " +
- "\"profile\":\"profile\", \"status\":\"status\", \"execution-id\":\"execution-id\"}]";
- JsonParser jsonParser = new JsonParser();
- return jsonParser.parse(values);
- }
- };
- new MockUp<VTPResource>(){
- @mockit.Mock
- protected JsonElement makeRpcAndGetJson(List<String> args,int count,int index) throws VTPError.VTPException {
- String values = "[{\"start-time\":\"start-time\", \"end-time\":\"end-time\", " +
- "\"request-id\":\"request-id\", \"product\":\"product\"," +
- "\"service\":\"service\", \"command\":\"command\", " +
- "\"profile\":\"profile\", \"status\":\"status\", \"execution-id\":\"execution-id\"}]";
- JsonParser jsonParser = new JsonParser();
- return jsonParser.parse(values);
- }
- };
new MockUp<Result>(){
@mockit.Mock
public String getOutput() {
- return "{\"product\":\"tutorial\"}";
+ return "[{\"product\":\"tutorial\"}]";
}
};
VTPTestExecution.VTPTestExecutionList vtpTestExecutionList = vtpExecutionResource1.listTestExecutionsHandler(requestId,"tutorial","ut","list-users","abc","123","123",1,0);