1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-29 17:27:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/clocks.pm
Adam Williamson f81dab6739 Clocks: handle auth, check we actually launched the app
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>
2022-06-30 13:56:29 -07:00

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: