]> git.sur5r.net Git - i3/i3/blob - testcases/t/04-floating.t
Merge branch 'tree' into next
[i3/i3] / testcases / t / 04-floating.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5 use X11::XCB qw(:all);
6
7 BEGIN {
8     use_ok('X11::XCB::Window');
9 }
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, 30, 30],
17     background_color => '#C0C0C0',
18     # replace the type with 'utility' as soon as the coercion works again in X11::XCB
19     window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
20 );
21
22 isa_ok($window, 'X11::XCB::Window');
23
24 $window->map;
25
26 sleep 0.25;
27
28 my ($absolute, $top) = $window->rect;
29
30 ok($window->mapped, 'Window is mapped');
31 cmp_ok($absolute->{width}, '>=', 75, 'i3 raised the width to 75');
32 cmp_ok($absolute->{height}, '>=', 50, 'i3 raised the height to 50');
33
34 ok($absolute->{x} != 0 && $absolute->{y} != 0, 'i3 did not map it to (0x0)');
35
36 $window->unmap;
37
38 $window = $x->root->create_child(
39     class => WINDOW_CLASS_INPUT_OUTPUT,
40     rect => [ 1, 1, 80, 90],
41     background_color => '#C0C0C0',
42     window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
43 );
44
45 isa_ok($window, 'X11::XCB::Window');
46
47 $window->map;
48
49 sleep 0.25;
50
51 ($absolute, $top) = $window->rect;
52
53 cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
54 cmp_ok($absolute->{height}, '==', 92, "i3 let the height at 90");
55
56 # We need to compare the position with decorations due to the way
57 # we do decoration rendering (on the parent frame) in the tree branch
58 cmp_ok($top->{x}, '==', 1, 'i3 mapped it to x=1');
59 cmp_ok($top->{y}, '==', 19, 'i3 mapped it to y=18');
60
61 $window->unmap;
62
63 done_testing;