2009-08-05 21:37:11 +02: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:
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2012-09-10 14:09:01 +02:00
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
2009-08-05 21:37:11 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Create two windows and make sure focus switching works
|
|
|
|
#####################################################################
|
|
|
|
|
2009-08-06 00:16:26 +02:00
|
|
|
# Change mode of the container to "default" for following tests
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'layout default';
|
|
|
|
cmd 'split v';
|
2009-08-06 00:16:26 +02:00
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
my $top = open_window;
|
|
|
|
my $mid = open_window;
|
|
|
|
my $bottom = open_window;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the input focus after sending the given command to i3 via IPC
|
|
|
|
# end sleeping for half a second to make sure i3 reacted
|
|
|
|
#
|
|
|
|
sub focus_after {
|
|
|
|
my $msg = shift;
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
cmd $msg;
|
2009-10-26 20:04:37 +01:00
|
|
|
return $x->input_focus;
|
2009-08-05 21:37:11 +02:00
|
|
|
}
|
|
|
|
|
2011-11-21 21:04:00 +01:00
|
|
|
my $focus = $x->input_focus;
|
2009-08-05 21:37:11 +02:00
|
|
|
is($focus, $bottom->id, "Latest window focused");
|
|
|
|
|
2011-06-08 20:49:49 +02:00
|
|
|
$focus = focus_after('focus up');
|
2009-08-05 21:37:11 +02:00
|
|
|
is($focus, $mid->id, "Middle window focused");
|
|
|
|
|
2011-06-08 20:49:49 +02:00
|
|
|
$focus = focus_after('focus up');
|
2009-08-05 21:37:11 +02:00
|
|
|
is($focus, $top->id, "Top window focused");
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Test focus wrapping
|
|
|
|
#####################################################################
|
|
|
|
|
2011-06-08 20:49:49 +02:00
|
|
|
$focus = focus_after('focus up');
|
2009-08-05 21:37:11 +02:00
|
|
|
is($focus, $bottom->id, "Bottom window focused (wrapping to the top works)");
|
|
|
|
|
2011-06-08 20:49:49 +02:00
|
|
|
$focus = focus_after('focus down');
|
2009-08-05 21:37:11 +02:00
|
|
|
is($focus, $top->id, "Top window focused (wrapping to the bottom works)");
|
|
|
|
|
2015-09-11 08:26:33 +02:00
|
|
|
#####################################################################
|
|
|
|
# Test focus is only successful if there was a window that could be
|
|
|
|
# matched.
|
|
|
|
#####################################################################
|
2010-03-11 00:15:34 +01:00
|
|
|
|
2015-09-11 08:26:33 +02:00
|
|
|
my $result = cmd '[con_mark=__does_not_exist] focus';
|
|
|
|
is($result->[0]->{success}, 0, 'focus is unsuccessful if no window was matched');
|
2010-03-11 00:15:34 +01:00
|
|
|
|
2015-09-11 08:26:33 +02:00
|
|
|
#####################################################################
|
2010-03-11 00:15:34 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|