summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/base_vyostest_shim.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-07-29 10:41:34 +0200
committerGitHub <noreply@github.com>2024-07-29 10:41:34 +0200
commitf01b1cebad8d34aedc981f3cfed23465f6b99947 (patch)
tree956bdacac075339b51936943223e6b1754e19768 /smoketest/scripts/cli/base_vyostest_shim.py
parente90fd5cf9add2453d8f4a5fc88406c7b786e19a5 (diff)
parentaa7cf268c5ee3da3674314eb0eaac72221a7235c (diff)
downloadvyos-1x-f01b1cebad8d34aedc981f3cfed23465f6b99947.tar.gz
vyos-1x-f01b1cebad8d34aedc981f3cfed23465f6b99947.zip
Merge pull request #3892 from vyos/mergify/bp/circinus/pr-3888
smoketest: T6614: initial support for op-mode command testing (backport #3888)
Diffstat (limited to 'smoketest/scripts/cli/base_vyostest_shim.py')
-rw-r--r--smoketest/scripts/cli/base_vyostest_shim.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/base_vyostest_shim.py b/smoketest/scripts/cli/base_vyostest_shim.py
index 5acfe20fd..940306ac3 100644
--- a/smoketest/scripts/cli/base_vyostest_shim.py
+++ b/smoketest/scripts/cli/base_vyostest_shim.py
@@ -15,6 +15,7 @@
import os
import unittest
import paramiko
+import pprint
from time import sleep
from typing import Type
@@ -87,13 +88,25 @@ class VyOSUnitTestSHIM:
while run(f'sudo lsof -nP {commit_lock}') == 0:
sleep(0.250)
+ def op_mode(self, path : list) -> None:
+ """
+ Execute OP-mode command and return stdout
+ """
+ if self.debug:
+ print('commit')
+ path = ' '.join(path)
+ out = cmd(f'/opt/vyatta/bin/vyatta-op-cmd-wrapper {path}')
+ if self.debug:
+ print(f'\n\ncommand "{path}" returned:\n')
+ pprint.pprint(out)
+ return out
+
def getFRRconfig(self, string=None, end='$', endsection='^!', daemon=''):
""" Retrieve current "running configuration" from FRR """
command = f'vtysh -c "show run {daemon} no-header"'
if string: command += f' | sed -n "/^{string}{end}/,/{endsection}/p"'
out = cmd(command)
if self.debug:
- import pprint
print(f'\n\ncommand "{command}" returned:\n')
pprint.pprint(out)
return out