2011-05-11 22:45:20 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Regression test for setting the urgent hint on dock clients.
|
|
|
|
# found in 4be3178d4d360c2996217d811e61161c84d25898
|
|
|
|
#
|
|
|
|
use i3test;
|
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2011-05-11 22:45:20 +02:00
|
|
|
|
|
|
|
my $tmp = fresh_workspace;
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# verify that there is no dock window yet
|
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
# Children of all dockareas
|
|
|
|
my @docked = get_dock_clients;
|
|
|
|
|
|
|
|
is(@docked, 0, 'no dock clients yet');
|
|
|
|
|
|
|
|
# open a dock client
|
|
|
|
|
2011-11-23 17:22:43 +01:00
|
|
|
my $window = open_window(
|
2011-05-11 22:45:20 +02:00
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_DOCK'),
|
|
|
|
);
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# check that we can find it in the layout tree at the expected position
|
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
@docked = get_dock_clients;
|
|
|
|
is(@docked, 1, 'one dock client found');
|
|
|
|
|
|
|
|
# verify the height
|
|
|
|
my $docknode = $docked[0];
|
|
|
|
|
|
|
|
is($docknode->{rect}->{height}, 30, 'dock node has unchanged height');
|
|
|
|
|
|
|
|
$window->add_hint('urgency');
|
|
|
|
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2011-05-11 22:45:20 +02:00
|
|
|
|
|
|
|
does_i3_live;
|
|
|
|
|
|
|
|
done_testing;
|