2021-07-14 16:04:16 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This part of the suite tests that Evince can rotate the content.
|
|
|
|
|
|
|
|
sub rotate_content {
|
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Open the application menu
|
|
|
|
assert_and_click("gnome_burger_menu", button => "left", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Click with the *left* button (needle click area might need some correction)
|
|
|
|
assert_and_click("evince_menu_rotate", button => "left", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub run {
|
2023-02-12 22:59:37 +00:00
|
|
|
my $self = shift;
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Rotate the content once.
|
|
|
|
rotate_content();
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Check that the window content has been rotated.
|
|
|
|
assert_screen("evince_content_rotated_once", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Rotate the content again.
|
|
|
|
rotate_content();
|
2021-07-14 16:04:16 +00:00
|
|
|
|
2023-02-12 22:59:37 +00:00
|
|
|
# Check that the window content has been rotated.
|
|
|
|
assert_screen("evince_content_rotated_twice", timeout => 30);
|
2021-07-14 16:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2023-02-12 22:59:37 +00:00
|
|
|
return {always_rollback => 1};
|
2021-07-14 16:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|