2009-08-05 20:47:10 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2009-08-05 20:47:10 +02:00
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2011-11-23 17:22:43 +01:00
|
|
|
my $window = open_floating_window;
|
2009-08-05 20:47:10 +02:00
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2012-01-21 15:22:29 +01:00
|
|
|
$window = open_floating_window(rect => [ 20, 20, 80, 90 ]);
|
2009-08-05 20:47:10 +02:00
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
($absolute, $top) = $window->rect;
|
|
|
|
|
2010-11-12 21:41:10 +01:00
|
|
|
cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
|
2011-09-17 15:12:16 +02:00
|
|
|
cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
|
2009-08-05 20:47:10 +02:00
|
|
|
|
2012-01-21 15:20:55 +01:00
|
|
|
cmp_ok($top->{x}, '==', 20, 'i3 mapped it to x=20');
|
|
|
|
cmp_ok($top->{y}, '==', 20, 'i3 mapped it to y=20');
|
2009-08-05 20:47:10 +02:00
|
|
|
|
2009-08-05 21:54:24 +02:00
|
|
|
$window->unmap;
|
|
|
|
|
2011-09-17 15:12:16 +02:00
|
|
|
#####################################################################
|
|
|
|
# check that a tiling window which is then made floating still has
|
|
|
|
# at least the size of its initial geometry
|
|
|
|
#####################################################################
|
|
|
|
|
2011-11-23 17:22:43 +01:00
|
|
|
$window = open_window(rect => [ 1, 1, 80, 90 ]);
|
2011-09-17 15:12:16 +02:00
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
cmd 'floating enable';
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2011-09-17 15:12:16 +02:00
|
|
|
|
|
|
|
($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 20:25:17 +01:00
|
|
|
done_testing;
|