Add junit coverage to RequestInfoBuilder class
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / node / FlowGenerator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * =============================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.appc.flow.controller.node;
24
25 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.ACTION_LEVEL;
26 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.PAYLOAD;
27 import static org.onap.appc.flow.controller.utils.FlowControllerConstants.REQUEST_ACTION;
28
29 import com.att.eelf.configuration.EELFLogger;
30 import com.att.eelf.configuration.EELFManager;
31 import java.util.ArrayList;
32 import java.util.List;
33 import java.util.Map;
34 import org.onap.appc.flow.controller.data.Response;
35 import org.onap.appc.flow.controller.data.ResponseAction;
36 import org.onap.appc.flow.controller.data.Transaction;
37 import org.onap.appc.flow.controller.data.Transactions;
38 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
39
40 public class FlowGenerator {
41
42   private static final EELFLogger log = EELFManager.getInstance().getLogger(FlowGenerator.class);
43
44   public Transactions createSingleStepModel(Map<String, String> inParams, SvcLogicContext ctx) {
45
46     log.debug("Starting generating single Step flow");
47     log.debug("Data in context" + ctx.getAttributeKeySet());
48
49     Transactions transactions = new Transactions();
50     transactions.setTransactions(getTransactions(ctx));
51
52     log.debug("FlowGenerator.createSingleStepModel Sequence String" + transactions.toString());
53
54     return transactions;
55   }
56
57   private List<Transaction> getTransactions(SvcLogicContext ctx) {
58     Transaction singleTransaction = new Transaction();
59     singleTransaction.setTransactionId(1);
60     singleTransaction.setAction(ctx.getAttribute(REQUEST_ACTION));
61     //Need to discuss how to get action level if not in request
62     singleTransaction.setPayload(ctx.getAttribute(PAYLOAD));
63     singleTransaction.setActionLevel(ctx.getAttribute(ACTION_LEVEL));
64
65     singleTransaction.setResponses(getResponses());
66
67     List<Transaction> transactionList = new ArrayList<>();
68     transactionList.add(singleTransaction);
69
70     return transactionList;
71   }
72
73   private List<Response> getResponses() {
74
75     ResponseAction ra = new ResponseAction();
76     ra.setStop(true);
77
78     Response response = new Response();
79     response.setResponseAction(ra);
80
81     List<Response> responseList = new ArrayList<>();
82     responseList.add(response);
83
84     return responseList;
85   }
86 }