1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-16 21:07:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/gnome/boxes.pm
Lukas Ruzicka 22b185abf6 Enable tracking of executed applications in Application Start/Stop tests (FIXES #116)
This PR adds the following:
* moves out the presetting procedures, so that two long terminal tests do not have
to run twice
* add methods for application to register when successfully started
* adds a test that checks if all required applications have registered
2019-10-16 17:36:37 -07:00

38 lines
936 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';
}
# Register application
register_application("gnome-boxes");
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: