aboutsummaryrefslogtreecommitdiff
path: root/testcases/t/308-focus_wrapping.t
blob: 18d426bb9cea9fdecc4e4942164e1d5d6858fcd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
#!perl
# vim:ts=4:sw=4:expandtab
#
# Please read the following documents before working on tests:
# • https://build.i3wm.org/docs/testsuite.html
#   (or docs/testsuite)
#
# • https://build.i3wm.org/docs/lib-i3test.html
#   (alternatively: perldoc ./testcases/lib/i3test.pm)
#
# • https://build.i3wm.org/docs/ipc.html
#   (or docs/ipc)
#
# • https://i3wm.org/downloads/modern_perl_a4.pdf
#   (unless you are already familiar with Perl)
#
# Tests focus_wrapping yes|no|force|workspace with cmp_tree
# Tickets: #2180 #2352
use i3test i3_autostart => 0;

my $pid = 0;

sub focus_wrapping {
    my ($setting) = @_;

    print "--------------------------------------------------------------------------------\n";
    print "                             focus_wrapping $setting\n";
    print "--------------------------------------------------------------------------------\n";
    exit_gracefully($pid) if $pid > 0;

    my $config = <<"EOT";
# i3 config file (v4)
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1

fake-outputs 1024x768+0+0,1024x768+1024+0,1024x768+1024+768,1024x768+0+768
workspace left-top output fake-0
workspace right-top output fake-1
workspace right-bottom output fake-2
workspace left-bottom output fake-3

focus_wrapping $setting
EOT
    $pid = launch_with_config($config);
}

###############################################################################
focus_wrapping('yes');
###############################################################################

cmp_tree(
    msg => 'Normal focus up - should work for all options',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Normal focus right - should work for all options',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b] V[c d T[e f* g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
    });
cmp_tree(
    msg => 'Focus leaves workspace vertically',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus down';
        is(focused_ws, 'left-bottom', 'Correct workspace focused');
    });
cmp_tree(
    msg => 'Focus wraps vertically',
    layout_before => 'S[a* b] V[c d T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Focus wraps horizontally',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g*]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Directional focus in the orientation of the parent does not wrap',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Focus leaves workspace horizontally',
    layout_before => 'S[a b] V[c d* T[e f g*]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
        is(focused_ws, 'right-top', 'Correct workspace focused');
    });

###############################################################################
focus_wrapping('no');
# See issue #2352
###############################################################################

cmp_tree(
    msg => 'Normal focus up - should work for all options',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Normal focus right - should work for all options',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b] V[c d T[e f* g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
    });
cmp_tree(
    msg => 'Focus leaves workspace vertically',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus down';
        is(focused_ws, 'left-bottom', 'Correct workspace focused');
    });
cmp_tree(
    msg => 'Focus does not wrap vertically',
    layout_before => 'S[a* b] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Focus does not wrap horizontally',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Directional focus in the orientation of the parent does not wrap',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Focus leaves workspace horizontally',
    layout_before => 'S[a b] V[c d* T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
        is(focused_ws, 'right-top', 'Correct workspace focused');
    });

###############################################################################
focus_wrapping('force');
###############################################################################

cmp_tree(
    msg => 'Normal focus up - should work for all options',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Normal focus right - should work for all options',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b] V[c d T[e f* g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
    });
cmp_tree(
    msg => 'Focus does not leave workspace vertically',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus down';
        is(focused_ws, 'left-top', 'Correct workspace focused');
    });
cmp_tree(
    msg => 'Focus wraps vertically',
    layout_before => 'S[a* b] V[c d T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Focus wraps horizontally (focus direction different than parent\'s orientation)',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g*]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Directional focus in the orientation of the parent wraps',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b] V[c d T[e f g*]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(    # 'focus_wrapping force' exclusive test
    msg => 'But leaves when selecting parent',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus parent, focus right';
    });
cmp_tree(
    msg => 'Focus does not leave workspace horizontally',
    layout_before => 'S[a b] V[c d* T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
        is(focused_ws, 'left-top', 'Correct workspace focused');
    });
cmp_tree(    # 'focus_wrapping force|workspace' exclusive test
    msg => 'But leaves when selecting parent x2',
    layout_before => 'S[a b] V[c d* T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus parent, focus parent, focus right';
        is(focused_ws, 'right-top', 'Correct workspace focused');
    });

###############################################################################
focus_wrapping('workspace');
# See issue #2180
###############################################################################

cmp_tree(
    msg => 'Normal focus up - should work for all options',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Normal focus right - should work for all options',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b] V[c d T[e f* g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
    });
cmp_tree(
    msg => 'Focus does not leave workspace vertically',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a* b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus down';
        is(focused_ws, 'left-top', 'Correct workspace focused');
    });
cmp_tree(
    msg => 'Focus wraps vertically',
    layout_before => 'S[a* b] V[c d T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus up';
    });
cmp_tree(
    msg => 'Focus wraps horizontally',
    layout_before => 'S[a b*] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g*]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Directional focus in the orientation of the parent does not wrap',
    layout_before => 'S[a b] V[c d T[e* f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus left';
    });
cmp_tree(
    msg => 'Focus does not leave workspace horizontally',
    layout_before => 'S[a b] V[c d* T[e f g]]',
    layout_after => 'S[a b*] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus right';
        is(focused_ws, 'left-top', 'Correct workspace focused');
    });
cmp_tree(    # 'focus_wrapping force|workspace' exclusive test
    msg => 'But leaves when selecting parent x2',
    layout_before => 'S[a b] V[c d* T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        cmd 'focus parent, focus parent, focus right';
        is(focused_ws, 'right-top', 'Correct workspace focused');
    });

cmp_tree(    # 'focus_wrapping workspace' exclusive test
    msg => 'x',
    layout_before => 'S[a* b] V[c d T[e f g]]',
    layout_after => 'S[a b] V[c d T[e f g]]',
    ws => 'left-top',
    cb => sub {
        subtest 'random tests' => sub {
            my @directions = qw(left right top down);
            for my $i (1 .. 50) {
                my $direction = $directions[rand @directions];
                cmd "focus $direction";

                return unless is(focused_ws, 'left-top', "'focus $direction' did not change workspace");
            }
        };
    });

exit_gracefully($pid);

done_testing;