]> git.sur5r.net Git - i3/i3/blob - testcases/t/144-regress-floating-resize.t
testcases: let i3test.pm export $x, adapt testcases
[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 cmd 'exec /usr/bin/urxvt';
15 wait_for_map $x;
16 cmd 'exec /usr/bin/urxvt';
17 wait_for_map $x;
18
19 my ($nodes, $focus) = get_ws_content($tmp);
20 my $old_sum = sum map { $_->{rect}->{width} } @{$nodes};
21 #cmd 'open';
22 cmd 'resize grow left 10 px or 25 ppt';
23 cmd 'split v';
24 #cmd 'open';
25 cmd 'exec /usr/bin/urxvt';
26 wait_for_map $x;
27
28 cmd 'mode toggle';
29 sync_with_i3 $x;
30
31 cmd 'kill';
32 wait_for_unmap $x;
33
34 ($nodes, $focus) = get_ws_content($tmp);
35 my $new_sum = sum map { $_->{rect}->{width} } @{$nodes};
36
37 is($old_sum, $new_sum, 'combined container width is still equal');
38
39 done_testing;