]> git.sur5r.net Git - i3/i3/blob - testcases/t/505-scratchpad-resolution.t
tests: sync_with_i3 before warping pointer
[i3/i3] / testcases / t / 505-scratchpad-resolution.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 that scratchpad windows don’t move due to floating point caulcation
18 # errors when repeatedly hiding/showing, no matter what display resolution.
19 #
20 use i3test i3_autostart => 0;
21
22 my $config = <<EOT;
23 # i3 config file (v4)
24 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
25
26 fake-outputs 683x768+0+0,1024x768+683+0
27 EOT
28 my $pid = launch_with_config($config);
29
30 my $i3 = i3(get_socket_path());
31
32 sync_with_i3;
33 $x->root->warp_pointer(0, 0);
34 sync_with_i3;
35
36 sub verify_scratchpad_doesnt_move {
37     my ($ws) = @_;
38
39     is_num_children($ws, 0, 'no nodes on this ws');
40
41     my $window = open_window;
42     is_num_children($ws, 1, 'one node on this ws');
43
44     cmd 'move scratchpad';
45     is_num_children($ws, 0, 'no nodes on this ws');
46
47     my $last_x = -1;
48     for (1 .. 20) {
49         cmd 'scratchpad show';
50         is(scalar @{get_ws($ws)->{floating_nodes}}, 1, 'one floating node on this ws');
51
52         # Verify that the coordinates are within bounds.
53         my $content = get_ws($ws);
54         my $srect = $content->{floating_nodes}->[0]->{rect};
55         if ($last_x > -1) {
56             is($srect->{x}, $last_x, 'scratchpad window did not move');
57         }
58         $last_x = $srect->{x};
59         cmd 'scratchpad show';
60     }
61
62     # We need to kill the scratchpad window, otherwise scratchpad show in
63     # subsequent calls of verify_scratchpad_doesnt_move will cycle between all
64     # the windows.
65     cmd 'scratchpad show';
66     cmd 'kill';
67 }
68
69 ################################################################################
70 # test it on the left output first (1366x768)
71 ################################################################################
72
73 my $second = fresh_workspace(output => 0);
74 verify_scratchpad_doesnt_move($second);
75
76 ################################################################################
77 # now on the right output (1024x768)
78 ################################################################################
79
80 sync_with_i3;
81 $x->root->warp_pointer(683 + 10, 0);
82 sync_with_i3;
83
84 my $third = fresh_workspace(output => 1);
85 verify_scratchpad_doesnt_move($third);
86
87 exit_gracefully($pid);
88
89 done_testing;