]> git.sur5r.net Git - i3/i3/blob - testcases/t/534-dont-warp.t
Kill windows between tests
[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 # • http://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • http://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • http://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_autostart => 0;
22
23 # Ensure the pointer is at (0, 0) so that we really start on the first
24 # (the left) workspace.
25 $x->root->warp_pointer(0, 0);
26
27 my $config = <<EOT;
28 # i3 config file (v4)
29 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
30
31 fake-outputs 1024x768+0+0,1024x768+1024+0
32
33 focus_follows_mouse no
34 EOT
35
36 my $pid = launch_with_config($config);
37
38 cmd 'focus output fake-0';
39 my $s0_ws = fresh_workspace;
40
41 cmd 'focus output fake-1';
42 my $s1_ws = fresh_workspace;
43 open_window;
44
45 # Move mouse to fake-0
46 sync_with_i3;
47 $x->root->warp_pointer(500, 0);
48 sync_with_i3;
49
50 my $dropdown = open_floating_window;
51 $dropdown->rect(X11::XCB::Rect->new(x => 1, y => 1, width => 100, height => 100));
52 sync_with_i3;
53
54 my $cookie = $x->query_pointer($dropdown->{id});
55 my $reply = $x->query_pointer_reply($cookie->{sequence});
56 cmp_ok($reply->{root_x}, '<', 1024, 'pointer still on fake-0');
57 cmp_ok($reply->{root_y}, '<', 768, 'pointer still on fake-0');
58
59 exit_gracefully($pid);
60
61 done_testing;