Merge of new rebased code
[appc.git] / appc-adapters / appc-ssh-adapter / appc-ssh-adapter-tests / src / main / java / org / openecomp / appc / adapter / ssh / SshAdapterMock.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.adapter.ssh;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 public class SshAdapterMock implements SshAdapter {
28
29         private List<SshConnectionMock> connectionMocks = new ArrayList<>();
30
31         private int returnStatus;
32         private String returnStdout;
33         private String returnStderr;
34
35         @Override
36         public SshConnection getConnection(String host, int port, String username, String password) {
37                 SshConnectionMock sshConnectionMock = new SshConnectionMock(host, port, username, password);
38                 sshConnectionMock.setReturnStatus(returnStatus);
39                 sshConnectionMock.setReturnStdout(returnStdout);
40                 sshConnectionMock.setReturnStderr(returnStderr);
41                 connectionMocks.add(sshConnectionMock);
42                 return sshConnectionMock;
43         }
44
45         public List<SshConnectionMock> getConnectionMocks() {
46                 return connectionMocks;
47         }
48
49         public int getReturnStatus() {
50                 return returnStatus;
51         }
52
53         public void setReturnStatus(int returnStatus) {
54                 this.returnStatus = returnStatus;
55         }
56
57         public String getReturnStdout() {
58                 return returnStdout;
59         }
60
61         public void setReturnStdout(String returnStdout) {
62                 this.returnStdout = returnStdout;
63         }
64
65         public String getReturnStderr() {
66                 return returnStderr;
67         }
68
69         public void setReturnStderr(String returnStderr) {
70                 this.returnStderr = returnStderr;
71         }
72 }