1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-21 13:33:08 +00:00

Tweak desktop_printing launch/maximize a bit to make more robust

We seem to be having quite a few failures lately because the
viewer window in KDE never got maximized. This makes us a bit
more conservative at startup and puts the maximization / sentence
check in a send_key_until_needlematch loop to give it more
chances.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-10-08 09:16:41 -07:00
parent 7955c092d6
commit ec34439004

View File

@ -144,15 +144,23 @@ sub run {
# Enter key will dismiss them and return the CLI to the ready status.
send_key("ret");
# Open the pdf file in a Document reader and check that it is correctly printed.
type_safely("$viewer $filepath &\n");
wait_screen_change { type_safely("$viewer $filepath &\n"); };
wait_still_screen(stilltime => 3, similarity_level => 45);
# Resize the window, so that the size of the document fits the bigger space
# and gets more readable.
send_key $maximize if (defined($maximize));
wait_still_screen(stilltime => 2, similarity_level => 45);
send_key "ctrl-home" if ($desktop eq "kde");
# Check the printed pdf.
assert_screen "printing_check_sentence";
# Maximize the screen and check the printed pdf, giving it a few
# chances to work
my $count = 5;
while ($count) {
$count -= 1;
send_key($maximize);
wait_still_screen(stilltime => 3, similarity_level => 45);
if ($desktop eq "kde") {
# ensure we're at the start of the document
send_key "ctrl-home";
wait_still_screen(stilltime => 2, similarity_level => 45);
}
last if (check_screen("printing_check_sentence", 3));
}
assert_screen("printing_check_sentence", 5);
}