1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-19 21:57:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/kgpg.pm
Adam Williamson 3b0dc6b021 kgpg: don't try and close tip of the day any more
Main UI appears over the tip of the day now, so we can ignore it
and just check the UI ran then close it.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2021-03-05 17:49:28 -08:00

45 lines
960 B
Perl

use base "installedtest";
use strict;
use testapi;
use utils;
# This test checks that Kgpg starts.
sub run {
my $self = shift;
# Start the application
menu_launch_type 'kgpg';
# Deal with the first wizard screen
assert_and_click 'kgpg_next';
wait_still_screen 2;
# Deal with the second wizard screen
assert_and_click 'kgpg_next_blue';
wait_still_screen 2;
# Create configuration file
assert_and_click 'kgpg_create_config';
wait_still_screen 2;
# Click Next
assert_and_click 'kgpg_next_blue';
wait_still_screen 2;
# Click Finish
assert_and_click 'kgpg_done';
wait_still_screen 2;
# Cancel the keypair creation
assert_and_click 'kgpg_keypair_cancel';
wait_still_screen 2;
# Check that it is started
assert_screen 'kgpg_runs';
# Close the application
quit_with_shortcut();
}
sub test_flags {
return {always_rollback => 1};
}
1;
# vim: set sw=4 et: