2009-08-05 21:47:43 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Beware that this test uses workspace 9 to perform some tests (it expects
|
|
|
|
# the workspace to be empty).
|
|
|
|
# TODO: skip it by default?
|
|
|
|
|
2010-04-17 22:49:26 +02:00
|
|
|
use i3test tests => 8;
|
2009-08-05 21:47:43 +02:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use Time::HiRes qw(sleep);
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
|
|
|
|
}
|
|
|
|
|
2010-06-02 23:53:22 +02:00
|
|
|
SKIP: {
|
|
|
|
skip "Testcase not yet modified for new move concept", 7;
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $x = X11::XCB::Connection->new;
|
2009-08-05 21:47:43 +02:00
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
my $i3 = i3;
|
2009-08-05 21:47:43 +02:00
|
|
|
|
|
|
|
# Switch to the nineth workspace
|
2010-03-27 15:20:38 +01:00
|
|
|
$i3->command('9')->recv;
|
2009-08-05 21:47:43 +02:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Create two windows and make sure focus switching works
|
|
|
|
#####################################################################
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $top = i3test::open_standard_window($x);
|
2009-08-05 21:47:43 +02:00
|
|
|
sleep(0.25);
|
2009-10-26 20:04:37 +01:00
|
|
|
my $mid = i3test::open_standard_window($x);
|
2009-08-05 21:47:43 +02:00
|
|
|
sleep(0.25);
|
2009-10-26 20:04:37 +01:00
|
|
|
my $bottom = i3test::open_standard_window($x);
|
2009-08-05 21:47:43 +02:00
|
|
|
sleep(0.25);
|
|
|
|
|
|
|
|
diag("top id = " . $top->id);
|
|
|
|
diag("mid id = " . $mid->id);
|
|
|
|
diag("bottom id = " . $bottom->id);
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the input focus after sending the given command to i3 via IPC
|
|
|
|
# end sleeping for half a second to make sure i3 reacted
|
|
|
|
#
|
|
|
|
sub focus_after {
|
|
|
|
my $msg = shift;
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
$i3->command($msg)->recv;
|
2009-10-26 20:04:37 +01:00
|
|
|
return $x->input_focus;
|
2009-08-05 21:47:43 +02:00
|
|
|
}
|
|
|
|
|
2011-11-21 21:04:00 +01:00
|
|
|
my $focus = $x->input_focus;
|
2009-08-05 21:47:43 +02:00
|
|
|
is($focus, $bottom->id, "Latest window focused");
|
|
|
|
|
|
|
|
$focus = focus_after("ml");
|
|
|
|
is($focus, $bottom->id, "Right window still focused");
|
|
|
|
|
|
|
|
$focus = focus_after("h");
|
|
|
|
is($focus, $mid->id, "Middle window focused");
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Now move to the top window, move right, then move left again
|
|
|
|
# (e.g., does i3 remember the focus in the last container?)
|
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
$focus = focus_after("k");
|
|
|
|
is($focus, $top->id, "Top window focused");
|
|
|
|
|
|
|
|
$focus = focus_after("l");
|
|
|
|
is($focus, $bottom->id, "Right window focused");
|
|
|
|
|
|
|
|
$focus = focus_after("h");
|
|
|
|
is($focus, $top->id, "Top window focused");
|
2009-10-01 17:18:11 +02:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Move window cross-workspace
|
|
|
|
#####################################################################
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
for my $cmd (qw(m12 t m13 12 13)) {
|
|
|
|
$i3->command($cmd)->recv;
|
|
|
|
}
|
2009-10-01 17:18:11 +02:00
|
|
|
ok(1, "Still living");
|
2010-06-02 23:53:22 +02:00
|
|
|
}
|