Add value of the arguments
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / executor / node / MockSvcLogicResource.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2018 IBM
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  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.appc.flow.executor.node;
23
24 import java.util.Map;
25
26 import org.onap.appc.flow.controller.utils.FlowControllerConstants;
27 import org.onap.ccsdk.sli.adaptors.resource.sql.SqlResource;
28 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
29 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
30 import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus;
31
32 public class MockSvcLogicResource extends SqlResource {
33
34     @Override
35     public QueryStatus query(String resource, boolean localOnly, String select, String key, String prefix,
36             String orderBy, SvcLogicContext ctx) throws SvcLogicException {
37         ctx.setAttribute("artifact-content", "TestArtifactContent");
38         ctx.setAttribute(FlowControllerConstants.EXECUTION_TYPE,"TestRPC");
39         ctx.setAttribute(FlowControllerConstants.EXECUTTION_MODULE,"TestModule");
40         ctx.setAttribute(FlowControllerConstants.EXECUTION_RPC,"TestRPC");
41         ctx.setAttribute("count(protocol)", "1");
42         ctx.setAttribute("protocol", "TestProtocol");
43         ctx.setAttribute("SEQUENCE_TYPE", "TestSequence");
44         return QueryStatus.SUCCESS;
45     }
46
47
48     @Override
49     public QueryStatus save(String resource, boolean force, boolean localOnly, String key, Map<String, String> parms,
50             String prefix, SvcLogicContext ctx) throws SvcLogicException {
51         return QueryStatus.SUCCESS;
52     }
53 }