Change-Id: I640548858b5e2666c78ff5e1b2b2d0d8066a0ba6 Signed-off-by: Pawel Niedzwiecki <pawelx.niedzwiecki@intel.com> Signed-off-by: Pawel Kaminski <pawelx.kaminski@intel.com> Reviewed-on: https://review.gerrithub.io/416559 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com>
37 lines
1.1 KiB
Python
Executable File
37 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python3.5
|
|
import pexpect
|
|
import os
|
|
import sys
|
|
|
|
|
|
def execute_command(cmd, element=None, element_exists=False):
|
|
child.sendline(cmd)
|
|
child.expect("/>")
|
|
print("before: %s" % child.before.decode())
|
|
if "error response" in child.before.decode():
|
|
print("Error in cmd: %s" % cmd)
|
|
exit(1)
|
|
ls_tree = cmd.split(" ")[0]
|
|
if ls_tree and element:
|
|
child.sendline("ls %s" % ls_tree)
|
|
child.expect("/>")
|
|
print("child: %s" % child.before.decode())
|
|
if element_exists:
|
|
if element not in child.before.decode():
|
|
print("Element %s not in list" % element)
|
|
exit(1)
|
|
else:
|
|
if element in child.before.decode():
|
|
print("Element %s is in list" % element)
|
|
exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
|
|
child = pexpect.spawn(os.path.join(testdir, "../../scripts/spdkcli.py"))
|
|
child.expect(">")
|
|
child.sendline("cd /")
|
|
child.expect("/>")
|
|
|
|
execute_command(*sys.argv[1:])
|