gri3-wm/testcases/t/21-next-prev.t

89 lines
2.5 KiB
Perl
Raw Normal View History

#!perl
# vim:ts=4:sw=4:expandtab
#
# Tests focus switching (next/prev)
#
use i3test;
my $tmp = fresh_workspace;
######################################################################
# Open one container, verify that 'next v' and 'next h' do nothing
######################################################################
cmd 'open';
my ($nodes, $focus) = get_ws_content($tmp);
my $old_focused = $focus->[0];
cmd 'next v';
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $old_focused, 'focus did not change with only one con');
cmd 'next h';
($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;
cmd 'open';
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];
cmd 'open';
($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];
cmd 'next h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
isnt($focus->[0], $right, 'focus did change');
is($focus->[0], $left, 'left container focused (wrapping)');
cmd 'next h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $mid, 'middle container focused');
cmd 'next h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $right, 'right container focused');
cmd 'prev h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $mid, 'middle container focused');
cmd 'prev h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $left, 'left container focused');
cmd 'prev h';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $right, 'right container focused');
2010-05-10 09:08:31 +02:00
######################################################################
# Test synonyms (horizontal/vertical instead of h/v)
######################################################################
cmd 'prev horizontal';
($nodes, $focus) = get_ws_content($tmp);
2010-05-10 09:08:31 +02:00
is($focus->[0], $mid, 'middle container focused');
cmd 'next horizontal';
2010-05-10 09:08:31 +02:00
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $right, 'right container focused');
2010-06-01 22:29:09 +02:00
######################################################################
# Test focus command
2010-06-01 22:29:09 +02:00
######################################################################
cmd qq|[con_id="$mid"] focus|;
($nodes, $focus) = get_ws_content($tmp);
is($focus->[0], $mid, 'middle container focused');
done_testing;