2009-08-05 14:47:10 -04:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2011-03-09 14:25:17 -05:00
|
|
|
use i3test;
|
2009-08-05 14:47:10 -04:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Window');
|
|
|
|
}
|
|
|
|
|
2009-10-26 15:04:37 -04:00
|
|
|
my $x = X11::XCB::Connection->new;
|
2009-08-05 14:47:10 -04:00
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2009-10-26 15:04:37 -04:00
|
|
|
my $window = $x->root->create_child(
|
2009-08-05 14:47:10 -04:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-08-21 06:32:54 -04:00
|
|
|
rect => [ 0, 0, 30, 30],
|
2009-08-21 10:06:12 -04:00
|
|
|
background_color => '#C0C0C0',
|
2009-10-26 15:04:37 -04:00
|
|
|
# replace the type with 'utility' as soon as the coercion works again in X11::XCB
|
2010-11-12 14:36:37 -05:00
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2011-09-24 08:08:02 -04:00
|
|
|
event_mask => [ 'structure_notify' ],
|
2009-08-05 14:47:10 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
2011-09-24 08:08:02 -04:00
|
|
|
wait_for_map $x;
|
2009-08-05 14:47:10 -04:00
|
|
|
|
|
|
|
my ($absolute, $top) = $window->rect;
|
|
|
|
|
2009-08-22 01:53:34 -04:00
|
|
|
ok($window->mapped, 'Window is mapped');
|
2010-11-12 15:41:10 -05:00
|
|
|
cmp_ok($absolute->{width}, '>=', 75, 'i3 raised the width to 75');
|
|
|
|
cmp_ok($absolute->{height}, '>=', 50, 'i3 raised the height to 50');
|
2009-08-05 14:47:10 -04:00
|
|
|
|
2009-08-22 01:53:34 -04:00
|
|
|
ok($absolute->{x} != 0 && $absolute->{y} != 0, 'i3 did not map it to (0x0)');
|
2009-08-05 14:47:10 -04:00
|
|
|
|
2009-08-05 15:54:24 -04:00
|
|
|
$window->unmap;
|
|
|
|
|
2009-10-26 15:04:37 -04:00
|
|
|
$window = $x->root->create_child(
|
2009-08-05 14:47:10 -04:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-08-21 06:32:54 -04:00
|
|
|
rect => [ 1, 1, 80, 90],
|
2009-08-21 10:06:12 -04:00
|
|
|
background_color => '#C0C0C0',
|
2010-11-12 14:36:37 -05:00
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2011-09-24 08:08:02 -04:00
|
|
|
event_mask => [ 'structure_notify' ],
|
2009-08-05 14:47:10 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
2011-09-24 08:08:02 -04:00
|
|
|
wait_for_map $x;
|
2009-08-05 14:47:10 -04:00
|
|
|
|
|
|
|
($absolute, $top) = $window->rect;
|
|
|
|
|
2010-11-12 15:41:10 -05:00
|
|
|
cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
|
2011-09-17 09:12:16 -04:00
|
|
|
cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
|
2009-08-05 14:47:10 -04:00
|
|
|
|
2010-11-14 10:42:13 -05:00
|
|
|
# We need to compare the position with decorations due to the way
|
|
|
|
# we do decoration rendering (on the parent frame) in the tree branch
|
2010-11-12 15:41:10 -05:00
|
|
|
cmp_ok($top->{x}, '==', 1, 'i3 mapped it to x=1');
|
2010-11-28 14:23:17 -05:00
|
|
|
cmp_ok($top->{y}, '==', 19, 'i3 mapped it to y=18');
|
2009-08-05 14:47:10 -04:00
|
|
|
|
2009-08-05 15:54:24 -04:00
|
|
|
$window->unmap;
|
|
|
|
|
2011-09-17 09:12:16 -04:00
|
|
|
#####################################################################
|
|
|
|
# check that a tiling window which is then made floating still has
|
|
|
|
# at least the size of its initial geometry
|
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
$window = $x->root->create_child(
|
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
rect => [ 1, 1, 80, 90],
|
|
|
|
background_color => '#C0C0C0',
|
|
|
|
#window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2011-09-24 08:08:02 -04:00
|
|
|
event_mask => [ 'structure_notify' ],
|
2011-09-17 09:12:16 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
2011-09-24 08:08:02 -04:00
|
|
|
wait_for_map $x;
|
2011-09-17 09:12:16 -04:00
|
|
|
|
|
|
|
cmd 'floating enable';
|
|
|
|
|
|
|
|
($absolute, $top) = $window->rect;
|
|
|
|
|
|
|
|
cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
|
|
|
|
cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
|
|
|
|
|
|
|
|
$window->unmap;
|
|
|
|
|
2011-03-09 14:25:17 -05:00
|
|
|
done_testing;
|