2009-07-16 13:43:43 +02:00
|
|
|
#!perl
|
2010-04-17 13:53:41 +02:00
|
|
|
# vim:ts=4:sw=4:expandtab
|
2012-09-10 14:09:01 +02:00
|
|
|
#
|
|
|
|
# Please read the following documents before working on tests:
|
|
|
|
# • http://build.i3wm.org/docs/testsuite.html
|
|
|
|
# (or docs/testsuite)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/lib-i3test.html
|
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
#
|
|
|
|
# • http://build.i3wm.org/docs/ipc.html
|
|
|
|
# (or docs/ipc)
|
|
|
|
#
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
# (unless you are already familiar with Perl)
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-04-17 13:53:41 +02:00
|
|
|
use List::Util qw(first);
|
2009-07-16 13:43:43 +02:00
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2010-04-17 13:53:41 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-04-17 13:53:41 +02:00
|
|
|
|
2010-04-17 19:29:27 +02:00
|
|
|
sub fullscreen_windows {
|
2012-10-04 10:22:41 +02:00
|
|
|
my $ws = $tmp;
|
|
|
|
$ws = shift if @_;
|
|
|
|
|
|
|
|
scalar grep { $_->{fullscreen_mode} != 0 } @{get_ws_content($ws)}
|
2010-04-17 19:29:27 +02:00
|
|
|
}
|
|
|
|
|
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}};
|
2011-02-20 23:43:03 +01:00
|
|
|
my $output;
|
|
|
|
for my $o (@outputs) {
|
|
|
|
# get the first CT_CON of each output
|
2013-12-14 14:50:44 +01:00
|
|
|
my $content = first { $_->{type} eq 'con' } @{$o->{nodes}};
|
2011-02-20 23:43:03 +01:00
|
|
|
if (defined(first { $_->{name} eq $tmp } @{$content->{nodes}})) {
|
|
|
|
$output = $o;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
2010-04-17 13:53:41 +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);
|
|
|
|
|
2011-11-23 17:22:43 +01:00
|
|
|
my $window = open_window(
|
2010-04-17 13:53:41 +02:00
|
|
|
rect => $original_rect,
|
2011-11-23 17:22:43 +01:00
|
|
|
dont_map => 1,
|
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;
|
|
|
|
|
2011-11-21 23:44:20 +01:00
|
|
|
wait_for_map $window;
|
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
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'open';
|
2010-04-17 13:53:41 +02:00
|
|
|
|
2009-07-16 13:43:43 +02:00
|
|
|
my $new_rect = $window->rect;
|
2011-11-22 02:21:47 +01:00
|
|
|
ok(!eq_hash($new_rect, $original_rect), "Window got repositioned");
|
2009-07-16 13:43:43 +02:00
|
|
|
$original_rect = $new_rect;
|
|
|
|
|
|
|
|
$window->fullscreen(1);
|
|
|
|
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2009-07-16 13:43:43 +02:00
|
|
|
|
|
|
|
$new_rect = $window->rect;
|
2011-11-22 02:21:47 +01:00
|
|
|
ok(!eq_hash($new_rect, $original_rect), "Window got repositioned after fullscreen");
|
2009-07-16 13:43:43 +02:00
|
|
|
|
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
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'open';
|
2010-04-17 13:53:41 +02:00
|
|
|
|
2010-04-17 17:40:19 +02:00
|
|
|
$original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
|
2011-11-23 17:22:43 +01:00
|
|
|
$window = open_window(
|
2010-04-17 13:53:41 +02:00
|
|
|
rect => $original_rect,
|
2011-11-23 17:22:43 +01:00
|
|
|
dont_map => 1,
|
2009-08-21 12:15:53 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
|
|
|
|
|
|
|
|
$window->fullscreen(1);
|
|
|
|
$window->map;
|
|
|
|
|
2011-11-21 23:44:20 +01:00
|
|
|
wait_for_map $window;
|
2009-08-21 12:15:53 +02:00
|
|
|
|
2010-04-17 13:53:41 +02:00
|
|
|
$new_rect = $window->rect;
|
2011-11-22 02:21:47 +01:00
|
|
|
ok(!eq_hash($new_rect, $original_rect), "Window got repositioned after fullscreen");
|
2009-08-21 12:15:53 +02:00
|
|
|
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');
|
|
|
|
|
2012-04-08 17:53:37 +02:00
|
|
|
################################################################################
|
|
|
|
# Verify that when one window wants to go into fullscreen mode, the old
|
|
|
|
# fullscreen window will be replaced.
|
|
|
|
################################################################################
|
2010-04-17 17:40:19 +02:00
|
|
|
|
|
|
|
$original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
|
2011-11-23 17:22:43 +01:00
|
|
|
my $swindow = open_window(
|
2010-04-17 17:40:19 +02:00
|
|
|
rect => $original_rect,
|
2011-11-23 17:22:43 +01:00
|
|
|
dont_map => 1,
|
2010-04-17 17:40:19 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$swindow->map;
|
2011-09-24 14:08:02 +02:00
|
|
|
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-04-17 17:40:19 +02:00
|
|
|
|
|
|
|
ok(!$swindow->mapped, 'window not mapped while fullscreen window active');
|
|
|
|
|
|
|
|
$new_rect = $swindow->rect;
|
2011-11-22 02:21:47 +01:00
|
|
|
ok(!eq_hash($new_rect, $original_rect), "Window got repositioned");
|
2010-04-17 17:40:19 +02:00
|
|
|
|
|
|
|
$swindow->fullscreen(1);
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-04-17 19:29:27 +02:00
|
|
|
|
|
|
|
is(fullscreen_windows(), 1, 'amount of fullscreen windows');
|
|
|
|
|
|
|
|
$window->fullscreen(0);
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2012-04-08 17:53:37 +02:00
|
|
|
is(fullscreen_windows(), 1, 'amount of fullscreen windows');
|
2010-04-17 19:29:27 +02:00
|
|
|
|
|
|
|
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);
|
2011-11-22 01:13:37 +01:00
|
|
|
sync_with_i3;
|
2010-04-17 19:29:27 +02:00
|
|
|
|
|
|
|
is(fullscreen_windows(), 0, 'amount of fullscreen windows after disabling');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'fullscreen';
|
2010-04-17 19:29:27 +02:00
|
|
|
|
|
|
|
is(fullscreen_windows(), 1, 'amount of fullscreen windows after fullscreen command');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'fullscreen';
|
2010-04-17 19:29:27 +02:00
|
|
|
|
|
|
|
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
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'kill' for (@{get_ws_content($tmp)});
|
2010-04-17 17:40:19 +02:00
|
|
|
|
2011-12-17 16:21:43 +01:00
|
|
|
################################################################################
|
|
|
|
# Verify that changing focus while in fullscreen does not work.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
|
|
|
|
my $other = open_window;
|
|
|
|
is($x->input_focus, $other->id, 'other window focused');
|
|
|
|
|
|
|
|
$window = open_window;
|
|
|
|
is($x->input_focus, $window->id, 'window focused');
|
|
|
|
|
|
|
|
cmd 'fullscreen';
|
|
|
|
is($x->input_focus, $window->id, 'fullscreen window focused');
|
|
|
|
|
|
|
|
cmd 'focus left';
|
|
|
|
is($x->input_focus, $window->id, 'fullscreen window still focused');
|
|
|
|
|
2012-10-04 10:22:41 +02:00
|
|
|
################################################################################
|
|
|
|
# Verify that fullscreening a window on a second workspace and moving it onto
|
|
|
|
# the first workspace unfullscreens the first window.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
my $tmp2 = fresh_workspace;
|
|
|
|
$swindow = open_window;
|
|
|
|
|
|
|
|
cmd 'fullscreen';
|
|
|
|
|
|
|
|
is(fullscreen_windows($tmp2), 1, 'one fullscreen window on second ws');
|
|
|
|
|
|
|
|
cmd "move workspace $tmp";
|
|
|
|
|
|
|
|
is(fullscreen_windows($tmp2), 0, 'no fullscreen windows on second ws');
|
|
|
|
is(fullscreen_windows($tmp), 1, 'one fullscreen window on first ws');
|
|
|
|
|
|
|
|
$swindow->fullscreen(0);
|
|
|
|
sync_with_i3;
|
|
|
|
|
|
|
|
# Verify that $swindow was the one that initially remained fullscreen.
|
|
|
|
is(fullscreen_windows($tmp), 0, 'no fullscreen windows on first ws');
|
|
|
|
|
2013-09-18 20:06:48 +02:00
|
|
|
################################################################################
|
|
|
|
# Verify that opening a window with _NET_WM_STATE_FULLSCREEN unfullscreens any
|
|
|
|
# existing container on the workspace and fullscreens the newly opened window.
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
|
|
|
|
$window = open_window();
|
|
|
|
|
|
|
|
cmd "fullscreen";
|
|
|
|
|
|
|
|
is(fullscreen_windows($tmp), 1, 'one fullscreen window on ws');
|
|
|
|
is($x->input_focus, $window->id, 'fullscreen window focused');
|
|
|
|
|
|
|
|
$swindow = open_window({
|
|
|
|
fullscreen => 1
|
|
|
|
});
|
|
|
|
|
|
|
|
is(fullscreen_windows($tmp), 1, 'one fullscreen window on ws');
|
|
|
|
is($x->input_focus, $swindow->id, 'fullscreen window focused');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|