summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/rook/ci/tests/features/steps/utils.py
blob: 41a71d0fb1fc94b9aa1f9243daadaf1600f82132 (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
import subprocess

ROOK_CEPH_COMMAND = "minikube kubectl -- -n rook-ceph exec -it deploy/rook-ceph-tools -- "
CLUSTER_COMMAND = "minikube kubectl -- "


def execute_command(command: str) -> str:
    output = ""
    try:
        proc = subprocess.run(command, shell=True, capture_output=True, text=True)
        output = proc.stdout
    except Exception as ex:
        output = f"Error executing command: {ex}"

    return output


def run_commands(commands: str) -> str:
    commands_list = commands.split("\n")
    output = ""
    for cmd in commands_list:
        if cmd.startswith("ceph"):
            prefix = ROOK_CEPH_COMMAND
        else:
            prefix = CLUSTER_COMMAND
        command = prefix + cmd
        output = execute_command(command)

    return output.strip("\n")