gri3-wm/testcases/t/02-fullscreen.t

150 lines
4.3 KiB
Perl
Raw Normal View History

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 17:40:19 +02:00
use Test::More tests => 19;
2009-07-16 13:43:43 +02:00
use Test::Deep;
use X11::XCB qw(:all);
use Data::Dumper;
2010-04-17 13:53:41 +02:00
use FindBin;
use lib "$FindBin::Bin/lib";
use i3test;
use AnyEvent::I3;
use List::Util qw(first);
use v5.10;
2009-07-16 13:43:43 +02:00
# We use relatively long sleeps (1/4 second) to make sure the window manager
# reacted.
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;
# get the output of this workspace
my $tree = $i3->get_workspaces->recv;
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
}
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);
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
$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);
$window = $x->root->create_child(
2010-04-17 13:53:41 +02:00
class => WINDOW_CLASS_INPUT_OUTPUT,
rect => $original_rect,
background_color => 61440,
);
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;
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");
sleep(0.25);
$swindow->fullscreen(1);
sleep(0.25);
my $content = get_ws_content($tmp);
my $fullscreen_windows = grep { $_->{fullscreen_mode} != 0 } @{$content};
is($fullscreen_windows, 1, 'amount of fullscreen windows');
# clean up the workspace so that it will be cleaned when switching away
$i3->command('kill')->recv for (@{$content});
2009-07-16 13:43:43 +02:00
diag( "Testing i3, Perl $], $^X" );