]> git.sur5r.net Git - i3/i3/blob - testcases/t/53-floating-originalsize.t
Merge branch 'fix-focus-ipc'
[i3/i3] / testcases / t / 53-floating-originalsize.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Test if the requested width/height is set after making the window floating.
5 #
6 use X11::XCB qw(:all);
7 use i3test;
8
9 my $tmp = fresh_workspace;
10
11 my $x = X11::XCB::Connection->new;
12
13 # Create a floating window which is smaller than the minimum enforced size of i3
14 my $window = $x->root->create_child(
15     class => WINDOW_CLASS_INPUT_OUTPUT,
16     rect => [ 0, 0, 400, 150],
17     background_color => '#C0C0C0',
18 );
19
20 isa_ok($window, 'X11::XCB::Window');
21
22 $window->map;
23
24 sleep 0.25;
25
26 my ($absolute, $top) = $window->rect;
27
28 ok($window->mapped, 'Window is mapped');
29 cmp_ok($absolute->{width}, '>', 400, 'i3 raised the width');
30 cmp_ok($absolute->{height}, '>', 150, 'i3 raised the height');
31
32 cmd 'floating toggle';
33 sleep 0.25;
34
35 ($absolute, $top) = $window->rect;
36
37 diag('new width: ' . $absolute->{width});
38 diag('new height: ' . $absolute->{height});
39
40 # we compare with a tolerance of ± 20 pixels for borders in each direction
41 # (overkill, but hey)
42 cmp_ok($absolute->{width}, '>', 400-20, 'width now > 380');
43 cmp_ok($absolute->{width}, '<', 400+20, 'width now < 420');
44 cmp_ok($absolute->{height}, '>', 150-20, 'height now > 130');
45 cmp_ok($absolute->{height}, '<', 150+20, 'height now < 170');
46
47 #cmp_ok($absolute->{width}, '>=', 75, 'i3 raised the width to 75');
48 #cmp_ok($absolute->{height}, '>=', 50, 'i3 raised the height to 50');
49
50 done_testing;