tests/acceptance: Print expected message on wait_for_console_pattern
authorWainer dos Santos Moschetta <wainersm@redhat.com>
Tue, 9 Mar 2021 15:35:07 +0000 (12:35 -0300)
committerCleber Rosa <crosa@redhat.com>
Wed, 17 Mar 2021 00:54:35 +0000 (20:54 -0400)
For the sake of improve debuggability of tests which use the
wait_for_console_pattern(), this changed the _console_interaction() so that
the expected message is printed if the test fail.

Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-Id: <20210309153507.1905682-1-wainersm@redhat.com>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Tested-by: Cleber Rosa <crosa@redhat.com>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
tests/acceptance/avocado_qemu/__init__.py

index df167b142cc3b2191e12861a37228591cbe1f577..ed338caaba91b09832f88c5735d34876c79814dc 100644 (file)
@@ -97,7 +97,8 @@ def _console_interaction(test, success_message, failure_message,
             break
         if failure_message and failure_message in msg:
             console.close()
-            fail = 'Failure message found in console: %s' % failure_message
+            fail = 'Failure message found in console: "%s". Expected: "%s"' % \
+                    (failure_message, success_message)
             test.fail(fail)
 
 def interrupt_interactive_console_until_pattern(test, success_message,