Allow kwargs in get_timestamp

As a part of the scenario/manager.py stabilization tracked by
the below BP the patch adds kwargs argument to support
username parameter of get_remote_client() method.

Change-Id: I8e0da8b19b2b0b147b36c392fa4e161115325cd7
Implements: blueprint tempest-scenario-manager-stable
This commit is contained in:
Lukas Piwowarski 2020-10-30 10:09:18 +00:00
parent b439c974fa
commit 2c230eb21a
1 changed files with 12 additions and 2 deletions

View File

@ -848,15 +848,25 @@ class ScenarioTest(tempest.test.BaseTestCase):
return timestamp
def get_timestamp(self, ip_address, dev_name=None, mount_path='/mnt',
private_key=None, server=None):
private_key=None, server=None, username=None):
"""Returns timestamp
This wrapper utility does ssh and returns the timestamp.
:param ip_address: The floating IP or fixed IP of the remote server
:param dev_name: Name of the device that stores the timestamp
:param mount_path: Path which should be used as mount point for
dev_name
:param private_key: The SSH private key to use for authentication
:param server: Server dict, used for debugging purposes
:param username: Name of the Linux account on the remote server
"""
ssh_client = self.get_remote_client(ip_address,
private_key=private_key,
server=server)
server=server,
username=username)
if dev_name is not None:
ssh_client.mount(dev_name, mount_path)
timestamp = ssh_client.exec_command('sudo cat %s/timestamp'