mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-22 14:03:09 +00:00
Set several extra schema keys for update notification test
GNOME got even more clever-clever about only checking for and notifying about updates after a certain amount of time, so we need to fake it out even harder. See https://bugzilla.redhat.com/show_bug.cgi?id=1930401 and https://wiki.gnome.org/Design/Apps/Software/Updates#Tentative_Design Note the test will still fail for now as there is an actual bug that needs fixing, but once the fix is in, this should work. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
b349e7cb1a
commit
72369df2fc
@ -36,17 +36,22 @@ sub run {
|
|||||||
assert_script_run 'date --set="06:00:00"';
|
assert_script_run 'date --set="06:00:00"';
|
||||||
}
|
}
|
||||||
if (get_var("BOOTFROM")) {
|
if (get_var("BOOTFROM")) {
|
||||||
# Also reset the 'last update notification check' timestamp
|
# Set a bunch of update checking-related timestamps to
|
||||||
# to >24 hours ago (as that matters too)
|
# two days ago or two weeks ago to try and make sure we
|
||||||
|
# get notifications, see:
|
||||||
|
# https://wiki.gnome.org/Design/Apps/Software/Updates#Tentative_Design
|
||||||
my $now = script_output 'date +%s';
|
my $now = script_output 'date +%s';
|
||||||
my $yday = $now - 48*60*60;
|
my $yyday = $now - 2*24*60*60;
|
||||||
|
my $longago = $now - 14*24*60*60;
|
||||||
# have to log in as the user to do this
|
# have to log in as the user to do this
|
||||||
script_run 'exit', 0;
|
script_run 'exit', 0;
|
||||||
console_login(user=>get_var('USER_LOGIN', 'test'), password=>get_var('USER_PASSWORD', 'weakpassword'));
|
console_login(user=>get_var('USER_LOGIN', 'test'), password=>get_var('USER_PASSWORD', 'weakpassword'));
|
||||||
script_run "gsettings set org.gnome.software check-timestamp ${yday}", 0;
|
script_run "gsettings set org.gnome.software check-timestamp ${yyday}", 0;
|
||||||
wait_still_screen 3;
|
script_run "gsettings set org.gnome.software update-notification-timestamp ${longago}", 0;
|
||||||
script_run "gsettings get org.gnome.software check-timestamp", 0;
|
script_run "gsettings set org.gnome.software online-updates-timestamp ${longago}", 0;
|
||||||
wait_still_screen 3;
|
script_run "gsettings set org.gnome.software upgrade-notification-timestamp ${longago}", 0;
|
||||||
|
script_run "gsettings set org.gnome.software install-timestamp ${longago}", 0;
|
||||||
|
wait_still_screen 5;
|
||||||
script_run 'exit', 0;
|
script_run 'exit', 0;
|
||||||
console_login(user=>'root', password=>get_var('ROOT_PASSWORD', 'weakpassword'));
|
console_login(user=>'root', password=>get_var('ROOT_PASSWORD', 'weakpassword'));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user