tests/avocado: Make ssh_command_output_contains() globally available
authorThomas Huth <thuth@redhat.com>
Mon, 24 Apr 2023 09:22:39 +0000 (10:22 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Thu, 27 Apr 2023 13:58:23 +0000 (14:58 +0100)
This function will be useful in other tests, too, so move it to the
core LinuxSSHMixIn class.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20230421110345.1294131-2-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230424092249.58552-9-alex.bennee@linaro.org>

tests/avocado/avocado_qemu/__init__.py
tests/avocado/linux_ssh_mips_malta.py

index cb71f50db91cebccb8faea7218195231126c9fb2..6788837e1b7468f3329e20f80273579899989717 100644 (file)
@@ -431,6 +431,14 @@ class LinuxSSHMixIn:
                          f'Guest command failed: {command}')
         return stdout_lines, stderr_lines
 
+    def ssh_command_output_contains(self, cmd, exp):
+        stdout, _ = self.ssh_command(cmd)
+        for line in stdout:
+            if exp in line:
+                break
+        else:
+            self.fail('"%s" output does not contain "%s"' % (cmd, exp))
+
 class LinuxDistro:
     """Represents a Linux distribution
 
index 0179d8a6ca3c2a9050370522d49b5b38357034d7..d9bb525ad9cb75863ee6da97eefd4b59eaf0b6e0 100644 (file)
@@ -101,14 +101,6 @@ class LinuxSSH(QemuSystemTest, LinuxSSHMixIn):
         self.ssh_disconnect_vm()
         wait_for_console_pattern(self, 'Power down', 'Oops')
 
-    def ssh_command_output_contains(self, cmd, exp):
-        stdout, _ = self.ssh_command(cmd)
-        for line in stdout:
-            if exp in line:
-                break
-        else:
-            self.fail('"%s" output does not contain "%s"' % (cmd, exp))
-
     def run_common_commands(self, wordsize):
         self.ssh_command_output_contains(
             'cat /proc/cpuinfo',