mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
f81dab6739
Clocks' aaa_setup did not ever actually check the app launched properly. It also doesn't handle granting permissions if necessary, which the apps_startstop test for Clocks does do. This makes the permission check in the apps_startstop test more efficient, and adds it to the Clocks app aaa_setup test too. Signed-off-by: Adam Williamson <awilliam@redhat.com>
32 lines
625 B
Perl
32 lines
625 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Clocks starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# Start the application
|
|
start_with_launcher('apps_menu_clocks');
|
|
assert_screen ["apps_run_clocks", "apps_run_access"];
|
|
# give access rights if asked
|
|
if (match_has_tag 'apps_run_access') {
|
|
click_lastmatch;
|
|
assert_screen 'apps_run_clocks';
|
|
}
|
|
# Register application
|
|
register_application("gnome-clocks");
|
|
# close the application
|
|
quit_with_shortcut();
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|