]> git.sur5r.net Git - i3/i3/blob - testcases/t/534-dont-warp.t
Merge pull request #3435 from vivien/i3-msg/subscribe
[i3/i3] / testcases / t / 534-dont-warp.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • https://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • https://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • https://build.i3wm.org/docs/ipc.html
12 #   (or docs/ipc)
13 #
14 # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
15 #   (unless you are already familiar with Perl)
16 #
17 # Verifies i3 doesn’t warp when a new floating window is opened under the cursor
18 # over an unfocused workspace.
19 # Ticket: #2681
20 # Bug still in: 4.13-210-g80c23afa
21 use i3test i3_config => <<EOT;
22 # i3 config file (v4)
23 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
24
25 fake-outputs 1024x768+0+0,1024x768+1024+0
26
27 focus_follows_mouse no
28 EOT
29
30 cmd 'focus output fake-0';
31 my $s0_ws = fresh_workspace;
32
33 cmd 'focus output fake-1';
34 my $s1_ws = fresh_workspace;
35 open_window;
36
37 # Move mouse to fake-0
38 sync_with_i3;
39 $x->root->warp_pointer(500, 0);
40 sync_with_i3;
41
42 my $dropdown = open_floating_window;
43 $dropdown->rect(X11::XCB::Rect->new(x => 1, y => 1, width => 100, height => 100));
44 sync_with_i3;
45
46 my $cookie = $x->query_pointer($dropdown->{id});
47 my $reply = $x->query_pointer_reply($cookie->{sequence});
48 cmp_ok($reply->{root_x}, '<', 1024, 'pointer still on fake-0');
49 cmp_ok($reply->{root_y}, '<', 768, 'pointer still on fake-0');
50
51 done_testing;