]> git.sur5r.net Git - i3/i3/blob - testcases/t/505-scratchpad-resolution.t
Merge branch 'master' into next
[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 $x->root->warp_pointer(0, 0);
33 sync_with_i3;
34
35 sub verify_scratchpad_doesnt_move {
36     my ($ws) = @_;
37
38     is_num_children($ws, 0, 'no nodes on this ws');
39
40     my $window = open_window;
41     is_num_children($ws, 1, 'one node on this ws');
42
43     cmd 'move scratchpad';
44     is_num_children($ws, 0, 'no nodes on this ws');
45
46     my $last_x = -1;
47     for (1 .. 20) {
48         cmd 'scratchpad show';
49         is(scalar @{get_ws($ws)->{floating_nodes}}, 1, 'one floating node on this ws');
50
51         # Verify that the coordinates are within bounds.
52         my $content = get_ws($ws);
53         my $srect = $content->{floating_nodes}->[0]->{rect};
54         if ($last_x > -1) {
55             is($srect->{x}, $last_x, 'scratchpad window did not move');
56         }
57         $last_x = $srect->{x};
58         cmd 'scratchpad show';
59     }
60
61     # We need to kill the scratchpad window, otherwise scratchpad show in
62     # subsequent calls of verify_scratchpad_doesnt_move will cycle between all
63     # the windows.
64     cmd 'scratchpad show';
65     cmd 'kill';
66 }
67
68 ################################################################################
69 # test it on the left output first (1366x768)
70 ################################################################################
71
72 my $second = fresh_workspace(output => 0);
73 verify_scratchpad_doesnt_move($second);
74
75 ################################################################################
76 # now on the right output (1024x768)
77 ################################################################################
78
79 $x->root->warp_pointer(683 + 10, 0);
80 sync_with_i3;
81
82 my $third = fresh_workspace(output => 1);
83 verify_scratchpad_doesnt_move($third);
84
85 exit_gracefully($pid);
86
87 done_testing;