summaryrefslogtreecommitdiffstats
path: root/src/spdk/test/spdkcli/spdkcli_job.py
blob: ce6530a90a968269dd146869c68e93e88b5fbf2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
import pexpect
import os
import sys
import re


def execute_command(cmd, element=None, element_exists=False):
    child.sendline(cmd)
    child.expect("/>")
    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("/>")
        if element_exists:
            if element not in child.before.decode():
                print("Element %s not in list:\n%s" % (element, child.before.decode()))
                exit(1)
        else:
            if element in child.before.decode():
                print("Element %s is in list:\n%s" % (element, child.before.decode()))
                exit(1)


if __name__ == "__main__":
    socket = "/var/tmp/spdk.sock"
    port = None
    if len(sys.argv) == 3:
        socket = sys.argv[2]
    elif len(sys.argv) == 4:
        port = sys.argv[3]
    testdir = os.path.dirname(os.path.realpath(sys.argv[0]))

    if port is None:
        child = pexpect.spawn(os.path.join(testdir, "../../scripts/spdkcli.py") + " -s %s" % socket)
    else:
        child = pexpect.spawn(os.path.join(testdir, "../../scripts/spdkcli.py") + " -s %s -p %s" % (socket, port))
    child.expect(">")
    child.sendline("cd /")
    child.expect("/>")

    cmd_lines = sys.argv[1].strip().split("\n")
    for line in cmd_lines:
        data = line.strip()
        p = re.compile('\'(.*?)\'')
        cmd = p.findall(data)
        if data[-1] != "\'":
            cmd.append(data.rsplit(" ", 1)[1].strip())
            if cmd[-1] == "False":
                cmd[-1] = False
            else:
                cmd[-1] = True
        else:
            cmd.append(False)
        print("Executing command: %s" % cmd)
        execute_command(*cmd[0:3])