summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLilywei123 <xiao-li.wei@hp.com>2015-01-06 17:44:21 +0800
committerLily Wei <xiao-li.wei@hp.com>2015-01-06 18:49:59 -0800
commitb0132891637a3a8f6b0bdf425e36551eae34ed1f (patch)
tree2a2b655677093f7d49b003bb6e5200e88ce2fb99
parentb73b9eb2a040a155e9f59d6da976fe2136532d44 (diff)
downloadtempest-lib-b0132891637a3a8f6b0bdf425e36551eae34ed1f.tar.gz
Update base.py to include python-openstackclient.
Change-Id: I8a213960e41fb1403a6f0e19068ffef178cbaccf
-rw-r--r--tempest_lib/cli/base.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tempest_lib/cli/base.py b/tempest_lib/cli/base.py
index a573fc4..95eb499 100644
--- a/tempest_lib/cli/base.py
+++ b/tempest_lib/cli/base.py
@@ -307,6 +307,25 @@ class CLIClient(object):
return self.cmd_with_auth(
'sahara', action, flags, params, fail_ok, merge_stderr)
+ def openstack(self, action, flags='', params='', fail_ok=False,
+ merge_stderr=False):
+ """Executes openstack command for the given action.
+
+ :param action: the cli command to run using openstack
+ :type action: string
+ :param flags: any optional cli flags to use
+ :type flags: string
+ :param params: any optional positional args to use
+ :type params: string
+ :param fail_ok: if True an exception is not raised when the
+ cli return code is non-zero
+ :type fail_ok: boolean
+ :param merge_stderr: if True the stderr buffer is merged into stdout
+ :type merge_stderr: boolean
+ """
+ return self.cmd_with_auth(
+ 'openstack', action, flags, params, fail_ok, merge_stderr)
+
def cmd_with_auth(self, cmd, action, flags='', params='',
fail_ok=False, merge_stderr=False):
"""Executes given command with auth attributes appended.