aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/vnf-sdk-marketplace/src/test/java/org/onap/vtp/execution/VTPExecutionResourceTest.java
blob: 6d6afd5d09c9b011064144512fb102c404f9160a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/**
 * 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.vtp.execution;

import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
import mockit.MockUp;

import org.apache.http.Header;
import org.apache.http.HeaderIterator;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.params.HttpParams;
import org.glassfish.jersey.media.multipart.ContentDisposition;
import org.glassfish.jersey.media.multipart.FormDataBodyPart;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.onap.vtp.execution.model.VTPTestExecution;
import org.onap.vtp.manager.DistManager;
import org.onap.vtp.manager.model.Tester;
import org.open.infc.grpc.Output;
import org.open.infc.grpc.Result;
import org.open.infc.grpc.client.OpenRemoteCli;
import org.onap.vtp.VTPResource;
import org.onap.vtp.error.VTPError;

import java.io.IOException;
import java.util.*;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.WebTarget;

import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
@RunWith(MockitoJUnitRunner.class)
public class VTPExecutionResourceTest {

    String requestId;
    VTPExecutionResource vtpExecutionResource;
    @Before
    public void setUp() throws Exception {
        requestId = UUID.randomUUID().toString();
    }
    @Test(expected = Exception.class)
    public void testExecuteHandler() throws Exception
    {
        VTPTestExecution.VTPTestExecutionList executions= new VTPTestExecution.VTPTestExecutionList();
        List<VTPTestExecution> list= new ArrayList<>();
        JsonParser jsonParser = new JsonParser();
        String jsonString = "{\"name\":\"Mahesh Kumar\", \"age\":\"nine\",\"verified\":\"false\"}";
        JsonElement rootNode = jsonParser.parse(jsonString);

        VTPTestExecution vtp=new VTPTestExecution();
        vtp.setEndTime("2019-03-12T11:49:52.845");
        vtp.setProfile("abc");
        vtp.setStatus("pass");
        vtp.setRequestId(requestId);
        vtp.setExecutionId("executionid");
        vtp.setParameters(rootNode);
        vtp.setResults(rootNode);
        vtp.setScenario("open-cli");
        vtp.setStartTime("2019-04-12T11:49:52.845");
        vtp.setTestCaseName("testcase");
        vtp.setTestSuiteName("testsuite");
        list.add(vtp);
        executions.setExecutions(list);
        //System.out.println(executions.getExecutions());
        assertNotNull(executions.getExecutions());
        vtpExecutionResource = new VTPExecutionResource();
       vtpExecutionResource.executeHandler(executions,null);
       // vtpExecutionResource.executeHandler(executions,requestId);

    }
    @Test
    public void testExecuteHandlerForGsonCoverage() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected Output makeRpc(String scenario, String requestId, String profile, String testCase, JsonElement argsJsonNode) throws VTPError.VTPException {
                String dummyValue = "{\"execution-id\":\"execution-id\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Output.class);
            }
        };
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected Output makeRpc(String testSuite,String scenario, String requestId, String profile, String testCase, JsonElement argsJsonNode) throws VTPError.VTPException {
                String dummyValue = "{\"execution-id\":\"execution-id\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Output.class);
            }
        };
        new MockUp<Output>(){
            @mockit.Mock
            public Map<String, String> getAddonsMap() {
                String dummyValue = "{\"execution-id\":\"execution-id\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Map.class);
            }
        };
        new MockUp<Output>(){
            @mockit.Mock
            public Map<String, String> getAttrsMap() {
                String dummyValue = "{\"results\":[{\"execution-id\":\"execution-id\"}]}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Map.class);
            }
        };
        new MockUp<Output>(){
            @mockit.Mock
            public boolean getSuccess() {
                return true;
            }
        };
        VTPTestExecution.VTPTestExecutionList executions= new VTPTestExecution.VTPTestExecutionList();
        List<VTPTestExecution> list= new ArrayList<>();
        JsonParser jsonParser = new JsonParser();
        String jsonString = "{\"name\":\"Mahesh Kumar\", \"age\":\"nine\",\"verified\":\"false\"}";
        JsonElement rootNode = jsonParser.parse(jsonString);

        VTPTestExecution vtp=new VTPTestExecution();
        vtp.setEndTime("2019-03-12T11:49:52.845");
        vtp.setProfile("abc");
        vtp.setStatus("pass");
        vtp.setRequestId(requestId);
        vtp.setExecutionId("executionid");
        vtp.setParameters(rootNode);
        vtp.setResults(rootNode);
        vtp.setScenario("open-cli");
        vtp.setStartTime("2019-04-12T11:49:52.845");
        vtp.setTestCaseName("testcase");
        vtp.setTestSuiteName("testsuite");
        list.add(vtp);
        executions.setExecutions(list);
        //System.out.println(executions.getExecutions());
        assertNotNull(executions.getExecutions());
        vtpExecutionResource = new VTPExecutionResource();
       assertNotNull(vtpExecutionResource.executeHandler(executions,null));
       // vtpExecutionResource.executeHandler(executions,requestId);

    }
    @Test
    public void testExecuteHandlerForGsonCoverageNegative() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected Output makeRpc(String scenario, String requestId, String profile, String testCase,
                    JsonElement argsJsonNode) throws VTPError.VTPException {
                String dummyValue = "{\"execution-id\":\"execution-id\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue, Output.class);
            }
        };
         new MockUp<VTPResource>(){
                @mockit.Mock
                protected Output makeRpc(String testSuite,String scenario, String requestId, String profile, String testCase, JsonElement argsJsonNode) throws VTPError.VTPException {
                    String dummyValue = "{\"execution-id\":\"execution-id\"}";
                    Gson gson = new Gson();
                    return gson.fromJson(dummyValue,Output.class);
                }
            };
        new MockUp<Output>(){
            @mockit.Mock
            public Map<String, String> getAddonsMap() {
                String dummyValue = "{\"execution-id\":\"execution-id\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Map.class);
            }
        };
        new MockUp<Output>(){
            @mockit.Mock
            public Map<String, String> getAttrsMap() {
                String dummyValue = "{\"error\":\"DummyError occurs\"}";
                Gson gson = new Gson();
                return gson.fromJson(dummyValue,Map.class);
            }
        };
        new MockUp<Output>(){
            @mockit.Mock
            public boolean getSuccess() {
                return false;
            }
        };
        new MockUp<OpenRemoteCli>(){
            @mockit.Mock
            public Output invoke(String arg0, String arg1, String arg2, Map<String, String> arg3) throws Exception{
                 String dummyValue = "{\"execution-id\":\"execution-id\"}";
                 Gson gson = new Gson();
                 return gson.fromJson(dummyValue,Output.class);
            }
        };
        new MockUp<DistManager>(){
            @mockit.Mock
            protected Tester httpRequestTestcase(String testSuite, String scenario, String testCase)  { 
          Tester tester =  new Tester();
        tester.setId("1");
        tester.setIp("localhost");
        tester.setPort(50051);
        tester.setTesterId("123");
        return tester;
        }

        };
        VTPTestExecution.VTPTestExecutionList executions= new VTPTestExecution.VTPTestExecutionList();
        List<VTPTestExecution> list= new ArrayList<>();
        JsonParser jsonParser = new JsonParser();
        String jsonString = "{\"name\":\"Mahesh Kumar\", \"age\":\"nine\",\"verified\":\"false\"}";
        JsonElement rootNode = jsonParser.parse(jsonString);

        VTPTestExecution vtp=new VTPTestExecution();
        vtp.setEndTime("2019-03-12T11:49:52.845");
        vtp.setProfile("abc");
        vtp.setStatus("pass");
        vtp.setRequestId(requestId);
        vtp.setExecutionId("executionid");
        vtp.setParameters(rootNode);
        vtp.setResults(rootNode);
        vtp.setScenario("open-cli");
        vtp.setStartTime("2019-04-12T11:49:52.845");
        vtp.setTestCaseName("testcase");
        vtp.setTestSuiteName("testsuite");
        list.add(vtp);
        executions.setExecutions(list);
        //System.out.println(executions.getExecutions());
        assertNotNull(executions.getExecutions());
        vtpExecutionResource = new VTPExecutionResource();
       assertNotNull(vtpExecutionResource.executeHandler(executions,null));
       // vtpExecutionResource.executeHandler(executions,requestId);

    }
    public void testListTestExecutionsHandler() throws Exception
    {
        vtpExecutionResource = new VTPExecutionResource();
        vtpExecutionResource.listTestExecutionsHandler(requestId,"abc","abc","abc","abc","123","123",1,0);
    }
    @Test
    public void testListTestExecutionsHandlerForGson() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected JsonElement makeRpcAndGetJson(List<String> args, int timeout) throws VTPError.VTPException, IOException {
                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, int timeout) throws VTPError.VTPException, IOException {
                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);
            }
        };
        vtpExecutionResource = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource.listTestExecutionsHandler(requestId,"abc","abc","abc","abc","123","123",1,0));
    }
    @Test
    public void testListTestExecutionsHandlerTestmakeRpcAndGetJson() throws Exception
    {
        VTPExecutionResource vtpExecutionResource1 = new VTPExecutionResource();
        VTPResource vtpResource = new VTPResource();

        new MockUp<VTPResource>(){
            @mockit.Mock
            protected Result makeRpc(List <String> args, int timeout) throws VTPError.VTPException {
                Result result = Result.newBuilder().build();
                return result;
            }
        };
        new MockUp<Result>(){
            @mockit.Mock
            public String getOutput() {
                return "[{\"product\":\"tutorial\"}]";
            }
        };
        VTPTestExecution.VTPTestExecutionList vtpTestExecutionList = vtpExecutionResource1.listTestExecutionsHandler(requestId,"tutorial","ut","list-users","abc","123","123",1,0);
        assertTrue(vtpTestExecutionList.getExecutions().size()>0);
    }
    public void testListTestExecutions() throws Exception
    {
        vtpExecutionResource = new VTPExecutionResource();
        vtpExecutionResource.listTestExecutions(requestId,"abc","abc","abc","abc","123","123",1,0);
    }
    public void testGetTestExecution() throws Exception
    {
        //assertNotNull(vtpExecutionResource.getTestExecution("abc"));
        vtpExecutionResource = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource.getTestExecution("1234"));
    }
    public void testGetTestExecutionHandler() throws Exception
    {
        //assertNotNull(vtpExecutionResource.getTestExecution("abc"));
        vtpExecutionResource = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource.getTestExecutionHandler("1234"));
    }
    @Test
    public void testGetTestExecutionHandlerForGson() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected JsonElement makeRpcAndGetJson(List<String> args, int timeout) throws VTPError.VTPException, IOException {
                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\"," +
                        "\"input\": \"[]\", \"output\":\"[]\"}";
                JsonParser jsonParser = new JsonParser();
                return jsonParser.parse(values);
            }
        };
        //assertNotNull(vtpExecutionResource.getTestExecution("abc"));
        vtpExecutionResource = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource.getTestExecutionHandler("1234"));
    }
    @Test
    public void testGetTestExecutionHandlerForGsonWithResultNull() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected JsonElement makeRpcAndGetJson(List<String> args, int timeout) throws VTPError.VTPException, IOException {
                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\"," +
                        "\"input\": \"[]\", \"output\":\"null\"}";
                JsonParser jsonParser = new JsonParser();
                return jsonParser.parse(values);
            }
        };
        VTPExecutionResource vtpExecutionResource10 = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource10.getTestExecutionHandler("1234"));
    }
    @Test
    public void testGetTestExecutionHandlerForGsonWithResultNullForCatchException() throws Exception
    {
        new MockUp<VTPResource>(){
            @mockit.Mock
            protected JsonElement makeRpcAndGetJson(List<String> args, int timeout)
                    throws VTPError.VTPException, IOException {
                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\"," +
                        "\"input\": \"[]\", \"output\":null}";
                JsonParser jsonParser = new JsonParser();
                return jsonParser.parse(values);
            }
        };
        VTPExecutionResource vtpExecutionResource11 = new VTPExecutionResource();
        assertNotNull(vtpExecutionResource11.getTestExecutionHandler("1234"));
    }

    @Test
    public void testExecuteTestcases() throws Exception
    {
        vtpExecutionResource = new VTPExecutionResource();
        String execJson = "[{\"scenario\":\"tutorial\",\"testCaseName\":\"list-users\",\"testSuiteName\":\"ut\"," +
                "\"requestId\":\"1234567890\",\"executionId\":\"123\",\"profile\":\"http\"}]";
        assertEquals(200, vtpExecutionResource.executeTestcases(requestId,null,"exeJson").getStatus());
    }
}