2009-11-18 20:39:53 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
2012-09-10 14:09:01 +02:00
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
|
|
|
# • http://build.i3wm.org/docs/testsuite.html
|
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/lib-i3test.html
|
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/ipc.html
|
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
2009-11-18 20:39:53 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-06-02 17:51:58 +02:00
|
|
|
use List::Util qw(first);
|
2009-11-18 20:39:53 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2009-11-18 20:39:53 +01:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Create two windows and put them in stacking mode
|
|
|
|
#####################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'split v';
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
my $top = open_window;
|
|
|
|
my $bottom = open_window;
|
2009-11-18 20:39:53 +01:00
|
|
|
|
2011-07-24 14:54:30 +02:00
|
|
|
my @urgent = grep { $_->{urgent} } @{get_ws_content($tmp)};
|
2010-06-02 17:51:58 +02:00
|
|
|
is(@urgent, 0, 'no window got the urgent flag');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
# cmd 'layout stacking';
|
2009-11-18 20:39:53 +01:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Add the urgency hint, switch to a different workspace and back again
|
|
|
|
#####################################################################
|
|
|
|
$top->add_hint('urgency');
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-11-21 21:04:00 +01:00
|
|
|
my @content = @{get_ws_content($tmp)};
|
2011-07-24 14:54:30 +02:00
|
|
|
@urgent = grep { $_->{urgent} } @content;
|
2011-11-21 21:04:00 +01:00
|
|
|
my $top_info = first { $_->{window} == $top->id } @content;
|
|
|
|
my $bottom_info = first { $_->{window} == $bottom->id } @content;
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-07-24 14:54:30 +02:00
|
|
|
ok($top_info->{urgent}, 'top window is marked urgent');
|
|
|
|
ok(!$bottom_info->{urgent}, 'bottom window is not marked urgent');
|
2010-06-02 17:51:58 +02:00
|
|
|
is(@urgent, 1, 'exactly one window got the urgent flag');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd '[id="' . $top->id . '"] focus';
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-07-24 14:54:30 +02:00
|
|
|
@urgent = grep { $_->{urgent} } @{get_ws_content($tmp)};
|
2010-06-02 17:51:58 +02:00
|
|
|
is(@urgent, 0, 'no window got the urgent flag after focusing');
|
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-07-24 14:54:30 +02:00
|
|
|
@urgent = grep { $_->{urgent} } @{get_ws_content($tmp)};
|
2010-06-02 17:51:58 +02:00
|
|
|
is(@urgent, 0, 'no window got the urgent flag after re-setting urgency hint');
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Check if the workspace urgency hint gets set/cleared correctly
|
|
|
|
#####################################################################
|
2012-02-14 23:47:40 +01:00
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
my $ws = get_ws($tmp);
|
2011-07-24 14:54:30 +02:00
|
|
|
ok(!$ws->{urgent}, 'urgent flag not set on workspace');
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $otmp = fresh_workspace;
|
2010-06-02 17:51:58 +02:00
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-06-02 17:51:58 +02:00
|
|
|
|
|
|
|
$ws = get_ws($tmp);
|
2011-07-24 14:54:30 +02:00
|
|
|
ok($ws->{urgent}, 'urgent flag set on workspace');
|
2010-06-02 17:51:58 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace $tmp";
|
2009-11-18 20:39:53 +01:00
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
$ws = get_ws($tmp);
|
2011-07-24 14:54:30 +02:00
|
|
|
ok(!$ws->{urgent}, 'urgent flag not set on workspace after switching');
|
2009-11-20 15:56:18 +01:00
|
|
|
|
2012-02-14 23:47:40 +01:00
|
|
|
################################################################################
|
|
|
|
# Use the 'urgent' criteria to switch to windows which have the urgency hint set.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Go to a new workspace, open a different window, verify focus is on it.
|
|
|
|
$otmp = fresh_workspace;
|
|
|
|
my $different_window = open_window;
|
|
|
|
is($x->input_focus, $different_window->id, 'new window focused');
|
|
|
|
|
|
|
|
# Add the urgency hint on the other window.
|
|
|
|
$top->add_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
# Now try to switch to that window and see if focus changes.
|
|
|
|
cmd '[urgent=latest] focus';
|
|
|
|
isnt($x->input_focus, $different_window->id, 'window no longer focused');
|
|
|
|
is($x->input_focus, $top->id, 'urgent window focused');
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Same thing, but with multiple windows and using the 'urgency=latest' criteria
|
|
|
|
# (verify that it works in the correct order).
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd "workspace $otmp";
|
|
|
|
is($x->input_focus, $different_window->id, 'new window focused again');
|
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
$bottom->add_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
cmd '[urgent=latest] focus';
|
|
|
|
is($x->input_focus, $bottom->id, 'latest urgent window focused');
|
|
|
|
$bottom->delete_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
cmd '[urgent=latest] focus';
|
|
|
|
is($x->input_focus, $top->id, 'second urgent window focused');
|
|
|
|
$top->delete_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Same thing, but with multiple windows and using the 'urgency=oldest' criteria
|
|
|
|
# (verify that it works in the correct order).
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd "workspace $otmp";
|
|
|
|
is($x->input_focus, $different_window->id, 'new window focused again');
|
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
$bottom->add_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
cmd '[urgent=oldest] focus';
|
|
|
|
is($x->input_focus, $top->id, 'oldest urgent window focused');
|
|
|
|
$top->delete_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
cmd '[urgent=oldest] focus';
|
|
|
|
is($x->input_focus, $bottom->id, 'oldest urgent window focused');
|
|
|
|
$bottom->delete_hint('urgency');
|
|
|
|
sync_with_i3;
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|