2016-05-20 14:53:45 +00:00
|
|
|
use base "installedtest";
|
2015-03-18 21:28:03 +00:00
|
|
|
use strict;
|
|
|
|
use testapi;
|
2016-09-12 17:24:30 +00:00
|
|
|
use main_common;
|
2015-03-18 21:28:03 +00:00
|
|
|
|
|
|
|
sub run {
|
2016-09-12 17:24:30 +00:00
|
|
|
my $self = shift;
|
2016-05-05 23:39:47 +00:00
|
|
|
# If KICKSTART is set, then the wait_time needs to consider the
|
|
|
|
# install time. if UPGRADE, we have to wait for the entire upgrade
|
2016-07-08 15:56:57 +00:00
|
|
|
# unless ENCRYPT_PASSWORD is set (in which case the postinstall
|
|
|
|
# test does the waiting)
|
2016-05-05 23:39:47 +00:00
|
|
|
my $wait_time = 300;
|
|
|
|
$wait_time = 1800 if (get_var("KICKSTART"));
|
2016-07-08 15:56:57 +00:00
|
|
|
$wait_time = 6000 if (get_var("UPGRADE") && !get_var("ENCRYPT_PASSWORD"));
|
2015-03-18 21:28:03 +00:00
|
|
|
|
|
|
|
# Wait for the login screen
|
consolidate login waits, use postinstall not entrypoint for base
Summary:
I started out wanting to fix an issue I noticed today where
graphical upgrade tests were failing because they didn't wait
for the graphical login screen properly; the test was sitting
at the 'full Fedora logo' state of plymouth for a long time,
so the current boot_to_login_screen's wait_still_screen was
triggered by it and the function wound up failing on the
assert_screen, because it was still some time before the real
login screen appeared.
So I tweaked the boot_to_login_screen implementation to work
slightly differently (look for a login screen match, *then* -
if we're dealing with a graphical login - wait_still_screen
to defeat the 'old GPU buffer showing login screen' problem
and assert the login screen again). But while working on it,
I figured we really should consolidate all the various places
that handle the bootloader -> login, we were doing it quite
differently in all sorts of different places. And as part of
that, I converted the base tests to use POSTINSTALL (and thus
go through the shared _wait_login tests) instead of handling
boot themselves. As part of *that*, I tweaked main.pm to not
require all POSTINSTALL tests have the _postinstall suffix on
their names, as it really doesn't make sense, and renamed the
tests.
Test Plan: Run all tests, see if they work.
Reviewers: jskladan, garretraziel
Reviewed By: garretraziel
Subscribers: tflink
Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D1015
2016-09-27 18:48:15 +00:00
|
|
|
boot_to_login_screen(timeout => $wait_time);
|
2016-05-05 23:39:47 +00:00
|
|
|
# do user login unless USER_LOGIN is set to string 'false'
|
|
|
|
unless (get_var("USER_LOGIN") eq "false") {
|
|
|
|
if (get_var("DESKTOP") eq 'gnome') {
|
|
|
|
# we have to hit enter to get the password dialog
|
|
|
|
send_key "ret";
|
|
|
|
}
|
|
|
|
assert_screen "graphical_login_input";
|
2016-09-12 17:24:30 +00:00
|
|
|
type_very_safely get_var("USER_PASSWORD", "weakpassword");
|
2015-03-18 21:28:03 +00:00
|
|
|
send_key "ret";
|
2016-05-05 23:39:47 +00:00
|
|
|
|
|
|
|
# Handle initial-setup, for GNOME, unless START_AFTER_TEST
|
|
|
|
# is set in which case it will have been done already
|
|
|
|
if (get_var("DESKTOP") eq 'gnome' && !get_var("START_AFTER_TEST")) {
|
2016-09-12 17:24:30 +00:00
|
|
|
assert_screen "next_button", 120;
|
2016-09-06 00:50:06 +00:00
|
|
|
# wait a bit in case of animation
|
|
|
|
wait_still_screen 3;
|
2016-05-06 06:20:02 +00:00
|
|
|
for my $n (1..3) {
|
|
|
|
# click 'Next' three times, moving the mouse to avoid
|
|
|
|
# highlight problems, sleeping to give it time to get
|
|
|
|
# to the next screen between clicks
|
2016-05-05 23:39:47 +00:00
|
|
|
mouse_set(100, 100);
|
2016-05-06 06:20:02 +00:00
|
|
|
wait_screen_change { assert_and_click "next_button"; };
|
2016-05-05 23:39:47 +00:00
|
|
|
}
|
|
|
|
# click 'Skip' one time
|
2016-05-06 06:20:02 +00:00
|
|
|
mouse_set(100,100);
|
|
|
|
wait_screen_change { assert_and_click "skip_button"; };
|
2016-05-05 23:39:47 +00:00
|
|
|
send_key "ret";
|
|
|
|
# wait for the stupid 'help' screen to show and kill it
|
|
|
|
assert_screen "getting_started";
|
|
|
|
send_key "alt-f4";
|
|
|
|
wait_still_screen 5;
|
|
|
|
}
|
|
|
|
|
2015-03-18 21:28:03 +00:00
|
|
|
# Move the mouse somewhere it won't highlight the match areas
|
|
|
|
mouse_set(300, 200);
|
2016-05-05 23:39:47 +00:00
|
|
|
# KDE can take ages to start up
|
|
|
|
assert_screen "graphical_desktop_clean", 120;
|
2015-03-18 21:28:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
# without anything - rollback to 'lastgood' snapshot if failed
|
|
|
|
# 'fatal' - whole test suite is in danger if this fails
|
|
|
|
# 'milestone' - after this test succeeds, update 'lastgood'
|
|
|
|
# 'important' - if this fails, set the overall state to 'fail'
|
|
|
|
return { fatal => 1, milestone => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|