1 # Copyright 2013: Mirantis Inc.
4 # Licensed under the Apache License, Version 2.0 (the "License"); you may
5 # not use this file except in compliance with the License. You may obtain
6 # a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 # License for the specific language governing permissions and limitations
19 from io import StringIO
20 from itertools import count
23 from oslo_utils import encodeutils
25 from yardstick.common import exceptions
26 from yardstick import ssh
27 from yardstick.ssh import SSH
28 from yardstick.ssh import AutoConnectSSH
31 class FakeParamikoException(Exception):
35 class SSHTestCase(unittest.TestCase):
36 """Test all small SSH methods."""
39 super(SSHTestCase, self).setUp()
40 self.test_client = ssh.SSH("root", "example.net")
42 @mock.patch("yardstick.ssh.SSH._get_pkey")
43 def test_construct(self, mock_ssh__get_pkey):
44 mock_ssh__get_pkey.return_value = "pkey"
45 test_ssh = ssh.SSH("root", "example.net", port=33, pkey="key",
46 key_filename="kf", password="secret")
47 mock_ssh__get_pkey.assert_called_once_with("key")
48 self.assertEqual("root", test_ssh.user)
49 self.assertEqual("example.net", test_ssh.host)
50 self.assertEqual(33, test_ssh.port)
51 self.assertEqual("pkey", test_ssh.pkey)
52 self.assertEqual("kf", test_ssh.key_filename)
53 self.assertEqual("secret", test_ssh.password)
55 @mock.patch("yardstick.ssh.SSH._get_pkey")
56 def test_ssh_from_node(self, mock_ssh__get_pkey):
57 mock_ssh__get_pkey.return_value = "pkey"
59 "user": "root", "ip": "example.net", "ssh_port": 33,
60 "key_filename": "kf", "password": "secret"
62 test_ssh = ssh.SSH.from_node(node)
63 self.assertEqual("root", test_ssh.user)
64 self.assertEqual("example.net", test_ssh.host)
65 self.assertEqual(33, test_ssh.port)
66 self.assertEqual("kf", test_ssh.key_filename)
67 self.assertEqual("secret", test_ssh.password)
69 @mock.patch("yardstick.ssh.SSH._get_pkey")
70 def test_ssh_from_node_password_default(self, mock_ssh__get_pkey):
71 mock_ssh__get_pkey.return_value = "pkey"
73 "user": "root", "ip": "example.net", "ssh_port": 33,
76 test_ssh = ssh.SSH.from_node(node)
77 self.assertEqual("root", test_ssh.user)
78 self.assertEqual("example.net", test_ssh.host)
79 self.assertEqual(33, test_ssh.port)
80 self.assertEqual("kf", test_ssh.key_filename)
81 self.assertIsNone(test_ssh.password)
83 @mock.patch("yardstick.ssh.SSH._get_pkey")
84 def test_ssh_from_node_ssh_port_default(self, mock_ssh__get_pkey):
85 mock_ssh__get_pkey.return_value = "pkey"
87 "user": "root", "ip": "example.net",
88 "key_filename": "kf", "password": "secret"
90 test_ssh = ssh.SSH.from_node(node)
91 self.assertEqual("root", test_ssh.user)
92 self.assertEqual("example.net", test_ssh.host)
93 self.assertEqual(ssh.SSH.SSH_PORT, test_ssh.port)
94 self.assertEqual("kf", test_ssh.key_filename)
95 self.assertEqual("secret", test_ssh.password)
97 @mock.patch("yardstick.ssh.SSH._get_pkey")
98 def test_ssh_from_node_key_filename_default(self, mock_ssh__get_pkey):
99 mock_ssh__get_pkey.return_value = "pkey"
101 "user": "root", "ip": "example.net", "ssh_port": 33,
104 test_ssh = ssh.SSH.from_node(node)
105 self.assertEqual("root", test_ssh.user)
106 self.assertEqual("example.net", test_ssh.host)
107 self.assertEqual(33, test_ssh.port)
108 self.assertIsNone(test_ssh.key_filename)
109 self.assertEqual("secret", test_ssh.password)
111 def test_construct_default(self):
112 self.assertEqual("root", self.test_client.user)
113 self.assertEqual("example.net", self.test_client.host)
114 self.assertEqual(22, self.test_client.port)
115 self.assertIsNone(self.test_client.pkey)
116 self.assertIsNone(self.test_client.key_filename)
117 self.assertIsNone(self.test_client.password)
119 @mock.patch("yardstick.ssh.paramiko")
120 def test__get_pkey_invalid(self, mock_paramiko):
121 mock_paramiko.SSHException = FakeParamikoException
122 rsa = mock_paramiko.rsakey.RSAKey
123 dss = mock_paramiko.dsskey.DSSKey
124 rsa.from_private_key.side_effect = mock_paramiko.SSHException
125 dss.from_private_key.side_effect = mock_paramiko.SSHException
126 self.assertRaises(exceptions.SSHError, self.test_client._get_pkey, "key")
128 @mock.patch("yardstick.ssh.six.moves.StringIO")
129 @mock.patch("yardstick.ssh.paramiko")
130 def test__get_pkey_dss(self, mock_paramiko, mock_string_io):
131 mock_paramiko.SSHException = FakeParamikoException
132 mock_string_io.return_value = "string_key"
133 mock_paramiko.dsskey.DSSKey.from_private_key.return_value = "dss_key"
134 rsa = mock_paramiko.rsakey.RSAKey
135 rsa.from_private_key.side_effect = mock_paramiko.SSHException
136 key = self.test_client._get_pkey("key")
137 dss_calls = mock_paramiko.dsskey.DSSKey.from_private_key.mock_calls
138 self.assertEqual([mock.call("string_key")], dss_calls)
139 self.assertEqual(key, "dss_key")
140 mock_string_io.assert_called_once_with("key")
142 @mock.patch("yardstick.ssh.six.moves.StringIO")
143 @mock.patch("yardstick.ssh.paramiko")
144 def test__get_pkey_rsa(self, mock_paramiko, mock_string_io):
145 mock_paramiko.SSHException = FakeParamikoException
146 mock_string_io.return_value = "string_key"
147 mock_paramiko.rsakey.RSAKey.from_private_key.return_value = "rsa_key"
148 dss = mock_paramiko.dsskey.DSSKey
149 dss.from_private_key.side_effect = mock_paramiko.SSHException
150 key = self.test_client._get_pkey("key")
151 rsa_calls = mock_paramiko.rsakey.RSAKey.from_private_key.mock_calls
152 self.assertEqual([mock.call("string_key")], rsa_calls)
153 self.assertEqual(key, "rsa_key")
154 mock_string_io.assert_called_once_with("key")
156 @mock.patch("yardstick.ssh.SSH._get_pkey")
157 @mock.patch("yardstick.ssh.paramiko")
158 def test__get_client(self, mock_paramiko, mock_ssh__get_pkey):
159 mock_ssh__get_pkey.return_value = "key"
160 fake_client = mock.Mock()
161 mock_paramiko.SSHClient.return_value = fake_client
162 mock_paramiko.AutoAddPolicy.return_value = "autoadd"
164 test_ssh = ssh.SSH("admin", "example.net", pkey="key")
165 client = test_ssh._get_client()
167 self.assertEqual(fake_client, client)
169 mock.call.set_missing_host_key_policy("autoadd"),
170 mock.call.connect("example.net", username="admin",
171 port=22, pkey="key", key_filename=None,
173 allow_agent=False, look_for_keys=False,
176 self.assertEqual(client_calls, client.mock_calls)
178 @mock.patch("yardstick.ssh.SSH._get_pkey")
179 @mock.patch("yardstick.ssh.paramiko")
180 def test__get_client_with_exception(self, mock_paramiko, mock_ssh__get_pkey):
181 class MyError(Exception):
184 mock_ssh__get_pkey.return_value = "pkey"
185 fake_client = mock.Mock()
186 fake_client.connect.side_effect = MyError
187 fake_client.set_missing_host_key_policy.return_value = None
188 mock_paramiko.SSHClient.return_value = fake_client
189 mock_paramiko.AutoAddPolicy.return_value = "autoadd"
191 test_ssh = ssh.SSH("admin", "example.net", pkey="key")
193 with self.assertRaises(exceptions.SSHError) as raised:
194 test_ssh._get_client()
196 mock_paramiko.SSHClient.assert_called_once()
197 mock_paramiko.AutoAddPolicy.assert_called_once()
198 fake_client.set_missing_host_key_policy.assert_called_once()
199 fake_client.connect.assert_called_once()
200 exc_str = str(raised.exception)
201 self.assertIn('raised during connect', exc_str)
202 self.assertIn('MyError', exc_str)
204 @mock.patch("yardstick.ssh.SSH._get_pkey")
205 @mock.patch("yardstick.ssh.paramiko")
206 def test_copy(self, mock_paramiko, mock_ssh__get_pkey):
207 mock_ssh__get_pkey.return_value = "pkey"
208 fake_client = mock.Mock()
209 fake_client.connect.side_effect = IOError
210 mock_paramiko.SSHClient.return_value = fake_client
211 mock_paramiko.AutoAddPolicy.return_value = "autoadd"
213 test_ssh = ssh.SSH("admin", "example.net", pkey="key")
214 result = test_ssh.copy()
215 self.assertIsNot(test_ssh, result)
217 def test_close(self):
218 with mock.patch.object(self.test_client, "_client") as m_client:
219 self.test_client.close()
220 m_client.close.assert_called_once_with()
221 self.assertFalse(self.test_client._client)
223 @mock.patch("yardstick.ssh.six.moves.StringIO")
224 def test_execute(self, mock_string_io):
225 mock_string_io.side_effect = stdio = [mock.Mock(), mock.Mock()]
226 stdio[0].read.return_value = "stdout fake data"
227 stdio[1].read.return_value = "stderr fake data"
228 with mock.patch.object(self.test_client, "run", return_value=0)\
230 status, stdout, stderr = self.test_client.execute(
234 mock_run.assert_called_once_with(
235 "cmd", stdin="fake_stdin", stdout=stdio[0],
236 stderr=stdio[1], timeout=43, raise_on_error=False)
237 self.assertEqual(0, status)
238 self.assertEqual("stdout fake data", stdout)
239 self.assertEqual("stderr fake data", stderr)
241 @mock.patch("yardstick.ssh.six.moves.StringIO")
242 def test_execute_raise_on_error_passed(self, mock_string_io):
243 mock_string_io.side_effect = stdio = [mock.Mock(), mock.Mock()]
244 stdio[0].read.return_value = "stdout fake data"
245 stdio[1].read.return_value = "stderr fake data"
246 with mock.patch.object(self.test_client, "run", return_value=0) \
248 status, stdout, stderr = self.test_client.execute(
253 mock_run.assert_called_once_with(
254 "cmd", stdin="fake_stdin", stdout=stdio[0],
255 stderr=stdio[1], timeout=43, raise_on_error=True)
256 self.assertEqual(0, status)
257 self.assertEqual("stdout fake data", stdout)
258 self.assertEqual("stderr fake data", stderr)
260 @mock.patch("yardstick.ssh.time")
261 def test_wait_timeout(self, mock_time):
262 mock_time.time.side_effect = [1, 50, 150]
263 self.test_client.execute = mock.Mock(side_effect=[exceptions.SSHError,
266 self.assertRaises(exceptions.SSHTimeout, self.test_client.wait)
267 self.assertEqual([mock.call("uname")] * 2,
268 self.test_client.execute.mock_calls)
270 @mock.patch("yardstick.ssh.time")
271 def test_wait(self, mock_time):
272 mock_time.time.side_effect = [1, 50, 100]
273 self.test_client.execute = mock.Mock(side_effect=[exceptions.SSHError,
276 self.test_client.wait()
277 self.assertEqual([mock.call("uname")] * 3,
278 self.test_client.execute.mock_calls)
280 @mock.patch("yardstick.ssh.paramiko")
281 def test_send_command(self, _):
282 paramiko_sshclient = self.test_client._get_client()
283 with mock.patch.object(paramiko_sshclient, "exec_command") \
284 as mock_paramiko_exec_command:
285 self.test_client.send_command('cmd')
286 mock_paramiko_exec_command.assert_called_once_with('cmd',
290 class SSHRunTestCase(unittest.TestCase):
291 """Test SSH.run method in different aspects.
293 Also tested method "execute".
297 super(SSHRunTestCase, self).setUp()
299 self.fake_client = mock.Mock()
300 self.fake_session = mock.Mock()
301 self.fake_transport = mock.Mock()
303 self.fake_transport.open_session.return_value = self.fake_session
304 self.fake_client.get_transport.return_value = self.fake_transport
306 self.fake_session.recv_ready.return_value = False
307 self.fake_session.recv_stderr_ready.return_value = False
308 self.fake_session.send_ready.return_value = False
309 self.fake_session.exit_status_ready.return_value = True
310 self.fake_session.recv_exit_status.return_value = 0
312 self.test_client = ssh.SSH("admin", "example.net")
313 self.test_client._get_client = mock.Mock(return_value=self.fake_client)
315 @mock.patch("yardstick.ssh.select")
316 def test_execute(self, mock_select):
317 mock_select.select.return_value = ([], [], [])
318 self.fake_session.recv_ready.side_effect = [1, 0, 0]
319 self.fake_session.recv_stderr_ready.side_effect = [1, 0]
320 self.fake_session.recv.return_value = "ok"
321 self.fake_session.recv_stderr.return_value = "error"
322 self.fake_session.exit_status_ready.return_value = 1
323 self.fake_session.recv_exit_status.return_value = 127
324 self.assertEqual((127, "ok", "error"), self.test_client.execute("cmd"))
325 self.fake_session.exec_command.assert_called_once_with("cmd")
327 @mock.patch("yardstick.ssh.select")
328 def test_execute_args(self, mock_select):
329 mock_select.select.return_value = ([], [], [])
330 self.fake_session.recv_ready.side_effect = [1, 0, 0]
331 self.fake_session.recv_stderr_ready.side_effect = [1, 0]
332 self.fake_session.recv.return_value = "ok"
333 self.fake_session.recv_stderr.return_value = "error"
334 self.fake_session.exit_status_ready.return_value = 1
335 self.fake_session.recv_exit_status.return_value = 127
337 result = self.test_client.execute("cmd arg1 'arg2 with space'")
338 self.assertEqual((127, "ok", "error"), result)
339 self.fake_session.exec_command.assert_called_once_with(
340 "cmd arg1 'arg2 with space'")
342 @mock.patch("yardstick.ssh.select")
343 def test_run(self, mock_select):
344 mock_select.select.return_value = ([], [], [])
345 self.assertEqual(0, self.test_client.run("cmd"))
347 @mock.patch("yardstick.ssh.select")
348 def test_run_nonzero_status(self, mock_select):
349 mock_select.select.return_value = ([], [], [])
350 self.fake_session.recv_exit_status.return_value = 1
351 self.assertRaises(exceptions.SSHError, self.test_client.run, "cmd")
352 self.assertEqual(1, self.test_client.run("cmd", raise_on_error=False))
354 @mock.patch("yardstick.ssh.select")
355 def test_run_stdout(self, mock_select):
356 mock_select.select.return_value = ([], [], [])
357 self.fake_session.recv_ready.side_effect = [True, True, False]
358 self.fake_session.recv.side_effect = ["ok1", "ok2"]
360 self.test_client.run("cmd", stdout=stdout)
361 self.assertEqual([mock.call("ok1"), mock.call("ok2")],
362 stdout.write.mock_calls)
364 @mock.patch("yardstick.ssh.select")
365 def test_run_stderr(self, mock_select):
366 mock_select.select.return_value = ([], [], [])
367 self.fake_session.recv_stderr_ready.side_effect = [True, False]
368 self.fake_session.recv_stderr.return_value = "error"
370 self.test_client.run("cmd", stderr=stderr)
371 stderr.write.assert_called_once_with("error")
373 @mock.patch("yardstick.ssh.select")
374 def test_run_stdin(self, mock_select):
375 """Test run method with stdin.
377 Third send call was called with "e2" because only 3 bytes was sent
378 by second call. So remainig 2 bytes of "line2" was sent by third call.
380 mock_select.select.return_value = ([], [], [])
381 self.fake_session.exit_status_ready.side_effect = [0, 0, 0, True]
382 self.fake_session.send_ready.return_value = True
383 self.fake_session.send.side_effect = [5, 3, 2]
384 fake_stdin = mock.Mock()
385 fake_stdin.read.side_effect = ["line1", "line2", ""]
386 fake_stdin.closed = False
389 fake_stdin.closed = True
390 fake_stdin.close = mock.Mock(side_effect=close)
391 self.test_client.run("cmd", stdin=fake_stdin)
393 send_calls = [call(encodeutils.safe_encode("line1", "utf-8")),
394 call(encodeutils.safe_encode("line2", "utf-8")),
395 call(encodeutils.safe_encode("e2", "utf-8"))]
396 self.assertEqual(send_calls, self.fake_session.send.mock_calls)
398 @mock.patch("yardstick.ssh.select")
399 def test_run_stdin_keep_open(self, mock_select):
400 """Test run method with stdin.
402 Third send call was called with "e2" because only 3 bytes was sent
403 by second call. So remainig 2 bytes of "line2" was sent by third call.
405 mock_select.select.return_value = ([], [], [])
406 self.fake_session.exit_status_ready.side_effect = [0, 0, 0, True]
407 self.fake_session.send_ready.return_value = True
408 self.fake_session.send.side_effect = len
409 fake_stdin = StringIO(u"line1\nline2\n")
410 self.test_client.run("cmd", stdin=fake_stdin, keep_stdin_open=True)
412 send_calls = [call(encodeutils.safe_encode("line1\nline2\n", "utf-8"))]
413 self.assertEqual(send_calls, self.fake_session.send.mock_calls)
415 @mock.patch("yardstick.ssh.select")
416 def test_run_select_error(self, mock_select):
417 self.fake_session.exit_status_ready.return_value = False
418 mock_select.select.return_value = ([], [], [True])
419 self.assertRaises(exceptions.SSHError, self.test_client.run, "cmd")
421 @mock.patch("yardstick.ssh.time")
422 @mock.patch("yardstick.ssh.select")
423 def test_run_timemout(self, mock_select, mock_time):
424 mock_time.time.side_effect = [1, 3700]
425 mock_select.select.return_value = ([], [], [])
426 self.fake_session.exit_status_ready.return_value = False
427 self.assertRaises(exceptions.SSHTimeout, self.test_client.run, "cmd")
429 @mock.patch("yardstick.ssh.open", create=True)
430 def test__put_file_shell(self, mock_open):
431 with mock.patch.object(self.test_client, "run") as run_mock:
432 self.test_client._put_file_shell("localfile", "remotefile", 0o42)
433 run_mock.assert_called_once_with(
434 'cat > "remotefile"&& chmod -- 042 "remotefile"',
435 stdin=mock_open.return_value.__enter__.return_value)
437 @mock.patch("yardstick.ssh.open", create=True)
438 def test__put_file_shell_space(self, mock_open):
439 with mock.patch.object(self.test_client, "run") as run_mock:
440 self.test_client._put_file_shell("localfile",
441 "filename with space", 0o42)
442 run_mock.assert_called_once_with(
443 'cat > "filename with space"&& chmod -- 042 "filename with '
445 stdin=mock_open.return_value.__enter__.return_value)
447 @mock.patch("yardstick.ssh.open", create=True)
448 def test__put_file_shell_tilde(self, mock_open):
449 with mock.patch.object(self.test_client, "run") as run_mock:
450 self.test_client._put_file_shell("localfile", "~/remotefile", 0o42)
451 run_mock.assert_called_once_with(
452 'cat > ~/"remotefile"&& chmod -- 042 ~/"remotefile"',
453 stdin=mock_open.return_value.__enter__.return_value)
455 @mock.patch("yardstick.ssh.open", create=True)
456 def test__put_file_shell_tilde_spaces(self, mock_open):
457 with mock.patch.object(self.test_client, "run") as run_mock:
458 self.test_client._put_file_shell("localfile", "~/file with space",
460 run_mock.assert_called_once_with(
461 'cat > ~/"file with space"&& chmod -- 042 ~/"file with space"',
462 stdin=mock_open.return_value.__enter__.return_value)
464 @mock.patch("yardstick.ssh.os.stat")
465 def test__put_file_sftp(self, mock_stat):
466 sftp = self.fake_client.open_sftp.return_value = mock.MagicMock()
467 sftp.__enter__.return_value = sftp
469 mock_stat.return_value = os.stat_result([0o753] + [0] * 9)
471 self.test_client._put_file_sftp("localfile", "remotefile")
473 sftp.put.assert_called_once_with("localfile", "remotefile")
474 mock_stat.assert_any_call("localfile")
475 sftp.chmod.assert_any_call("remotefile", 0o753)
476 sftp.__exit__.assert_called_once_with(None, None, None)
478 def test__put_file_sftp_mode(self):
479 sftp = self.fake_client.open_sftp.return_value = mock.MagicMock()
480 sftp.__enter__.return_value = sftp
482 self.test_client._put_file_sftp("localfile", "remotefile", mode=0o753)
484 sftp.put.assert_called_once_with("localfile", "remotefile")
485 sftp.chmod.assert_called_once_with("remotefile", 0o753)
486 sftp.__exit__.assert_called_once_with(None, None, None)
488 def test_put_file_SSHException(self):
489 exc = ssh.paramiko.SSHException
490 self.test_client._put_file_sftp = mock.Mock(side_effect=exc())
491 self.test_client._put_file_shell = mock.Mock()
493 self.test_client.put_file("foo", "bar", 42)
494 self.test_client._put_file_sftp.assert_called_once_with("foo", "bar",
496 self.test_client._put_file_shell.assert_called_once_with("foo", "bar",
499 def test_put_file_socket_error(self):
501 self.test_client._put_file_sftp = mock.Mock(side_effect=exc())
502 self.test_client._put_file_shell = mock.Mock()
504 self.test_client.put_file("foo", "bar", 42)
505 self.test_client._put_file_sftp.assert_called_once_with("foo", "bar",
507 self.test_client._put_file_shell.assert_called_once_with("foo", "bar",
510 @mock.patch("yardstick.ssh.os.stat")
511 def test_put_file_obj_with_mode(self, mock_stat):
512 sftp = self.fake_client.open_sftp.return_value = mock.MagicMock()
513 sftp.__enter__.return_value = sftp
515 mock_stat.return_value = os.stat_result([0o753] + [0] * 9)
517 self.test_client.put_file_obj("localfile", "remotefile", 'my_mode')
519 sftp.__enter__.assert_called_once()
520 sftp.putfo.assert_called_once_with("localfile", "remotefile")
521 sftp.chmod.assert_called_once_with("remotefile", 'my_mode')
522 sftp.__exit__.assert_called_once_with(None, None, None)
525 class TestAutoConnectSSH(unittest.TestCase):
527 def test__connect_loop(self):
528 auto_connect_ssh = AutoConnectSSH('user1', 'host1', wait=0)
529 auto_connect_ssh._get_client = mock__get_client = mock.Mock()
531 auto_connect_ssh._connect()
532 mock__get_client.assert_called_once()
534 def test___init___negative(self):
535 with self.assertRaises(TypeError):
536 AutoConnectSSH('user1', 'host1', wait=['wait'])
538 with self.assertRaises(ValueError):
539 AutoConnectSSH('user1', 'host1', wait='wait')
541 @mock.patch('yardstick.ssh.time')
542 def test__connect_loop_ssh_error(self, mock_time):
543 mock_time.time.side_effect = count()
545 auto_connect_ssh = AutoConnectSSH('user1', 'host1', wait=10)
546 auto_connect_ssh._get_client = mock__get_client = mock.Mock()
547 mock__get_client.side_effect = exceptions.SSHError
549 with self.assertRaises(exceptions.SSHTimeout):
550 auto_connect_ssh._connect()
552 self.assertEqual(mock_time.time.call_count, 12)
554 def test_get_file_obj(self):
555 auto_connect_ssh = AutoConnectSSH('user1', 'host1', wait=10)
556 auto_connect_ssh._get_client = mock__get_client = mock.Mock()
557 mock_client = mock__get_client()
558 mock_open_sftp = mock_client.open_sftp()
559 mock_sftp = mock.Mock()
560 mock_open_sftp.__enter__ = mock.Mock(return_value=mock_sftp)
561 mock_open_sftp.__exit__ = mock.Mock()
563 auto_connect_ssh.get_file_obj('remote/path', mock.Mock())
565 mock_sftp.getfo.assert_called_once()
567 def test__make_dict(self):
568 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
573 'port': SSH.SSH_PORT,
575 'key_filename': None,
578 'wait': AutoConnectSSH.DEFAULT_WAIT_TIMEOUT,
580 result = auto_connect_ssh._make_dict()
581 self.assertDictEqual(result, expected)
583 def test_get_class(self):
584 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
586 self.assertEqual(auto_connect_ssh.get_class(), AutoConnectSSH)
588 def test_drop_connection(self):
589 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
590 self.assertFalse(auto_connect_ssh._client)
591 auto_connect_ssh._client = True
592 auto_connect_ssh.drop_connection()
593 self.assertFalse(auto_connect_ssh._client)
595 @mock.patch('yardstick.ssh.SCPClient')
596 def test_put(self, mock_scp_client_type):
597 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
598 auto_connect_ssh._client = mock.Mock()
600 auto_connect_ssh.put('a', 'z')
601 with mock_scp_client_type() as mock_scp_client:
602 mock_scp_client.put.assert_called_once()
604 @mock.patch('yardstick.ssh.SCPClient')
605 def test_get(self, mock_scp_client_type):
606 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
607 auto_connect_ssh._client = mock.Mock()
609 auto_connect_ssh.get('a', 'z')
610 with mock_scp_client_type() as mock_scp_client:
611 mock_scp_client.get.assert_called_once()
613 def test_put_file(self):
614 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
615 auto_connect_ssh._client = mock.Mock()
616 auto_connect_ssh._put_file_sftp = mock_put_sftp = mock.Mock()
618 auto_connect_ssh.put_file('a', 'b')
619 mock_put_sftp.assert_called_once()
621 def test_execute(self):
622 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
623 auto_connect_ssh._client = mock.Mock()
624 auto_connect_ssh.run = mock.Mock(return_value=0)
625 exit_code, _, _ = auto_connect_ssh.execute('')
626 self.assertEqual(exit_code, 0)
628 def _mock_run(self, *args, **kwargs):
630 if kwargs.get('raise_on_error'):
631 raise exceptions.SSHError(error_msg='Command error')
635 def test_execute_command_error(self):
636 auto_connect_ssh = AutoConnectSSH('user1', 'host1')
637 auto_connect_ssh._client = mock.Mock()
638 auto_connect_ssh.run = mock.Mock(side_effect=self._mock_run)
639 self.assertRaises(exceptions.SSHError, auto_connect_ssh.execute, 'ls',
641 exit_code, _, _ = auto_connect_ssh.execute('ls')
642 self.assertNotEqual(exit_code, 0)