Codebase list i3-gaps / 45d56664-73be-460d-8b25-6910c24fc6ca/main testcases / t / 520-regress-focus-direction-floating.t
45d56664-73be-460d-8b25-6910c24fc6ca/main

Tree @45d56664-73be-460d-8b25-6910c24fc6ca/main (Download .tar.gz)

520-regress-focus-direction-floating.t @45d56664-73be-460d-8b25-6910c24fc6ca/mainraw · history · blame

#!perl
# vim:ts=4:sw=4:expandtab
#
# Please read the following documents before working on tests:
# • https://build.i3wm.org/docs/testsuite.html
#   (or docs/testsuite)
#
# • https://build.i3wm.org/docs/lib-i3test.html
#   (alternatively: perldoc ./testcases/lib/i3test.pm)
#
# • https://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)
#
# Ensure that `focus [direction]` will focus an existing floating con when no
# tiling con exists on the output in [direction] when focusing across outputs
# Bug still in: 4.7.2-204-g893dbae
use i3test i3_config => <<EOT;
# i3 config file (v4)
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1

workspace ws_left output fake-0
workspace ws_right output fake-1

mouse_warping none

fake-outputs 1024x768+0+0,1024x768+1024+0
EOT

cmd 'workspace ws_left';
my $win = open_window();

cmd 'floating enable';
cmd 'focus output right';
cmd 'focus left';

is($x->input_focus, $win->id,
    'Focusing across outputs with `focus [direction]` should focus an existing floating con when no tiling con exists on the output in [direction].');

done_testing;