mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-02-18 05:24:30 +00:00
This adds both the Gnome and the KDE tests to test the Desktop Keyring. After a discussion with the Brno team, how this could be tested without the need to rely on external servers to log into, we set up a local FTP server, we will log into it and remember the credentials and verify that the credentials will be stored in the keyring correctly.
31 lines
677 B
Perl
31 lines
677 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
# This part of the suite tests that Evince can be switched into night mode.
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
|
|
# Click on the Menu button.
|
|
assert_and_click("gnome_burger_menu", timeout => 30, button => "left");
|
|
|
|
# Click on the Night mode to select it.
|
|
assert_and_click("evince_toggle_night_mode", button => "left", timeout => 30);
|
|
|
|
# The menu stays opened, so hit Esc to dismiss it.
|
|
send_key("esc");
|
|
wait_still_screen 2;
|
|
|
|
# Check that night mode has been activated.
|
|
assert_screen("evince_night_mode", timeout => 30);
|
|
|
|
}
|
|
|
|
sub test_flags {
|
|
return {always_rollback => 1};
|
|
}
|
|
|
|
1;
|