Initial add of appc-directed-graph bundles
[appc.git] / appc-directed-graph / appc-dgraph / provider / src / test / java / org / openecomp / appc / dg / mock / instance / MockConfigureNodeExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.appc.dg.mock.instance;
22
23
24 import java.util.Map;
25
26 import org.openecomp.sdnc.sli.SvcLogicAdaptor;
27 import org.openecomp.sdnc.sli.SvcLogicContext;
28
29 public class MockConfigureNodeExecutor implements SvcLogicAdaptor{
30
31         @Override
32         public ConfigStatus configure(String key, Map<String, String> parameters, SvcLogicContext ctx) {
33                 
34                 
35                 if ( "get".equals(key)) {
36                         
37                         if ("135.1.1.1".equals(parameters.get("host") )) {
38                                         String fullPathFileName = parameters.get("fullPathFileName");
39                                         if (("SuccessFile").equals(fullPathFileName ) )
40                                                 return ConfigStatus.FAILURE;
41                                         if (("FailureFile").equals(fullPathFileName ) )
42                                                 return ConfigStatus.SUCCESS;
43                                         if (("FailureLogFile").equals(fullPathFileName ) )
44                                                 return ConfigStatus.SUCCESS;
45                         }
46                         else if ("135.2.2.2".equals(parameters.get("host")) ) {
47                                 String fullPathFileName = parameters.get("fullPathFileName");
48                                 if (("SuccessFile").equals(fullPathFileName ) )
49                                         return ConfigStatus.FAILURE;
50                                 if (("FailureFile").equals(fullPathFileName ) )
51                                         return ConfigStatus.FAILURE;
52                                 
53                         }
54                         
55                         return ConfigStatus.SUCCESS;
56                 }
57                 else {
58                         ctx.setAttribute("Status", "Success");
59                 
60                         return ConfigStatus.SUCCESS;
61                 }
62         }
63
64         @Override
65         public ConfigStatus activate(String key, SvcLogicContext ctx) {
66                 // TODO Auto-generated method stub
67                 return null;
68         }
69
70         @Override
71         public ConfigStatus deactivate(String key, SvcLogicContext ctx) {
72                 // TODO Auto-generated method stub
73                 return null;
74         }
75
76
77
78 }