2011-06-11 19:15:16 +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)
|
|
|
|
#
|
2011-06-11 19:15:16 +02:00
|
|
|
# Tests if the 'force_focus_wrapping' config directive works correctly.
|
|
|
|
#
|
2011-11-25 17:39:19 +01:00
|
|
|
use i3test i3_autostart => 0;
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# 1: test the wrapping behaviour without force_focus_wrapping
|
|
|
|
#####################################################################
|
|
|
|
|
2011-08-03 02:12:29 +02:00
|
|
|
my $config = <<EOT;
|
|
|
|
# i3 config file (v4)
|
|
|
|
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
|
|
|
EOT
|
2011-07-25 13:35:56 +02:00
|
|
|
|
2011-10-05 00:34:23 +02:00
|
|
|
my $pid = launch_with_config($config);
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
my $tmp = fresh_workspace;
|
|
|
|
|
|
|
|
ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
|
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
my $first = open_window;
|
|
|
|
my $second = open_window;
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
cmd 'layout tabbed';
|
|
|
|
cmd 'focus parent';
|
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
my $third = open_window;
|
2011-06-11 19:15:16 +02:00
|
|
|
is($x->input_focus, $third->id, 'third window focused');
|
|
|
|
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $second->id, 'second window focused');
|
|
|
|
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $first->id, 'first window focused');
|
|
|
|
|
|
|
|
# now test the wrapping
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $second->id, 'second window focused');
|
|
|
|
|
|
|
|
# but focusing right should not wrap now, but instead focus the third window
|
|
|
|
cmd 'focus right';
|
|
|
|
is($x->input_focus, $third->id, 'third window focused');
|
|
|
|
|
2011-10-05 00:34:23 +02:00
|
|
|
exit_gracefully($pid);
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# 2: test the wrapping behaviour with force_focus_wrapping
|
|
|
|
#####################################################################
|
|
|
|
|
2011-08-03 02:12:29 +02:00
|
|
|
$config = <<EOT;
|
|
|
|
# i3 config file (v4)
|
|
|
|
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
|
|
|
force_focus_wrapping true
|
|
|
|
EOT
|
2011-07-25 13:35:56 +02:00
|
|
|
|
2011-10-05 00:34:23 +02:00
|
|
|
$pid = launch_with_config($config);
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
|
|
|
|
ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
|
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
$first = open_window;
|
|
|
|
$second = open_window;
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
cmd 'layout tabbed';
|
|
|
|
cmd 'focus parent';
|
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
$third = open_window;
|
2011-09-23 21:37:45 +02:00
|
|
|
|
2011-06-11 19:15:16 +02:00
|
|
|
is($x->input_focus, $third->id, 'third window focused');
|
|
|
|
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $second->id, 'second window focused');
|
|
|
|
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $first->id, 'first window focused');
|
|
|
|
|
|
|
|
# now test the wrapping
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $second->id, 'second window focused');
|
|
|
|
|
|
|
|
# focusing right should now be forced to wrap
|
|
|
|
cmd 'focus right';
|
|
|
|
is($x->input_focus, $first->id, 'first window focused');
|
|
|
|
|
2011-10-05 00:34:23 +02:00
|
|
|
exit_gracefully($pid);
|
2011-06-11 19:15:16 +02:00
|
|
|
|
|
|
|
done_testing;
|