]> git.sur5r.net Git - i3/i3/blob - testcases/t/156-fullscreen-focus.t
Fix fullscreen focus bug and corresponding test flaw
[i3/i3] / testcases / t / 156-fullscreen-focus.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 # Test if new containers get focused when there is a fullscreen container at
18 # the time of launching the new one. Also make sure that focusing containers
19 # in other workspaces work even when there is a fullscreen container.
20 #
21 use i3test i3_autostart => 0;
22
23 # Screen setup looks like this:
24 # +----+----+
25 # | S1 | S2 |
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 EOT
33
34 my $pid = launch_with_config($config);
35
36 my $i3 = i3(get_socket_path());
37
38 my $tmp = fresh_workspace;
39
40 ################################################################################
41 # Open the left window.
42 ################################################################################
43
44 my $left = open_window({ background_color => '#ff0000' });
45
46 is($x->input_focus, $left->id, 'left window focused');
47
48 diag("left = " . $left->id);
49
50 ################################################################################
51 # Open the right window.
52 ################################################################################
53
54 my $right = open_window({ background_color => '#00ff00' });
55
56 diag("right = " . $right->id);
57
58 ################################################################################
59 # Set the right window to fullscreen.
60 ################################################################################
61
62 cmd 'nop setting fullscreen';
63 cmd 'fullscreen';
64
65 ################################################################################
66 # Open a third window. Since we're fullscreen, the window won't be # mapped, so
67 # don't wait for it to be mapped. Instead, just send the map request and sync
68 # with i3 to make sure i3 recognizes it.
69 ################################################################################
70
71 my $third = open_window({
72         background_color => '#0000ff',
73         name => 'Third window',
74         dont_map => 1,
75     });
76
77 $third->map;
78
79 sync_with_i3;
80
81 diag("third = " . $third->id);
82
83 ################################################################################
84 # Move the window to a different workspace, and verify that the third window now
85 # gets focused in the current workspace.
86 ################################################################################
87
88 my $tmp2 = get_unused_workspace;
89
90 cmd "move workspace $tmp2";
91
92 is($x->input_focus, $third->id, 'third window focused');
93
94 ################################################################################
95 # Ensure that moving a window to a workspace which has a fullscreen window does
96 # not focus it (otherwise the user cannot get out of fullscreen mode anymore).
97 ################################################################################
98
99 $tmp = fresh_workspace;
100
101 my $fullscreen_window = open_window;
102 cmd 'fullscreen';
103
104 my $nodes = get_ws_content($tmp);
105 is(scalar @$nodes, 1, 'precisely one window');
106 is($nodes->[0]->{focused}, 1, 'fullscreen window focused');
107 my $old_id = $nodes->[0]->{id};
108
109 $tmp2 = fresh_workspace;
110 my $move_window = open_window;
111 cmd "move workspace $tmp";
112
113 cmd "workspace $tmp";
114
115 $nodes = get_ws_content($tmp);
116 is(scalar @$nodes, 2, 'precisely two windows');
117 is($nodes->[0]->{id}, $old_id, 'id unchanged');
118 is($nodes->[0]->{focused}, 1, 'fullscreen window focused');
119
120 ################################################################################
121 # Ensure it's possible to change focus if it doesn't escape the fullscreen
122 # container with fullscreen global. We can't even focus a container in a
123 # different workspace.
124 ################################################################################
125
126 cmd 'fullscreen';
127
128 $tmp = fresh_workspace;
129 cmd "workspace $tmp";
130 my $diff_ws = open_window;
131
132 $tmp2 = fresh_workspace;
133 cmd "workspace $tmp2";
134 cmd 'split h';
135
136 $left = open_window;
137 my $right1 = open_window;
138 cmd 'split v';
139 my $right2 = open_window;
140
141 cmd 'focus parent';
142 cmd 'fullscreen global';
143
144 cmd '[id="' . $right1->id . '"] focus';
145 is($x->input_focus, $right1->id, 'upper right window focused');
146
147 cmd '[id="' . $right2->id . '"] focus';
148 is($x->input_focus, $right2->id, 'bottom right window focused');
149
150 cmd 'focus parent';
151 isnt($x->input_focus, $right2->id, 'bottom right window no longer focused');
152
153 cmd 'focus child';
154 is($x->input_focus, $right2->id, 'bottom right window focused again');
155
156 cmd '[id="' . $left->id . '"] focus';
157 is($x->input_focus, $right2->id, 'prevented focus change to left window');
158
159 cmd 'focus up';
160 is($x->input_focus, $right1->id, 'allowed focus up');
161
162 cmd 'focus down';
163 is($x->input_focus, $right2->id, 'allowed focus down');
164
165 cmd 'focus left';
166 is($x->input_focus, $right2->id, 'prevented focus left');
167
168 cmd 'focus right';
169 is($x->input_focus, $right2->id, 'prevented focus right');
170
171 cmd 'focus down';
172 is($x->input_focus, $right1->id, 'allowed focus wrap (down)');
173
174 cmd 'focus up';
175 is($x->input_focus, $right2->id, 'allowed focus wrap (up)');
176
177 cmd '[id="' . $diff_ws->id . '"] focus';
178 is($x->input_focus, $right2->id, 'prevented focus change to different ws');
179
180 ################################################################################
181 # Same tests when we're in non-global fullscreen mode. It should now be possible
182 # to focus a container in a different workspace.
183 ################################################################################
184
185 cmd 'focus parent';
186 cmd 'fullscreen global';
187 cmd 'fullscreen';
188
189 cmd '[id="' . $right1->id . '"] focus';
190 is($x->input_focus, $right1->id, 'upper right window focused');
191
192 cmd '[id="' . $right2->id . '"] focus';
193 is($x->input_focus, $right2->id, 'bottom right window focused');
194
195 cmd 'focus parent';
196 isnt($x->input_focus, $right2->id, 'bottom right window no longer focused');
197
198 cmd 'focus child';
199 is($x->input_focus, $right2->id, 'bottom right window focused again');
200
201 cmd '[id="' . $left->id . '"] focus';
202 is($x->input_focus, $right2->id, 'prevented focus change to left window');
203
204 cmd 'focus up';
205 is($x->input_focus, $right1->id, 'allowed focus up');
206
207 cmd 'focus down';
208 is($x->input_focus, $right2->id, 'allowed focus down');
209
210 cmd 'focus left';
211 is($x->input_focus, $right2->id, 'prevented focus left');
212
213 cmd 'focus right';
214 is($x->input_focus, $right2->id, 'prevented focus right');
215
216 cmd 'focus down';
217 is($x->input_focus, $right1->id, 'allowed focus wrap (down)');
218
219 cmd 'focus up';
220 is($x->input_focus, $right2->id, 'allowed focus wrap (up)');
221
222 cmd '[id="' . $diff_ws->id . '"] focus';
223 is($x->input_focus, $diff_ws->id, 'allowed focus change to different ws');
224
225 ################################################################################
226 # More testing of the interaction between wrapping and the fullscreen focus
227 # restrictions.
228 ################################################################################
229
230 cmd '[id="' . $right1->id . '"] focus';
231 is($x->input_focus, $right1->id, 'upper right window focused');
232
233 cmd 'focus parent';
234 cmd 'fullscreen';
235 cmd 'focus child';
236
237 cmd 'split v';
238 my $right12 = open_window;
239
240 cmd 'focus down';
241 is($x->input_focus, $right2->id, 'bottom right window focused');
242
243 cmd 'split v';
244 my $right22 = open_window;
245
246 cmd 'focus parent';
247 cmd 'fullscreen';
248 cmd 'focus child';
249
250 cmd 'focus down';
251 is($x->input_focus, $right2->id, 'focus did not leave parent container (1)');
252
253 cmd 'focus down';
254 is($x->input_focus, $right22->id, 'focus did not leave parent container (2)');
255
256 cmd 'focus up';
257 is($x->input_focus, $right2->id, 'focus did not leave parent container (3)');
258
259 cmd 'focus up';
260 is($x->input_focus, $right22->id, 'focus did not leave parent container (4)');
261
262 ################################################################################
263 # Ensure that moving in a direction doesn't violate the focus restrictions.
264 ################################################################################
265
266 sub verify_move {
267     my $num = shift;
268     my $msg = shift;
269     my $nodes = get_ws_content($tmp2);
270     my $split = $nodes->[1];
271     my $fs = $split->{nodes}->[1];
272     is(scalar @{$fs->{nodes}}, $num, $msg);
273 }
274
275 cmd 'move left';
276 verify_move(2, 'prevented move left');
277 cmd 'move right';
278 verify_move(2, 'prevented move right');
279 cmd 'move down';
280 verify_move(2, 'prevented move down');
281 cmd 'move up';
282 cmd 'move up';
283 verify_move(2, 'prevented move up');
284
285 ################################################################################
286 # Moving to a different workspace is allowed with per-output fullscreen
287 # containers.
288 ################################################################################
289
290 cmd "move to workspace $tmp";
291 verify_move(1, 'did not prevent move to workspace by name');
292
293 cmd "workspace $tmp";
294 cmd "move to workspace $tmp2";
295 cmd "workspace $tmp2";
296
297 cmd "move to workspace prev";
298 verify_move(1, 'did not prevent move to workspace by position');
299
300 ################################################################################
301 # Ensure that is not allowed with global fullscreen containers.
302 ################################################################################
303
304 cmd "workspace $tmp";
305 cmd "move to workspace $tmp2";
306 cmd "workspace $tmp2";
307
308 cmd 'focus parent';
309 cmd 'fullscreen';
310 cmd 'fullscreen global';
311 cmd 'focus child';
312
313 cmd "move to workspace $tmp";
314 verify_move(2, 'prevented move to workspace by name');
315
316 cmd "move to workspace prev";
317 verify_move(2, 'prevented move to workspace by position');
318
319 # TODO: Tests for "move to output" and "move workspace to output".
320
321 exit_gracefully($pid);
322
323 done_testing;