mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-01 05:54:22 +00:00
788b7167b1
That last commit to 'fix' the Clocks tests when Silverblue needs location access to be granted wasn't complete, I left the needle out. D'oh. Take the chance to give it a better name too. Signed-off-by: Adam Williamson <awilliam@redhat.com>
45 lines
1.1 KiB
Perl
45 lines
1.1 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This script will start the Gnome Clocks application and save the status
|
|
# for any subsequent tests.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# At first, we need to set time and time zones manually.
|
|
$self->root_console(tty=>3);
|
|
# Switch off automatic time.
|
|
assert_script_run("timedatectl set-ntp 0");
|
|
# Set the time zone
|
|
assert_script_run("timedatectl set-timezone Europe/Prague");
|
|
# Set the time and date
|
|
assert_script_run("timedatectl set-time '2022-09-09 09:00:00'");
|
|
# Return back
|
|
desktop_vt();
|
|
|
|
# Start the Application
|
|
menu_launch_type("clocks");
|
|
assert_screen ["apps_run_clocks", "grant_access"];
|
|
# give access rights if asked
|
|
if (match_has_tag 'grant_access') {
|
|
click_lastmatch;
|
|
assert_screen 'apps_run_clocks';
|
|
}
|
|
|
|
# Make it fill the entire window.
|
|
send_key("super-up");
|
|
wait_still_screen(2);
|
|
}
|
|
|
|
sub test_flags {
|
|
# If this test fails, there is no need to continue.
|
|
return {fatal => 1, milestone => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|