2011-03-07 00:06:27 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Test if new containers get focused when there is a fullscreen container at
|
|
|
|
# the time of launching the new one.
|
|
|
|
#
|
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use i3test;
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Window');
|
|
|
|
}
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2011-03-07 00:06:27 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# open the left window
|
|
|
|
#####################################################################
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
my $left = open_window($x, { background_color => '#ff0000' });
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
|
|
is($x->input_focus, $left->id, 'left window focused');
|
|
|
|
|
|
|
|
diag("left = " . $left->id);
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Open the right window
|
|
|
|
#####################################################################
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
my $right = open_window($x, { background_color => '#00ff00' });
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
|
|
diag("right = " . $right->id);
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Set the right window to fullscreen
|
|
|
|
#####################################################################
|
|
|
|
cmd 'nop setting fullscreen';
|
|
|
|
cmd 'fullscreen';
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Open a third window
|
|
|
|
#####################################################################
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
my $third = open_window($x, {
|
|
|
|
background_color => '#0000ff',
|
|
|
|
name => 'Third window',
|
|
|
|
dont_map => 1,
|
|
|
|
});
|
2011-09-24 14:08:02 +02:00
|
|
|
|
|
|
|
$third->map;
|
|
|
|
|
|
|
|
sync_with_i3 $x;
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
|
|
diag("third = " . $third->id);
|
|
|
|
|
|
|
|
# move the fullscreen window to a different ws
|
|
|
|
|
|
|
|
my $tmp2 = get_unused_workspace;
|
|
|
|
|
|
|
|
cmd "move workspace $tmp2";
|
|
|
|
|
|
|
|
# verify that the third window has the focus
|
|
|
|
|
2011-09-23 21:37:45 +02:00
|
|
|
sync_with_i3($x);
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
|
|
is($x->input_focus, $third->id, 'third window focused');
|
|
|
|
|
|
|
|
done_testing;
|