mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
e396341f31
In the last few weeks Boxes is showing an auth dialog on start. I've filed a bug on this; let's have the test handle it as a soft failure, since this isn't a fatal problem. Do this by making an existing needle for this dialog a bit more generic in name and using it. Signed-off-by: Adam Williamson <awilliam@redhat.com>
36 lines
868 B
Perl
36 lines
868 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Boxes starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Start the application
|
|
start_with_launcher('apps_menu_boxes');
|
|
# handling 'auth required' screen appearing as a soft fail,
|
|
# check that is started
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1692972
|
|
assert_screen ['apps_run_boxes', 'auth_required'];
|
|
if (match_has_tag 'auth_required') {
|
|
record_soft_failure "Firewall authentication screen appeared - RHBZ #1692972";
|
|
my $user_password = get_var("USER_PASSWORD") || "weakpassword";
|
|
type_very_safely $user_password;
|
|
send_key 'ret';
|
|
assert_screen 'apps_run_boxes';
|
|
}
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|