1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-21 14:54:31 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/firefox.pm
Adam Williamson c6505cc417 apps_startstop: don't rollback, defend against KDE mistypes
This comes from trying to fix the annoying recurring problem with
mistypes in KDE which has been going on since at least December.
First, we add the attempt to kind of 'precache' the kicker menu
in aasetting.pm. Then, I thought, all this snapshot loading has
to be putting a lot of load on the workers. And when each subtest
passes, it shouldn't really be necessary - they all end with
quit_with_shortcut(), which verifies that the app exited and we
got back to a blank desktop, so successful subtests should not
usually interfere with each other. We probably only want to
rollback on *failed* subtests, which is in fact openQA's default
behavior. If any specific tests change the system state such that
later tests might be affected, we can go back and just set those
tests as always_rollback, but I think it should be safe to skip
rollbacks on success for most of them.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2024-04-12 13:37:05 -07:00

36 lines
684 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Firefox starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'firefox';
# Check that it is started; this needle is from
# needles/firefox, it already existed before the 'apps' tests
# were created
assert_screen 'firefox', timeout => 60;
# Close the application
send_key 'alt-f4';
wait_still_screen 2;
# deal with warning screen
if (check_screen("firefox_close_tabs", 1)) {
click_lastmatch;
}
wait_still_screen 2;
assert_screen 'workspace';
}
sub test_flags {
return {};
}
1;
# vim: set sw=4 et: