]> git.sur5r.net Git - i3/i3/blob - testcases/t/144-regress-floating-resize.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 144-regress-floating-resize.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Regression: when resizing two containers on a workspace, opening a floating
5 # client, then closing it again, i3 will re-distribute the space on the
6 # workspace as if a tiling container was closed, leading to the containers
7 # taking much more space than they possibly could.
8 #
9 use i3test;
10 use List::Util qw(sum);
11
12 my $tmp = fresh_workspace;
13
14 my $first = open_window;
15 my $second = open_window;
16
17 my ($nodes, $focus) = get_ws_content($tmp);
18 my $old_sum = sum map { $_->{rect}->{width} } @{$nodes};
19
20 cmd 'resize grow left 10 px or 25 ppt';
21 cmd 'split v';
22
23 sync_with_i3;
24
25 my $third = open_window;
26
27 cmd 'mode toggle';
28 sync_with_i3;
29
30 cmd 'kill';
31 sync_with_i3;
32
33 ($nodes, $focus) = get_ws_content($tmp);
34 my $new_sum = sum map { $_->{rect}->{width} } @{$nodes};
35
36 is($old_sum, $new_sum, 'combined container width is still equal');
37
38 done_testing;