2010-05-10 00:06:24 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Tests focus switching (next/prev)
|
|
|
|
#
|
2010-05-10 09:08:31 +02:00
|
|
|
use i3test tests => 13;
|
2010-05-10 00:06:24 +02:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use v5.10;
|
|
|
|
|
|
|
|
my $i3 = i3("/tmp/nestedcons");
|
|
|
|
|
|
|
|
my $tmp = get_unused_workspace();
|
|
|
|
$i3->command("workspace $tmp")->recv;
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Open one container, verify that 'next v' and 'next h' do nothing
|
|
|
|
######################################################################
|
|
|
|
$i3->command('open')->recv;
|
|
|
|
|
|
|
|
my ($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
my $old_focused = $focus->[0];
|
|
|
|
|
|
|
|
$i3->command('next v')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $old_focused, 'focus did not change with only one con');
|
|
|
|
|
|
|
|
$i3->command('next h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $old_focused, 'focus did not change with only one con');
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Open another container, verify that 'next h' switches
|
|
|
|
######################################################################
|
2010-05-10 09:08:31 +02:00
|
|
|
my $left = $old_focused;
|
|
|
|
|
2010-05-10 00:06:24 +02:00
|
|
|
$i3->command('open')->recv;
|
2010-05-10 09:08:31 +02:00
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
isnt($old_focused, $focus->[0], 'new container is focused');
|
|
|
|
my $mid = $focus->[0];
|
2010-05-10 00:06:24 +02:00
|
|
|
|
2010-05-10 09:08:31 +02:00
|
|
|
$i3->command('open')->recv;
|
2010-05-10 00:06:24 +02:00
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
isnt($old_focused, $focus->[0], 'new container is focused');
|
2010-05-10 09:08:31 +02:00
|
|
|
my $right = $focus->[0];
|
|
|
|
|
|
|
|
$i3->command('next h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
isnt($focus->[0], $right, 'focus did change');
|
|
|
|
is($focus->[0], $left, 'left container focused (wrapping)');
|
|
|
|
|
|
|
|
$i3->command('next h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $mid, 'middle container focused');
|
2010-05-10 00:06:24 +02:00
|
|
|
|
|
|
|
$i3->command('next h')->recv;
|
2010-05-10 09:08:31 +02:00
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $right, 'right container focused');
|
|
|
|
|
|
|
|
$i3->command('prev h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $mid, 'middle container focused');
|
|
|
|
|
|
|
|
$i3->command('prev h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $left, 'left container focused');
|
|
|
|
|
|
|
|
$i3->command('prev h')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $right, 'right container focused');
|
|
|
|
|
2010-05-10 00:06:24 +02:00
|
|
|
|
2010-05-10 09:08:31 +02:00
|
|
|
######################################################################
|
|
|
|
# Test synonyms (horizontal/vertical instead of h/v)
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
$i3->command('prev horizontal')->recv;
|
2010-05-10 00:06:24 +02:00
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
2010-05-10 09:08:31 +02:00
|
|
|
is($focus->[0], $mid, 'middle container focused');
|
|
|
|
|
|
|
|
$i3->command('next horizontal')->recv;
|
|
|
|
($nodes, $focus) = get_ws_content($tmp);
|
|
|
|
is($focus->[0], $right, 'right container focused');
|
|
|
|
|
2010-05-10 00:06:24 +02:00
|
|
|
diag( "Testing i3, Perl $], $^X" );
|