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;
|
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-06-29 10:35:01 +00:00
|
|
|
# Wait for the login screen. If the machine is already booted, then skip this test
|
|
|
|
# and proceed to log in the system and click through the set up.
|
2018-06-29 09:54:54 +00:00
|
|
|
unless (get_var("ASSUME_BOOT") == 1) {
|
2018-06-29 09:42:11 +00:00
|
|
|
boot_to_login_screen(timeout => $wait_time);
|
|
|
|
}
|
2017-04-13 22:28:37 +00:00
|
|
|
# GDM 3.24.1 dumps a cursor in the middle of the screen here...
|
|
|
|
mouse_hide;
|
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-12-16 17:40:29 +00:00
|
|
|
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
|
2016-12-21 16:41:00 +00:00
|
|
|
desktop_switch_layout 'ascii';
|
2016-12-16 17:40:29 +00:00
|
|
|
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";
|
2016-05-05 23:39:47 +00:00
|
|
|
|
2018-03-29 04:21:16 +00:00
|
|
|
# An auth request for update check appears on FAW 28 at this
|
|
|
|
# point, until
|
|
|
|
# https://pagure.io/fedora-release/pull-request/131 is merged
|
|
|
|
# and built
|
|
|
|
if (get_var("SUBVARIANT") eq 'AtomicWorkstation') {
|
|
|
|
if (check_screen "desktop_auth_required", 120) {
|
|
|
|
record_soft_failure "Update auth dialog on FAW - #1561853";
|
2018-03-29 05:17:33 +00:00
|
|
|
type_very_safely $password;
|
|
|
|
send_key "ret";
|
2018-03-29 04:21:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-05 23:39:47 +00:00
|
|
|
# Handle initial-setup, for GNOME, unless START_AFTER_TEST
|
Add support for testing updates
Summary:
This adds an entirely new workflow for testing distribution
updates. The `ADVISORY` variable is introduced: when set,
`main.pm` will load an early post-install test that sets up
a repository containing the packages from the specified update,
runs `dnf -y update`, and reboots. A new templates file is
added, `templates-updates`, which adds two new flavors called
`updates-server` and `updates-workstation`, each containing
job templates for appropriate post-install tests. Scheduler is
expected to post `ADVISORY=(update ID) HDD_1=(base image)
FLAVOR=updates-(server|workstation)`, where (base image) is one
of the stable release base disk images produced by `createhdds`
and usually used for upgrade testing. This will result in the
appropriate job templates being loaded.
We rejig postinstall test loading and static network config a
bit so that this works for both the 'compose' and 'updates' test
flows: we have to ensure we bring up networking for the tap
tests before we try and install the updates, but still allow
later adjustment of the configuration. We take advantage of the
openQA feature that was added a few months back to run the same
module multiple times, so the `_advisory_update` module can
reboot after installing the updates and the modules that take
care of bootloader, encryption and login get run again. This
looks slightly wacky in the web UI, though - it doesn't show the
later runs of each module.
We also use the recently added feature to specify `+HDD_1` in
the test suites which use a disk image uploaded by an earlier
post-install test, so the test suite value will take priority
over the value POSTed by the scheduler for those tests, and we
will use the uploaded disk image (and not the clean base image
POSTed by the scheduler) for those tests.
My intent here is to enhance the scheduler, adding a consumer
which listens out for critpath updates, and runs this test flow
for each one, then reports the results to ResultsDB where Bodhi
could query and display them. We could also add a list of other
packages to have one or both sets of update tests run on it, I
guess.
Test Plan:
Try a post something like:
HDD_1=disk_f25_server_3_x86_64.img DISTRI=fedora VERSION=25
FLAVOR=updates-server ARCH=x86_64 BUILD=FEDORA-2017-376ae2b92c
ADVISORY=FEDORA-2017-376ae2b92c CURRREL=25 PREVREL=24
Pick an appropriate `ADVISORY` (ideally, one containing some
packages which might actually be involved in the tests), and
matching `FLAVOR` and `HDD_1`. The appropriate tests should run,
a repo with the update packages should be created and enabled
(and dnf update run), and the tests should work properly. Also
test a regular compose run to make sure I didn't break anything.
Reviewers: jskladan, jsedlak
Reviewed By: jsedlak
Subscribers: tflink
Differential Revision: https://phab.qa.fedoraproject.org/D1143
2017-01-25 16:16:12 +00:00
|
|
|
# is set in which case it will have been done already. Always
|
|
|
|
# do it if ADVISORY is set, as for the update testing flow,
|
|
|
|
# START_AFTER_TEST is set but a no-op and this hasn't happened
|
|
|
|
if (get_var("DESKTOP") eq 'gnome' && (get_var("ADVISORY") || !get_var("START_AFTER_TEST"))) {
|
2017-04-03 23:23:45 +00:00
|
|
|
# as this test gets loaded twice on the ADVISORY flow, and
|
|
|
|
# we might be on the INSTALL_NO_USER flow, check whether
|
2017-10-20 19:21:31 +00:00
|
|
|
# this happened already. Also, as of 2017-10 there's a bug
|
2017-04-25 01:49:25 +00:00
|
|
|
# in the F26 base image which stops g-i-s running at all;
|
2017-10-20 19:21:31 +00:00
|
|
|
# for update and upgrade testing purposes we don't want to
|
|
|
|
# fail, we just want to go ahead. So if we see the
|
|
|
|
# getting_started screen, just handle that instead.
|
2017-04-03 23:23:45 +00:00
|
|
|
unless (get_var("_setup_done")) {
|
2017-10-20 19:21:31 +00:00
|
|
|
if (get_var("ADVISORY") || get_var("UPGRADE")) {
|
2017-04-25 01:49:25 +00:00
|
|
|
assert_screen ["next_button", "getting_started"], 120;
|
|
|
|
if (match_has_tag("next_button")) {
|
|
|
|
gnome_initial_setup();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
send_key "alt-f4";
|
|
|
|
set_var("_setup_done", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gnome_initial_setup();
|
|
|
|
}
|
2016-05-05 23:39:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-03 23:23:45 +00:00
|
|
|
if (get_var("DESKTOP") eq 'gnome' && get_var("INSTALL_NO_USER")) {
|
|
|
|
# wait for the stupid 'help' screen to show and kill it
|
2018-05-24 21:17:24 +00:00
|
|
|
if (check_screen "getting_started", 30) {
|
2017-11-25 00:36:31 +00:00
|
|
|
send_key "alt-f4";
|
|
|
|
wait_still_screen 5;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
record_soft_failure "'getting started' missing (probably BGO#790811)";
|
|
|
|
}
|
2017-04-03 23:23:45 +00:00
|
|
|
}
|
2016-05-05 23:39:47 +00:00
|
|
|
|
2015-03-18 21:28:03 +00:00
|
|
|
# Move the mouse somewhere it won't highlight the match areas
|
2018-03-16 22:10:34 +00:00
|
|
|
mouse_set(300, 800);
|
2016-05-05 23:39:47 +00:00
|
|
|
# KDE can take ages to start up
|
2017-07-10 18:41:02 +00:00
|
|
|
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:
|