2009-08-05 20:47:10 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2010-11-12 21:41:10 +01:00
|
|
|
use i3test tests => 11;
|
2009-08-05 20:47:10 +02:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use Time::HiRes qw(sleep);
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Window');
|
|
|
|
}
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $x = X11::XCB::Connection->new;
|
2009-08-05 20:47:10 +02:00
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2009-10-26 20:04:37 +01:00
|
|
|
my $window = $x->root->create_child(
|
2009-08-05 20:47:10 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-08-21 12:32:54 +02:00
|
|
|
rect => [ 0, 0, 30, 30],
|
2009-08-21 16:06:12 +02:00
|
|
|
background_color => '#C0C0C0',
|
2009-10-26 20:04:37 +01:00
|
|
|
# replace the type with 'utility' as soon as the coercion works again in X11::XCB
|
2010-11-12 20:36:37 +01:00
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2009-08-05 20:47:10 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
|
|
|
my ($absolute, $top) = $window->rect;
|
|
|
|
|
2009-08-22 07:53:34 +02:00
|
|
|
ok($window->mapped, 'Window is mapped');
|
2010-11-12 21:41:10 +01: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 20:47:10 +02:00
|
|
|
|
2009-08-22 07:53:34 +02:00
|
|
|
ok($absolute->{x} != 0 && $absolute->{y} != 0, 'i3 did not map it to (0x0)');
|
2009-08-05 20:47:10 +02:00
|
|
|
|
2009-08-05 21:54:24 +02:00
|
|
|
$window->unmap;
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
$window = $x->root->create_child(
|
2009-08-05 20:47:10 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-08-21 12:32:54 +02:00
|
|
|
rect => [ 1, 1, 80, 90],
|
2009-08-21 16:06:12 +02:00
|
|
|
background_color => '#C0C0C0',
|
2010-11-12 20:36:37 +01:00
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2009-08-05 20:47:10 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
|
|
|
($absolute, $top) = $window->rect;
|
|
|
|
|
2010-11-12 21:41:10 +01:00
|
|
|
cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
|
|
|
|
cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
|
2009-08-05 20:47:10 +02:00
|
|
|
|
2010-11-12 21:41:10 +01:00
|
|
|
cmp_ok($top->{x}, '==', 1, 'i3 mapped it to x=1');
|
|
|
|
cmp_ok($top->{y}, '==', 1, 'i3 mapped it to y=1');
|
2009-08-05 20:47:10 +02:00
|
|
|
|
2009-08-05 21:54:24 +02:00
|
|
|
$window->unmap;
|
|
|
|
|
2009-08-05 20:47:10 +02:00
|
|
|
diag( "Testing i3, Perl $], $^X" );
|