First part of onap rename
[appc.git] / appc-dg / appc-dg-shared / appc-dg-netconf / src / test / java / org / openecomp / appc / dg / netconf / impl / DAOServiceMock.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.dg.netconf.impl;
26
27 import java.util.HashMap;
28
29 import org.onap.appc.adapter.netconf.ConnectionDetails;
30 import org.onap.appc.adapter.netconf.NetconfConnectionDetails;
31 import org.onap.appc.adapter.netconf.NetconfDataAccessService;
32 import org.onap.appc.adapter.netconf.exception.DataAccessException;
33 import org.onap.ccsdk.sli.core.dblib.DbLibService;
34
35 class DAOServiceMock implements NetconfDataAccessService {
36
37     private String configFile;
38     private ConnectionDetails connection;
39     private HashMap<String, String> backupConf;
40
41     @Override
42     public void setSchema(String schema) {
43     }
44
45     @Override
46     public void setDbLibService(DbLibService dbLibService) {
47     }
48
49     void setConfigFile(String configFile) {
50         this.configFile = configFile;
51     }
52
53     public HashMap<String, String> getBackupConf() {
54         return backupConf;
55     }
56
57     public void setConnection(ConnectionDetails connection) {
58         this.connection = connection;
59     }
60
61     @Override
62     public String retrieveConfigFileName(String xmlID) throws DataAccessException {
63         if (!xmlID.equals("wrong")) {
64             return configFile;
65         } else {
66             throw new DataAccessException();
67         }
68     }
69
70     @Override
71     public boolean retrieveConnectionDetails(String vnfType, ConnectionDetails connectionDetails) throws
72                     DataAccessException {
73         return false;
74     }
75
76     @Override
77     public boolean retrieveNetconfConnectionDetails(String vnfType, NetconfConnectionDetails connectionDetails) throws
78                     DataAccessException {
79         if (vnfType.equals("VNF")) {
80             connectionDetails.setHost(connection.getHost());
81             connectionDetails.setPassword(connection.getPassword());
82             connectionDetails.setPort(connection.getPort());
83             connectionDetails.setUsername(connection.getUsername());
84
85             return true;
86         } else {
87             return false;
88         }
89     }
90
91     @Override
92     public boolean logDeviceInteraction(String instanceId, String requestId, String creationDate, String logText) throws
93                     DataAccessException {
94         this.backupConf = new HashMap<>();
95         backupConf.put("creationDate", creationDate);
96         backupConf.put("logText", logText);
97         return true;
98     }
99
100 }