2016-05-20 14:53:45 +00:00
|
|
|
use base "installedtest";
|
2015-03-18 21:28:03 +00:00
|
|
|
use strict;
|
|
|
|
use testapi;
|
2017-01-18 07:15:44 +00:00
|
|
|
use utils;
|
2015-03-18 21:28:03 +00:00
|
|
|
|
|
|
|
sub run {
|
2016-09-12 17:24:30 +00:00
|
|
|
my $self = shift;
|
2018-09-07 01:23:13 +00:00
|
|
|
my $version = get_var("VERSION");
|
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
|
|
|
|
2017-04-03 23:23:45 +00:00
|
|
|
# Handle pre-login initial setup if we're doing INSTALL_NO_USER
|
|
|
|
if (get_var("INSTALL_NO_USER") && !get_var("_setup_done")) {
|
|
|
|
if (get_var("DESKTOP") eq 'gnome') {
|
|
|
|
gnome_initial_setup(prelogin=>1, timeout=>$wait_time);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
anaconda_create_user(timeout=>$wait_time);
|
|
|
|
assert_and_click "initialsetup_finish_configuration";
|
|
|
|
set_var("_setup_done", 1);
|
|
|
|
}
|
|
|
|
$wait_time = 300;
|
|
|
|
}
|
2018-09-07 01:20:08 +00:00
|
|
|
# Wait for the login screen, unless we're doing an > 28 GNOME no
|
|
|
|
# user install, which transitions straight from g-i-s to logged-in
|
|
|
|
# desktop
|
|
|
|
unless (get_var("DESKTOP") eq 'gnome' && ($version > 28 || $version eq "Rawhide") && get_var("INSTALL_NO_USER")) {
|
|
|
|
boot_to_login_screen(timeout => $wait_time);
|
|
|
|
# if USER_LOGIN is set to string 'false', we're done here
|
|
|
|
return if (get_var("USER_LOGIN") eq "false");
|
2018-09-06 22:01:08 +00:00
|
|
|
|
2018-09-07 01:20:08 +00:00
|
|
|
# GDM 3.24.1 dumps a cursor in the middle of the screen here...
|
|
|
|
mouse_hide;
|
|
|
|
if (get_var("DESKTOP") eq 'gnome') {
|
|
|
|
# we have to hit enter to get the password dialog
|
|
|
|
send_key "ret";
|
|
|
|
}
|
|
|
|
assert_screen "graphical_login_input";
|
|
|
|
my $password = get_var("USER_PASSWORD", "weakpassword");
|
|
|
|
if (get_var("SWITCHED_LAYOUT")) {
|
|
|
|
# see _do_install_and_reboot; when layout is switched
|
|
|
|
# user password is doubled to contain both US and native
|
|
|
|
# chars
|
|
|
|
desktop_switch_layout 'ascii';
|
|
|
|
type_very_safely $password;
|
|
|
|
desktop_switch_layout 'native';
|
|
|
|
type_very_safely $password;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
type_very_safely $password;
|
|
|
|
}
|
2015-03-18 21:28:03 +00:00
|
|
|
send_key "ret";
|
2018-09-06 22:01:08 +00:00
|
|
|
}
|
2016-05-05 23:39:47 +00:00
|
|
|
|
2018-09-06 22:01:08 +00:00
|
|
|
# Handle initial-setup, for GNOME, unless START_AFTER_TEST
|
|
|
|
# is set in which case it will have been done already. Always
|
2019-01-29 09:06:16 +00:00
|
|
|
# do it if ADVISORY_OR_TASK is set, as for the update testing flow,
|
2018-09-06 22:01:08 +00:00
|
|
|
# START_AFTER_TEST is set but a no-op and this hasn't happened
|
2019-01-29 09:06:16 +00:00
|
|
|
if (get_var("DESKTOP") eq 'gnome' && (get_var("ADVISORY_OR_TASK") || !get_var("START_AFTER_TEST"))) {
|
|
|
|
# as this test gets loaded twice on the ADVISORY_OR_TASK flow, and
|
2018-09-06 22:01:08 +00:00
|
|
|
# we might be on the INSTALL_NO_USER flow, check whether
|
2018-09-07 00:43:32 +00:00
|
|
|
# this happened already
|
2018-09-07 02:00:49 +00:00
|
|
|
unless (get_var("_setup_done")) {
|
2018-09-06 22:01:08 +00:00
|
|
|
gnome_initial_setup();
|
2017-04-03 23:23:45 +00:00
|
|
|
}
|
2015-03-18 21:28:03 +00:00
|
|
|
}
|
2018-09-06 22:01:08 +00:00
|
|
|
if (get_var("DESKTOP") eq 'gnome' && get_var("INSTALL_NO_USER")) {
|
2018-09-16 15:29:43 +00:00
|
|
|
# wait for the stupid 'help' screen to show and kill it
|
|
|
|
if (check_screen "getting_started", 30) {
|
|
|
|
send_key "alt-f4";
|
|
|
|
wait_still_screen 5;
|
2018-09-07 02:53:07 +00:00
|
|
|
}
|
2018-09-07 03:36:29 +00:00
|
|
|
else {
|
|
|
|
record_soft_failure "'getting started' missing (probably BGO#790811)";
|
|
|
|
}
|
2018-09-06 22:01:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Move the mouse somewhere it won't highlight the match areas
|
|
|
|
mouse_set(300, 800);
|
|
|
|
# KDE can take ages to start up
|
|
|
|
check_desktop_clean(tries=>40);
|
2015-03-18 21:28:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1, milestone => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|