mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-03 23:14:20 +00:00
22b185abf6
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
35 lines
683 B
Perl
35 lines
683 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This test checks that Software starts.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Start the application
|
|
start_with_launcher('apps_menu_software');
|
|
|
|
|
|
# check if a welcome screen appears, if so, click on it
|
|
if (check_screen('apps_run_software_welcome', 1)) {
|
|
assert_and_click 'apps_run_software_welcome';
|
|
wait_still_screen 2;
|
|
}
|
|
assert_screen 'apps_run_software';
|
|
# Register application
|
|
register_application("gnome-software");
|
|
# Close the application
|
|
quit_with_shortcut();
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|