]> git.sur5r.net Git - i3/i3/blob - testcases/t/135-floating-focus.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 135-floating-focus.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5
6 my $tmp = fresh_workspace;
7
8 #############################################################################
9 # 1: see if focus stays the same when toggling tiling/floating mode
10 #############################################################################
11
12 my $first = open_window;
13 my $second = open_window;
14
15 is($x->input_focus, $second->id, 'second window focused');
16
17 cmd 'floating enable';
18 cmd 'floating disable';
19
20 is($x->input_focus, $second->id, 'second window still focused after mode toggle');
21
22 #############################################################################
23 # 2: see if focus stays on the current floating window if killing another
24 # floating window
25 #############################################################################
26
27 $tmp = fresh_workspace;
28
29 $first = open_window;    # window 2
30 $second = open_window;   # window 3
31 my $third = open_window; # window 4
32
33 is($x->input_focus, $third->id, 'last container focused');
34
35 cmd 'floating enable';
36
37 cmd '[id="' . $second->id . '"] focus';
38
39 is($x->input_focus, $second->id, 'second con focused');
40
41 cmd 'floating enable';
42
43 # now kill the third one (it's floating). focus should stay unchanged
44 cmd '[id="' . $third->id . '"] kill';
45
46 wait_for_unmap($third);
47
48 is($x->input_focus, $second->id, 'second con still focused after killing third');
49
50
51 #############################################################################
52 # 3: see if the focus gets reverted correctly when closing floating clients
53 # (first to the next floating client, then to the last focused tiling client)
54 #############################################################################
55
56 $tmp = fresh_workspace;
57
58 $first = open_window({ background_color => '#ff0000' });    # window 5
59 $second = open_window({ background_color => '#00ff00' });   # window 6
60 $third = open_window({ background_color => '#0000ff' }); # window 7
61
62 is($x->input_focus, $third->id, 'last container focused');
63
64 cmd 'floating enable';
65
66 cmd '[id="' . $second->id . '"] focus';
67
68 is($x->input_focus, $second->id, 'second con focused');
69
70 cmd 'floating enable';
71
72 # now kill the second one. focus should fall back to the third one, which is
73 # also floating
74 cmd 'kill';
75 wait_for_unmap($second);
76
77 is($x->input_focus, $third->id, 'third con focused');
78
79 cmd 'kill';
80 wait_for_unmap($third);
81
82 is($x->input_focus, $first->id, 'first con focused after killing all floating cons');
83
84 #############################################################################
85 # 4: same test as 3, but with another split con
86 #############################################################################
87
88 $tmp = fresh_workspace;
89
90 $first = open_window({ background_color => '#ff0000' });    # window 5
91 cmd 'split v';
92 cmd 'layout stacked';
93 $second = open_window({ background_color => '#00ff00' });   # window 6
94 $third = open_window({ background_color => '#0000ff' }); # window 7
95
96 is($x->input_focus, $third->id, 'last container focused');
97
98 cmd 'floating enable';
99
100 cmd '[id="' . $second->id . '"] focus';
101
102 is($x->input_focus, $second->id, 'second con focused');
103
104 cmd 'floating enable';
105
106 sync_with_i3;
107
108 # now kill the second one. focus should fall back to the third one, which is
109 # also floating
110 cmd 'kill';
111 wait_for_unmap($second);
112
113 is($x->input_focus, $third->id, 'third con focused');
114
115 cmd 'kill';
116 wait_for_unmap($third);
117
118 is($x->input_focus, $first->id, 'first con focused after killing all floating cons');
119
120 #############################################################################
121 # 5: see if the 'focus tiling' and 'focus floating' commands work
122 #############################################################################
123
124 $tmp = fresh_workspace;
125
126 $first = open_window({ background_color => '#ff0000' });    # window 8
127 $second = open_window({ background_color => '#00ff00' });   # window 9
128
129 is($x->input_focus, $second->id, 'second container focused');
130
131 cmd 'floating enable';
132
133 is($x->input_focus, $second->id, 'second container focused');
134
135 cmd 'focus tiling';
136
137 is($x->input_focus, $first->id, 'first (tiling) container focused');
138
139 cmd 'focus floating';
140
141 is($x->input_focus, $second->id, 'second (floating) container focused');
142
143 cmd 'focus floating';
144
145 is($x->input_focus, $second->id, 'second (floating) container still focused');
146
147 cmd 'focus mode_toggle';
148
149 is($x->input_focus, $first->id, 'first (tiling) container focused');
150
151 cmd 'focus mode_toggle';
152
153 is($x->input_focus, $second->id, 'second (floating) container focused');
154
155 #############################################################################
156 # 6: see if switching floating focus using the focus left/right command works
157 #############################################################################
158
159 $tmp = fresh_workspace;
160
161 $first = open_floating_window({ background_color => '#ff0000' });# window 10
162 $second = open_floating_window({ background_color => '#00ff00' }); # window 11
163 $third = open_floating_window({ background_color => '#0000ff' }); # window 12
164
165 is($x->input_focus, $third->id, 'third container focused');
166
167 cmd 'focus left';
168
169 is($x->input_focus, $second->id, 'second container focused');
170
171 cmd 'focus left';
172
173 is($x->input_focus, $first->id, 'first container focused');
174
175 cmd 'focus left';
176
177 is($x->input_focus, $third->id, 'focus wrapped to third container');
178
179 cmd 'focus right';
180
181 is($x->input_focus, $first->id, 'focus wrapped to first container');
182
183 cmd 'focus right';
184
185 is($x->input_focus, $second->id, 'focus on second container');
186
187 done_testing;