2021-08-10 11:50:19 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
# This part tests if the application can put an image as a wallpaper.
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
sleep 2;
|
|
|
|
|
|
|
|
# Go to the menu
|
2022-01-24 13:09:25 +00:00
|
|
|
assert_and_click("gnome_burger_menu");
|
2021-08-10 11:50:19 +00:00
|
|
|
# Set as background
|
|
|
|
assert_and_click("eog_set_wallpaper");
|
2022-01-25 10:21:04 +00:00
|
|
|
wait_still_screen(3);
|
|
|
|
# Check that the dialogue has appeared
|
|
|
|
assert_screen("eog_wallpaper_set_window");
|
2021-08-10 11:50:19 +00:00
|
|
|
# Confirm
|
|
|
|
send_key("tab");
|
|
|
|
send_key("ret");
|
|
|
|
# Close the application
|
|
|
|
send_key("ctrl-q");
|
2022-01-25 10:21:04 +00:00
|
|
|
wait_still_screen(3);
|
2021-08-10 11:50:19 +00:00
|
|
|
# Check that the wallpaper was set
|
|
|
|
assert_screen("eog_image_background");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {always_rollback => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|