2017-08-20 17:07:23 +02:00
|
|
|
|
#!perl
|
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
#
|
|
|
|
|
# Please read the following documents before working on tests:
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2017-08-20 17:07:23 +02:00
|
|
|
|
# (or docs/testsuite)
|
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2017-08-20 17:07:23 +02:00
|
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2017-08-20 17:07:23 +02:00
|
|
|
|
# (or docs/ipc)
|
|
|
|
|
#
|
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
|
# (unless you are already familiar with Perl)
|
|
|
|
|
#
|
|
|
|
|
# Verifies i3 doesn’t warp when a new floating window is opened under the cursor
|
|
|
|
|
# over an unfocused workspace.
|
|
|
|
|
# Ticket: #2681
|
|
|
|
|
# Bug still in: 4.13-210-g80c23afa
|
2017-09-14 12:30:42 +02:00
|
|
|
|
use i3test i3_config => <<EOT;
|
2017-08-20 17:07:23 +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
|
|
|
|
|
|
|
|
|
|
focus_follows_mouse no
|
|
|
|
|
EOT
|
|
|
|
|
|
|
|
|
|
cmd 'focus output fake-0';
|
|
|
|
|
my $s0_ws = fresh_workspace;
|
|
|
|
|
|
|
|
|
|
cmd 'focus output fake-1';
|
|
|
|
|
my $s1_ws = fresh_workspace;
|
|
|
|
|
open_window;
|
|
|
|
|
|
|
|
|
|
# Move mouse to fake-0
|
|
|
|
|
sync_with_i3;
|
|
|
|
|
$x->root->warp_pointer(500, 0);
|
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
|
|
my $dropdown = open_floating_window;
|
|
|
|
|
$dropdown->rect(X11::XCB::Rect->new(x => 1, y => 1, width => 100, height => 100));
|
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
|
|
my $cookie = $x->query_pointer($dropdown->{id});
|
|
|
|
|
my $reply = $x->query_pointer_reply($cookie->{sequence});
|
|
|
|
|
cmp_ok($reply->{root_x}, '<', 1024, 'pointer still on fake-0');
|
|
|
|
|
cmp_ok($reply->{root_y}, '<', 768, 'pointer still on fake-0');
|
|
|
|
|
|
|
|
|
|
done_testing;
|