2009-07-16 13:43:43 +02:00
|
|
|
#!perl
|
2010-04-17 13:53:41 +02:00
|
|
|
# vim:ts=4:sw=4:expandtab
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2010-04-17 22:49:26 +02:00
|
|
|
use i3test tests => 24;
|
2009-07-16 13:43:43 +02:00
|
|
|
use X11::XCB qw(:all);
|
2010-04-17 13:53:41 +02:00
|
|
|
use List::Util qw(first);
|
2009-07-23 01:14:36 +02:00
|
|
|
use Time::HiRes qw(sleep);
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
my $i3 = i3("/tmp/nestedcons");
|
|
|
|
|
|
|
|
my $tmp = get_unused_workspace();
|
|
|
|
$i3->command("workspace $tmp")->recv;
|
|
|
|
|
2010-04-17 19:29:27 +02:00
|
|
|
sub fullscreen_windows {
|
|
|
|
scalar grep { $_->{fullscreen_mode} != 0 } @{get_ws_content($tmp)}
|
|
|
|
}
|
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
# get the output of this workspace
|
2010-11-21 21:42:28 +01:00
|
|
|
my $tree = $i3->get_tree->recv;
|
2010-04-17 13:53:41 +02:00
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
my $output = first { defined(first { $_->{name} eq $tmp } @{$_->{nodes}}) } @outputs;
|
|
|
|
|
2009-07-16 13:43:43 +02:00
|
|
|
BEGIN {
|
2010-04-17 13:53:41 +02:00
|
|
|
use_ok('X11::XCB::Window');
|
2009-07-16 13:43:43 +02:00
|
|
|
}
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $x = X11::XCB::Connection->new;
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
##################################
|
|
|
|
# map a window, then fullscreen it
|
|
|
|
##################################
|
|
|
|
|
2009-07-16 13:43:43 +02:00
|
|
|
my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $window = $x->root->create_child(
|
2010-04-17 13:53:41 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
rect => $original_rect,
|
|
|
|
background_color => '#C0C0C0',
|
2009-07-16 13:43:43 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
2009-07-23 01:14:36 +02:00
|
|
|
sleep(0.25);
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
# open another container to make the window get only half of the screen
|
|
|
|
$i3->command('open')->recv;
|
|
|
|
|
2009-07-16 13:43:43 +02:00
|
|
|
my $new_rect = $window->rect;
|
|
|
|
ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
|
|
|
|
$original_rect = $new_rect;
|
|
|
|
|
2009-07-23 01:14:36 +02:00
|
|
|
sleep(0.25);
|
2009-07-16 13:43:43 +02:00
|
|
|
|
|
|
|
$window->fullscreen(1);
|
|
|
|
|
2009-07-23 01:14:36 +02:00
|
|
|
sleep(0.25);
|
2009-07-16 13:43:43 +02:00
|
|
|
|
|
|
|
$new_rect = $window->rect;
|
|
|
|
ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned after fullscreen");
|
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
my $orect = $output->{rect};
|
|
|
|
my $wrect = $new_rect;
|
|
|
|
|
|
|
|
# see if the window really is fullscreen. 20 px for borders are allowed
|
|
|
|
my $threshold = 20;
|
|
|
|
ok(($wrect->{x} - $orect->{x}) < $threshold, 'x coordinate fullscreen');
|
|
|
|
ok(($wrect->{y} - $orect->{y}) < $threshold, 'y coordinate fullscreen');
|
|
|
|
ok(abs($wrect->{width} - $orect->{width}) < $threshold, 'width coordinate fullscreen');
|
|
|
|
ok(abs($wrect->{height} - $orect->{height}) < $threshold, 'height coordinate fullscreen');
|
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
|
2009-08-21 12:15:53 +02:00
|
|
|
$window->unmap;
|
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
#########################################################
|
|
|
|
# test with a window which is fullscreened before mapping
|
|
|
|
#########################################################
|
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
# open another container because the empty one will swallow the window we
|
|
|
|
# map in a second
|
|
|
|
$i3->command('open')->recv;
|
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
$original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
|
2009-10-26 20:04:37 +01:00
|
|
|
$window = $x->root->create_child(
|
2010-04-17 13:53:41 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
rect => $original_rect,
|
|
|
|
background_color => 61440,
|
2009-08-21 12:15:53 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
|
|
|
|
|
|
|
|
$window->fullscreen(1);
|
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
$new_rect = $window->rect;
|
2009-08-21 12:15:53 +02:00
|
|
|
ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned after fullscreen");
|
|
|
|
ok($window->mapped, "Window is mapped after opening it in fullscreen mode");
|
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
$wrect = $new_rect;
|
|
|
|
|
|
|
|
# see if the window really is fullscreen. 20 px for borders are allowed
|
|
|
|
ok(($wrect->{x} - $orect->{x}) < $threshold, 'x coordinate fullscreen');
|
|
|
|
ok(($wrect->{y} - $orect->{y}) < $threshold, 'y coordinate fullscreen');
|
|
|
|
ok(abs($wrect->{width} - $orect->{width}) < $threshold, 'width coordinate fullscreen');
|
|
|
|
ok(abs($wrect->{height} - $orect->{height}) < $threshold, 'height coordinate fullscreen');
|
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
###############################################################################
|
|
|
|
# test if setting two windows in fullscreen mode at the same time does not work
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
$original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
|
|
|
|
my $swindow = $x->root->create_child(
|
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
rect => $original_rect,
|
|
|
|
background_color => '#C0C0C0',
|
|
|
|
);
|
|
|
|
|
|
|
|
$swindow->map;
|
|
|
|
sleep(0.25);
|
|
|
|
|
|
|
|
ok(!$swindow->mapped, 'window not mapped while fullscreen window active');
|
|
|
|
|
|
|
|
$new_rect = $swindow->rect;
|
|
|
|
ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
|
|
|
|
|
|
|
|
$swindow->fullscreen(1);
|
2010-04-17 19:29:27 +02:00
|
|
|
sleep 0.25;
|
|
|
|
|
|
|
|
is(fullscreen_windows(), 1, 'amount of fullscreen windows');
|
|
|
|
|
|
|
|
$window->fullscreen(0);
|
|
|
|
sleep 0.25;
|
|
|
|
is(fullscreen_windows(), 0, 'amount of fullscreen windows');
|
|
|
|
|
|
|
|
ok($swindow->mapped, 'window mapped after other fullscreen ended');
|
2010-04-17 17:40:19 +02:00
|
|
|
|
2010-04-17 19:29:27 +02:00
|
|
|
###########################################################################
|
|
|
|
# as $swindow is out of state at the moment (it requested to be fullscreen,
|
|
|
|
# but the WM denied), we check what happens if we go out of fullscreen now
|
|
|
|
# (nothing should happen)
|
|
|
|
###########################################################################
|
2010-04-17 17:40:19 +02:00
|
|
|
|
2010-04-17 19:29:27 +02:00
|
|
|
$swindow->fullscreen(0);
|
|
|
|
sleep 0.25;
|
|
|
|
|
|
|
|
is(fullscreen_windows(), 0, 'amount of fullscreen windows after disabling');
|
|
|
|
|
|
|
|
$i3->command('fullscreen')->recv;
|
|
|
|
|
|
|
|
is(fullscreen_windows(), 1, 'amount of fullscreen windows after fullscreen command');
|
|
|
|
|
|
|
|
$i3->command('fullscreen')->recv;
|
|
|
|
|
|
|
|
is(fullscreen_windows(), 0, 'amount of fullscreen windows after fullscreen command');
|
2010-04-17 17:40:19 +02:00
|
|
|
|
|
|
|
# clean up the workspace so that it will be cleaned when switching away
|
2010-04-17 19:29:27 +02:00
|
|
|
$i3->command('kill')->recv for (@{get_ws_content($tmp)});
|
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
|
2009-07-16 13:43:43 +02:00
|
|
|
diag( "Testing i3, Perl $], $^X" );
|