Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / test / java / org / onap / appc / requesthandler / impl / LocalRequestHanlderTestHelper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.requesthandler.impl;
26
27 import org.onap.appc.domainmodel.lcm.ActionIdentifiers;
28 import org.onap.appc.domainmodel.lcm.ActionLevel;
29 import org.onap.appc.domainmodel.lcm.CommonHeader;
30 import org.onap.appc.domainmodel.lcm.RequestContext;
31 import org.onap.appc.domainmodel.lcm.ResponseContext;
32 import org.onap.appc.domainmodel.lcm.RuntimeContext;
33 import org.onap.appc.domainmodel.lcm.VNFOperation;
34
35 import java.util.Date;
36
37 /**
38  * Creates RequestContextInput for ActionStatus JUnits
39  */
40 public interface LocalRequestHanlderTestHelper {
41     default RuntimeContext createRequestHandlerRuntimeContext(String vnfId, String payload) {
42         RuntimeContext context = new RuntimeContext();
43
44         RequestContext requestContext = createRequestContext(VNFOperation.ActionStatus, "requestId1",
45             vnfId, ActionLevel.MGMT, payload);
46         context.setRequestContext(requestContext);
47
48         ResponseContext resContext = new ResponseContext();
49         resContext.setCommonHeader(context.getRequestContext().getCommonHeader());
50         context.setResponseContext(resContext);
51
52         return context;
53     }
54
55     default RequestContext createRequestContext(VNFOperation operation, String requestId, String vnfId,
56                                                 ActionLevel level, String payload) {
57         RequestContext reqContext = new RequestContext();
58         reqContext.setCommonHeader(getCommonHeader(requestId, "2.0.0", "originatorId"));
59         reqContext.setActionLevel(level);
60         reqContext.setAction(operation);
61         reqContext.setPayload(payload);
62         reqContext.setActionIdentifiers(getActionIdentifiers(vnfId, null, null));
63
64         return reqContext;
65     }
66
67     default ActionIdentifiers getActionIdentifiers(String vnfId, String vnfcId, String vserverId) {
68         ActionIdentifiers builder = new ActionIdentifiers();
69         builder.setVnfId(vnfId);
70         builder.setVnfcName(vnfcId);
71         builder.setvServerId(vserverId);
72         return builder;
73     }
74
75     default CommonHeader getCommonHeader(String requestId, String apiVer, String originatorId) {
76         CommonHeader builder = new CommonHeader();
77         builder.setRequestId(requestId);
78         builder.setApiVer(apiVer);
79         builder.setOriginatorId(originatorId);
80         builder.setTimestamp(new Date(System.currentTimeMillis()));
81         return builder;
82     }
83 }