mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-29 00:53:09 +00:00
105 lines
2.8 KiB
Perl
105 lines
2.8 KiB
Perl
use base "anacondatest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
use Time::HiRes qw( usleep );
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# Check whether we have arrived in the main installation screen.
|
|
assert_screen "win_setup_main", 300; #
|
|
|
|
# Set up keyboard layouts or languages. For our purposes, a simple
|
|
# click on the Next button will do.
|
|
assert_and_click "win_setup_next", 20;
|
|
|
|
# Start installation
|
|
assert_and_click "win_setup_install", 30;
|
|
|
|
# Accept the EULA.
|
|
assert_and_click "win_setup_eula_accept", 30;
|
|
assert_and_click "win_setup_next", 20;
|
|
|
|
# Select the custom installation
|
|
assert_and_click "win_setup_custom_install", 30;
|
|
|
|
# The drive 0 will always be empty, so just click Next to continue
|
|
assert_and_click "win_setup_next", 20;
|
|
|
|
# Confirm the region, the default US region will be ok.
|
|
assert_and_click "win_setup_yes", 1200;
|
|
|
|
# Confirm the keyboard layout, the default US keyboard will be ok.
|
|
assert_and_click "win_setup_yes", 60;
|
|
|
|
# Skip adding the second keyboard, we are not interested anyway.
|
|
assert_and_click "win_setup_skip", 60;
|
|
|
|
# If no internet is detected, deal with no internet.
|
|
|
|
# Join a local domain
|
|
assert_and_click "win_setup_local_account", 600;
|
|
assert_and_click "win_setup_bluenext", 20;
|
|
|
|
# Fill-in the account name
|
|
type_very_safely "Fedora";
|
|
assert_and_click "win_setup_bluenext", 20;
|
|
|
|
# Fill-in the password
|
|
type_very_safely "weakpassword";
|
|
assert_and_click "win_setup_bluenext", 20;
|
|
|
|
# Confirm the password
|
|
type_very_safely "weakpassword";
|
|
assert_and_click "win_setup_bluenext", 20;
|
|
|
|
# Deal with security questions
|
|
# What was your first pet's name?
|
|
assert_and_click "win_setup_security_question", 30;
|
|
assert_and_click "win_setup_your_pet", 30;
|
|
sleep 1;
|
|
send_key "tab";
|
|
sleep 1;
|
|
type_very_safely "Bob";
|
|
assert_and_click "win_setup_bluenext", 30;
|
|
|
|
# What was your childhood nickname?
|
|
assert_and_click "win_setup_security_question", 30;
|
|
assert_and_click "win_setup_childhood_nickname", 30;
|
|
sleep 1;
|
|
send_key "tab";
|
|
sleep 1;
|
|
type_very_safely "Bob";
|
|
assert_and_click "win_setup_bluenext", 30;
|
|
|
|
# What was the name of your oldest cousin?
|
|
assert_and_click "win_setup_security_question", 30;
|
|
assert_and_click "win_setup_oldest_cousin", 30;
|
|
sleep 1;
|
|
send_key "tab";
|
|
sleep 1;
|
|
type_very_safely "Bob";
|
|
assert_and_click "win_setup_bluenext", 30;
|
|
|
|
# Refuse the activity history.
|
|
assert_and_click "win_setup_blueno", 30;
|
|
|
|
# Refuse digital assistant
|
|
assert_and_click "win_setup_decline", 30;
|
|
|
|
# Accept suggested values (bad but fast and easy)
|
|
assert_and_click "win_setup_accept", 30;
|
|
|
|
# Check if booted
|
|
assert_screen "win_setup_booted_logged", 600;
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|