2010-11-14 21:43:31 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2011-05-13 19:27:18 +02:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use X11::XCB::Connection;
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
2010-11-14 21:43:31 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-11-14 21:43:31 +01:00
|
|
|
|
2010-11-14 22:35:44 +01:00
|
|
|
#############################################################################
|
|
|
|
# 1: see if focus stays the same when toggling tiling/floating mode
|
|
|
|
#############################################################################
|
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
my $first = open_standard_window($x);
|
|
|
|
my $second = open_standard_window($x);
|
2010-11-14 21:43:31 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
is($x->input_focus, $second->id, 'second window focused');
|
2010-11-14 21:43:31 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
cmd 'mode floating';
|
|
|
|
cmd 'mode tiling';
|
2010-11-14 21:43:31 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
is($x->input_focus, $second->id, 'second window still focused after mode toggle');
|
2010-11-14 22:35:44 +01:00
|
|
|
|
|
|
|
#############################################################################
|
2011-05-13 19:27:18 +02:00
|
|
|
# 2: see if focus stays on the current floating window if killing another
|
|
|
|
# floating window
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
|
|
|
|
$first = open_standard_window($x); # window 2
|
|
|
|
$second = open_standard_window($x); # window 3
|
|
|
|
my $third = open_standard_window($x); # window 4
|
|
|
|
|
|
|
|
is($x->input_focus, $third->id, 'last container focused');
|
|
|
|
|
|
|
|
cmd 'mode floating';
|
|
|
|
|
|
|
|
cmd '[id="' . $second->id . '"] focus';
|
|
|
|
|
|
|
|
is($x->input_focus, $second->id, 'second con focused');
|
|
|
|
|
|
|
|
cmd 'mode floating';
|
|
|
|
|
|
|
|
# now kill the third one (it's floating). focus should stay unchanged
|
|
|
|
cmd '[id="' . $third->id . '"] kill';
|
|
|
|
|
|
|
|
sleep 0.25;
|
|
|
|
|
|
|
|
is($x->input_focus, $second->id, 'second con still focused after killing third');
|
|
|
|
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# 3: see if the focus gets reverted correctly when closing floating clients
|
2010-11-14 22:35:44 +01:00
|
|
|
# (first to the next floating client, then to the last focused tiling client)
|
|
|
|
#############################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
$tmp = fresh_workspace;
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-29 13:20:12 +02:00
|
|
|
$first = open_standard_window($x); # window 5
|
|
|
|
$second = open_standard_window($x); # window 6
|
|
|
|
my $third = open_standard_window($x); # window 7
|
2011-05-13 19:27:18 +02:00
|
|
|
|
|
|
|
is($x->input_focus, $third->id, 'last container focused');
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
cmd 'mode floating';
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
cmd '[id="' . $second->id . '"] focus';
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
is($x->input_focus, $second->id, 'second con focused');
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
cmd 'mode floating';
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
# now kill the second one. focus should fall back to the third one, which is
|
|
|
|
# also floating
|
|
|
|
cmd 'kill';
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
sleep 0.25;
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
is($x->input_focus, $third->id, 'third con focused');
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
cmd 'kill';
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
sleep 0.25;
|
2010-11-14 22:35:44 +01:00
|
|
|
|
2011-05-13 19:27:18 +02:00
|
|
|
is($x->input_focus, $first->id, 'first con focused after killing all floating cons');
|
2011-03-09 20:25:17 +01:00
|
|
|
|
|
|
|
done_testing;
|