1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-17 05:17:22 +00:00
os-autoinst-distri-fedora/tests/apps_startstop/kde/kgpg.pm
Adam Williamson de939c17df Update and rationalize KDE "next" needles
kgpg had its own, which doesn't make any sense. There are grey
and blue background variants that weren't consistently named.
This should rationalize things sensibly, and adds a new needle
for the new Plasma in Rawhide, with a lighter blue background.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2021-09-29 11:05:40 -07:00

45 lines
947 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 'kde_next';
wait_still_screen 2;
# Deal with the second wizard screen
assert_and_click 'kde_next';
wait_still_screen 2;
# Create configuration file
assert_and_click 'kgpg_create_config';
wait_still_screen 2;
# Click Next
assert_and_click 'kde_next';
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: