2011-03-07 00:06:27 +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:
|
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-03-07 00:06:27 +01:00
|
|
|
# Test if new containers get focused when there is a fullscreen container at
|
2012-04-21 21:34:25 +02:00
|
|
|
# the time of launching the new one. Also make sure that focusing containers
|
|
|
|
# in other workspaces work even when there is a fullscreen container.
|
2011-03-07 00:06:27 +01:00
|
|
|
#
|
2017-09-14 12:30:42 +02:00
|
|
|
use i3test i3_config => <<EOT;
|
2012-10-06 22:41:04 +02:00
|
|
|
# i3 config file (v4)
|
|
|
|
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
|
|
|
|
|
|
|
fake-outputs 1024x768+0+0,1024x768+1024+0
|
|
|
|
EOT
|
2017-09-14 12:30:42 +02:00
|
|
|
# Screen setup looks like this:
|
|
|
|
# +----+----+
|
|
|
|
# | S1 | S2 |
|
|
|
|
# +----+----+
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
sub verify_focus {
|
|
|
|
# Report original line
|
|
|
|
local $Test::Builder::Level = $Test::Builder::Level + 1;
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
my ($expected, $msg) = @_;
|
|
|
|
$expected = $expected->id;
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
# Ensure the expected focus if the test fails.
|
|
|
|
cmd "[id=$expected] focus" unless is($x->input_focus, $expected, $msg);
|
|
|
|
}
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2012-05-26 22:37:45 +02:00
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# Verify that window opened behind fullscreen window will get focus after the
|
|
|
|
# fullscreen window gets moved to a different workspace.
|
2012-05-26 22:37:45 +02:00
|
|
|
################################################################################
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
fresh_workspace;
|
|
|
|
my $left = open_window;
|
|
|
|
verify_focus($left, 'left window focused');
|
|
|
|
diag("left = " . $left->id);
|
2012-05-26 22:37:45 +02:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
my $right = open_window;
|
2011-03-07 00:06:27 +01:00
|
|
|
cmd 'fullscreen';
|
2018-09-13 13:09:35 +02:00
|
|
|
diag("right = " . $right->id);
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
# Open a third window. Since we're fullscreen, the window won't be mapped, so
|
2012-05-26 22:37:45 +02:00
|
|
|
# don't wait for it to be mapped. Instead, just send the map request and sync
|
|
|
|
# with i3 to make sure i3 recognizes it.
|
2018-09-13 13:09:35 +02:00
|
|
|
my $third = open_window({dont_map => 1});
|
2011-09-24 14:08:02 +02:00
|
|
|
$third->map;
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2011-03-07 00:06:27 +01:00
|
|
|
diag("third = " . $third->id);
|
|
|
|
|
2012-05-26 22:37:45 +02:00
|
|
|
# Move the window to a different workspace, and verify that the third window now
|
|
|
|
# gets focused in the current workspace.
|
2011-03-07 00:06:27 +01:00
|
|
|
my $tmp2 = get_unused_workspace;
|
|
|
|
cmd "move workspace $tmp2";
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($third, 'third window focused');
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
kill_all_windows;
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2012-01-07 19:18:36 +01:00
|
|
|
################################################################################
|
|
|
|
# Ensure that moving a window to a workspace which has a fullscreen window does
|
|
|
|
# not focus it (otherwise the user cannot get out of fullscreen mode anymore).
|
|
|
|
################################################################################
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
my $tmp = fresh_workspace;
|
2012-01-07 19:18:36 +01:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
open_window;
|
2012-01-07 19:18:36 +01:00
|
|
|
cmd 'fullscreen';
|
|
|
|
|
|
|
|
my $nodes = get_ws_content($tmp);
|
|
|
|
is(scalar @$nodes, 1, 'precisely one window');
|
|
|
|
is($nodes->[0]->{focused}, 1, 'fullscreen window focused');
|
|
|
|
my $old_id = $nodes->[0]->{id};
|
|
|
|
|
|
|
|
$tmp2 = fresh_workspace;
|
|
|
|
my $move_window = open_window;
|
|
|
|
cmd "move workspace $tmp";
|
|
|
|
|
|
|
|
cmd "workspace $tmp";
|
|
|
|
|
|
|
|
$nodes = get_ws_content($tmp);
|
|
|
|
is(scalar @$nodes, 2, 'precisely two windows');
|
|
|
|
is($nodes->[0]->{id}, $old_id, 'id unchanged');
|
|
|
|
is($nodes->[0]->{focused}, 1, 'fullscreen window focused');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
kill_all_windows;
|
|
|
|
|
2012-04-21 21:34:25 +02:00
|
|
|
################################################################################
|
2012-05-26 22:37:45 +02:00
|
|
|
# Ensure it's possible to change focus if it doesn't escape the fullscreen
|
|
|
|
# container with fullscreen global. We can't even focus a container in a
|
|
|
|
# different workspace.
|
2012-04-21 21:34:25 +02:00
|
|
|
################################################################################
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
$tmp = fresh_workspace(output => 1);
|
2012-05-26 22:37:45 +02:00
|
|
|
my $diff_ws = open_window;
|
2012-04-21 21:34:25 +02:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
$tmp2 = fresh_workspace(output => 0);
|
2012-05-26 22:37:45 +02:00
|
|
|
$left = open_window;
|
|
|
|
my $right1 = open_window;
|
|
|
|
cmd 'split v';
|
|
|
|
my $right2 = open_window;
|
|
|
|
|
|
|
|
cmd 'focus parent';
|
|
|
|
cmd 'fullscreen global';
|
|
|
|
|
|
|
|
cmd '[id="' . $right1->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'upper right window focused');
|
2012-05-26 22:37:45 +02:00
|
|
|
|
|
|
|
cmd '[id="' . $right2->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'bottom right window focused');
|
2012-05-26 22:37:45 +02:00
|
|
|
|
2012-05-26 23:36:25 +02:00
|
|
|
cmd 'focus parent';
|
|
|
|
isnt($x->input_focus, $right2->id, 'bottom right window no longer focused');
|
|
|
|
|
|
|
|
cmd 'focus child';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'bottom right window focused again');
|
2012-05-26 23:36:25 +02:00
|
|
|
|
2012-05-27 00:53:02 +02:00
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'allowed focus up');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'allowed focus down');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus left';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'prevented focus left');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus right';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'prevented focus right');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'allowed focus wrap (down)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'allowed focus wrap (up)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
2012-05-26 22:37:45 +02:00
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# (depends on previous layout)
|
2012-05-26 23:36:25 +02:00
|
|
|
# Same tests when we're in non-global fullscreen mode. It should now be possible
|
|
|
|
# to focus a container in a different workspace.
|
2012-05-26 22:37:45 +02:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd 'focus parent';
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd 'fullscreen disable';
|
2012-05-26 22:37:45 +02:00
|
|
|
cmd 'fullscreen';
|
|
|
|
|
|
|
|
cmd '[id="' . $right1->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'upper right window focused');
|
2012-05-26 22:37:45 +02:00
|
|
|
|
|
|
|
cmd '[id="' . $right2->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'bottom right window focused');
|
2012-05-26 22:37:45 +02:00
|
|
|
|
2012-05-26 23:36:25 +02:00
|
|
|
cmd 'focus parent';
|
|
|
|
isnt($x->input_focus, $right2->id, 'bottom right window no longer focused');
|
|
|
|
|
|
|
|
cmd 'focus child';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'bottom right window focused again');
|
2012-05-26 23:36:25 +02:00
|
|
|
|
2012-05-27 00:53:02 +02:00
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'allowed focus up');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'allowed focus down');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'allowed focus wrap (down)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'allowed focus wrap (up)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
2012-10-08 18:28:08 +02:00
|
|
|
cmd 'focus left';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'focus left wrapped (no-op)');
|
2012-10-08 18:28:08 +02:00
|
|
|
|
|
|
|
cmd 'focus right';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($diff_ws, 'allowed focus change to different ws');
|
2012-04-21 21:34:25 +02:00
|
|
|
|
2012-10-08 18:28:08 +02:00
|
|
|
cmd 'focus left';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'focused back into fullscreen container');
|
2012-10-08 18:28:08 +02:00
|
|
|
|
|
|
|
cmd '[id="' . $diff_ws->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($diff_ws, 'allowed focus change to different ws by id');
|
2012-10-08 18:28:08 +02:00
|
|
|
|
2012-05-27 00:53:02 +02:00
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# (depends on previous layout)
|
2012-05-27 00:53:02 +02:00
|
|
|
# More testing of the interaction between wrapping and the fullscreen focus
|
|
|
|
# restrictions.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd '[id="' . $right1->id . '"] focus';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right1, 'upper right window focused');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus parent';
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd 'fullscreen disable';
|
2012-05-27 00:53:02 +02:00
|
|
|
cmd 'focus child';
|
|
|
|
|
|
|
|
cmd 'split v';
|
|
|
|
my $right12 = open_window;
|
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'bottom right window focused');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'split v';
|
|
|
|
my $right22 = open_window;
|
|
|
|
|
|
|
|
cmd 'focus parent';
|
|
|
|
cmd 'fullscreen';
|
|
|
|
cmd 'focus child';
|
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'focus did not leave parent container (1)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus down';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right22, 'focus did not leave parent container (2)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right2, 'focus did not leave parent container (3)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
|
|
|
cmd 'focus up';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($right22, 'focus did not leave parent container (4)');
|
2012-05-27 00:53:02 +02:00
|
|
|
|
2012-05-27 02:45:15 +02:00
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# (depends on previous layout)
|
2012-05-27 02:45:15 +02:00
|
|
|
# Ensure that moving in a direction doesn't violate the focus restrictions.
|
|
|
|
################################################################################
|
|
|
|
|
2012-05-27 03:13:16 +02:00
|
|
|
sub verify_move {
|
|
|
|
my $num = shift;
|
2012-05-27 02:45:15 +02:00
|
|
|
my $msg = shift;
|
|
|
|
my $nodes = get_ws_content($tmp2);
|
|
|
|
my $split = $nodes->[1];
|
|
|
|
my $fs = $split->{nodes}->[1];
|
2012-05-27 03:13:16 +02:00
|
|
|
is(scalar @{$fs->{nodes}}, $num, $msg);
|
2012-05-27 02:45:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd 'move left';
|
2012-05-27 03:13:16 +02:00
|
|
|
verify_move(2, 'prevented move left');
|
2012-05-27 02:45:15 +02:00
|
|
|
cmd 'move right';
|
2012-05-27 03:13:16 +02:00
|
|
|
verify_move(2, 'prevented move right');
|
2012-05-27 02:45:15 +02:00
|
|
|
cmd 'move down';
|
2012-05-27 03:13:16 +02:00
|
|
|
verify_move(2, 'prevented move down');
|
2012-05-27 02:45:15 +02:00
|
|
|
cmd 'move up';
|
|
|
|
cmd 'move up';
|
2012-05-27 03:13:16 +02:00
|
|
|
verify_move(2, 'prevented move up');
|
|
|
|
|
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# (depends on previous layout)
|
2012-05-27 03:13:16 +02:00
|
|
|
# Moving to a different workspace is allowed with per-output fullscreen
|
|
|
|
# containers.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd "move to workspace $tmp";
|
|
|
|
verify_move(1, 'did not prevent move to workspace by name');
|
|
|
|
|
|
|
|
cmd "workspace $tmp";
|
|
|
|
cmd "move to workspace $tmp2";
|
|
|
|
cmd "workspace $tmp2";
|
|
|
|
|
|
|
|
cmd "move to workspace prev";
|
|
|
|
verify_move(1, 'did not prevent move to workspace by position');
|
|
|
|
|
|
|
|
################################################################################
|
2018-09-13 13:09:35 +02:00
|
|
|
# (depends on previous layout)
|
2012-05-27 03:13:16 +02:00
|
|
|
# Ensure that is not allowed with global fullscreen containers.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
cmd "workspace $tmp";
|
|
|
|
cmd "move to workspace $tmp2";
|
|
|
|
cmd "workspace $tmp2";
|
|
|
|
|
|
|
|
cmd 'focus parent';
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd 'fullscreen disable';
|
2012-05-27 03:13:16 +02:00
|
|
|
cmd 'fullscreen global';
|
|
|
|
cmd 'focus child';
|
|
|
|
|
|
|
|
cmd "move to workspace $tmp";
|
|
|
|
verify_move(2, 'prevented move to workspace by name');
|
|
|
|
|
|
|
|
cmd "move to workspace prev";
|
|
|
|
verify_move(2, 'prevented move to workspace by position');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
kill_all_windows;
|
|
|
|
|
2017-09-17 01:20:48 +02:00
|
|
|
################################################################################
|
|
|
|
# Ensure it's possible to focus a window using the focus command despite
|
|
|
|
# fullscreen window blocking it. Fullscreen window should lose its fullscreen
|
|
|
|
# mode.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# first & second tiling, focus using id
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
my $first = open_window;
|
|
|
|
my $second = open_window;
|
|
|
|
cmd 'fullscreen';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($second, 'fullscreen window focused');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 1, '1 fullscreen window');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd '[id="' . $first->id . '"] focus';
|
2017-09-17 01:20:48 +02:00
|
|
|
sync_with_i3;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($first, 'correctly focused using id');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 0, 'no fullscreen windows');
|
|
|
|
|
|
|
|
kill_all_windows;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
# first floating, second tiling, focus using 'focus floating'
|
2017-09-17 01:20:48 +02:00
|
|
|
$tmp = fresh_workspace;
|
2017-12-26 13:16:15 +01:00
|
|
|
$first = open_floating_window;
|
|
|
|
$second = open_window;
|
2017-09-17 01:20:48 +02:00
|
|
|
cmd 'fullscreen';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($second, 'fullscreen window focused');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 1, '1 fullscreen window');
|
|
|
|
|
|
|
|
cmd 'focus floating';
|
|
|
|
sync_with_i3;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($first, 'correctly focused using focus floating');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 0, 'no fullscreen windows');
|
|
|
|
|
|
|
|
kill_all_windows;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
# first tiling, second floating, focus using 'focus tiling'
|
2017-09-17 01:20:48 +02:00
|
|
|
$tmp = fresh_workspace;
|
2017-12-26 13:16:15 +01:00
|
|
|
$first = open_window;
|
|
|
|
$second = open_floating_window;
|
2017-09-17 01:20:48 +02:00
|
|
|
cmd 'fullscreen';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($second, 'fullscreen window focused');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 1, '1 fullscreen window');
|
|
|
|
|
|
|
|
cmd 'focus tiling';
|
|
|
|
sync_with_i3;
|
2012-05-27 02:45:15 +02:00
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($first, 'correctly focused using focus tiling');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 0, 'no fullscreen windows');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
kill_all_windows;
|
|
|
|
|
2017-09-17 01:20:48 +02:00
|
|
|
################################################################################
|
|
|
|
# When the fullscreen window is in an other workspace it should maintain its
|
|
|
|
# fullscreen mode since it's not blocking the window to be focused.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
2017-12-26 13:16:15 +01:00
|
|
|
$first = open_window;
|
2017-09-17 01:20:48 +02:00
|
|
|
|
|
|
|
$tmp2 = fresh_workspace;
|
2017-12-26 13:16:15 +01:00
|
|
|
$second = open_window;
|
2017-09-17 01:20:48 +02:00
|
|
|
cmd 'fullscreen';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($second, 'fullscreen window focused');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp2, 1, '1 fullscreen window');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd '[id="' . $first->id . '"] focus';
|
2017-09-17 01:20:48 +02:00
|
|
|
sync_with_i3;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($first, 'correctly focused using focus id');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp, 0, 'no fullscreen windows on first workspace');
|
|
|
|
is_num_fullscreen($tmp2, 1, 'still one fullscreen window on second workspace');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
kill_all_windows;
|
|
|
|
|
2017-09-17 01:20:48 +02:00
|
|
|
################################################################################
|
|
|
|
# But a global window in another workspace is blocking the window to be focused.
|
|
|
|
# Ensure that it loses its fullscreen mode.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
$first = open_window;
|
|
|
|
|
|
|
|
$tmp2 = fresh_workspace;
|
|
|
|
$second = open_window;
|
|
|
|
cmd 'fullscreen global';
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($second, 'global window focused');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp2, 1, '1 fullscreen window');
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
cmd '[id="' . $first->id . '"] focus';
|
2017-09-17 01:20:48 +02:00
|
|
|
sync_with_i3;
|
|
|
|
|
2018-09-13 13:09:35 +02:00
|
|
|
verify_focus($first, 'correctly focused using focus id');
|
2017-09-17 01:20:48 +02:00
|
|
|
is_num_fullscreen($tmp2, 0, 'no fullscreen windows');
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Tests for "move to output" and "move workspace to output".
|
2011-03-07 00:06:27 +01:00
|
|
|
done_testing;
|