2010-06-29 19:05:31 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Tests moving. Basically, there are four different code-paths:
|
|
|
|
# 1) move a container which cannot be moved (single container on a workspace)
|
|
|
|
# 2) move a container before another single container
|
|
|
|
# 3) move a container inside another container
|
|
|
|
# 4) move a container in a different direction so that we need to go up in tree
|
|
|
|
#
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-06-29 19:05:31 +02:00
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2010-06-29 19:05:31 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-06-29 19:05:31 +02:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# 1) move a container which cannot be moved
|
|
|
|
######################################################################
|
|
|
|
|
2011-02-14 23:05:20 +01:00
|
|
|
cmd 'open';
|
2010-06-29 19:05:31 +02:00
|
|
|
|
|
|
|
my $old_content = get_ws_content($tmp);
|
|
|
|
is(@{$old_content}, 1, 'one container on this workspace');
|
|
|
|
|
|
|
|
my $first = $old_content->[0]->{id};
|
|
|
|
|
2011-10-27 22:22:41 +02:00
|
|
|
cmd 'move left';
|
|
|
|
cmd 'move right';
|
|
|
|
cmd 'move up';
|
|
|
|
cmd 'move down';
|
2010-06-29 19:05:31 +02:00
|
|
|
|
|
|
|
my $content = get_ws_content($tmp);
|
2011-10-27 22:22:41 +02:00
|
|
|
is_deeply($old_content, $content, 'workspace unmodified after useless moves');
|
2010-06-29 19:05:31 +02:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# 2) move a container before another single container
|
|
|
|
######################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'open';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is(@{$content}, 2, 'two containers on this workspace');
|
|
|
|
my $second = $content->[1]->{id};
|
|
|
|
|
|
|
|
is($content->[0]->{id}, $first, 'first container unmodified');
|
|
|
|
|
|
|
|
# Move the second container before the first one (→ swap them)
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move left';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is($content->[0]->{id}, $second, 'first container modified');
|
|
|
|
|
|
|
|
# We should not be able to move any further
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move left';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is($content->[0]->{id}, $second, 'first container unmodified');
|
|
|
|
|
|
|
|
# Now move in the other direction
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move right';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is($content->[0]->{id}, $first, 'first container modified');
|
|
|
|
|
|
|
|
# We should not be able to move any further
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move right';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is($content->[0]->{id}, $first, 'first container unmodified');
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# 3) move a container inside another container
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
# Split the current (second) container and create a new container on workspace
|
|
|
|
# level. Our layout looks like this now:
|
|
|
|
# --------------------------
|
|
|
|
# | | second | |
|
|
|
|
# | first | ------ | third |
|
|
|
|
# | | | |
|
|
|
|
# --------------------------
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'split v';
|
2011-06-10 01:36:33 +02:00
|
|
|
cmd 'focus parent';
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'open';
|
2010-06-29 19:05:31 +02:00
|
|
|
|
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is(@{$content}, 3, 'three containers on this workspace');
|
|
|
|
my $third = $content->[2]->{id};
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move left';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is(@{$content}, 2, 'only two containers on this workspace');
|
|
|
|
my $nodes = $content->[1]->{nodes};
|
|
|
|
is($nodes->[0]->{id}, $second, 'second container on top');
|
|
|
|
is($nodes->[1]->{id}, $third, 'third container on bottom');
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# move it inside the split container
|
|
|
|
######################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move up';
|
2010-06-29 19:05:31 +02:00
|
|
|
$nodes = get_ws_content($tmp)->[1]->{nodes};
|
|
|
|
is($nodes->[0]->{id}, $third, 'third container on top');
|
|
|
|
is($nodes->[1]->{id}, $second, 'second container on bottom');
|
|
|
|
|
|
|
|
# move it outside again
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move left';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
|
|
|
is(@{$content}, 3, 'three nodes on this workspace');
|
|
|
|
|
2011-02-14 23:05:20 +01:00
|
|
|
# due to automatic flattening/cleanup, the remaining split container
|
|
|
|
# will be replaced by the con itself, so we will still have 3 nodes
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'move right';
|
2010-06-29 19:05:31 +02:00
|
|
|
$content = get_ws_content($tmp);
|
2011-02-19 18:30:26 +01:00
|
|
|
is(@{$content}, 2, 'two nodes on this workspace');
|
2010-06-29 19:05:31 +02:00
|
|
|
|
2010-11-13 14:55:11 +01:00
|
|
|
######################################################################
|
2010-11-28 20:15:47 +01:00
|
|
|
# 4) We create two v-split containers on the workspace, then we move
|
|
|
|
# all Cons from the left v-split to the right one. The old vsplit
|
2010-11-13 14:55:11 +01:00
|
|
|
# container needs to be closed. Verify that it will be closed.
|
|
|
|
######################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $otmp = fresh_workspace;
|
2010-11-13 14:55:11 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "open";
|
|
|
|
cmd "open";
|
|
|
|
cmd "split v";
|
|
|
|
cmd "open";
|
2011-06-08 20:49:49 +02:00
|
|
|
cmd 'focus left';
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "split v";
|
|
|
|
cmd "open";
|
|
|
|
cmd "move right";
|
2011-06-08 20:49:49 +02:00
|
|
|
cmd 'focus left';
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "move right";
|
2010-11-13 14:55:11 +01:00
|
|
|
|
|
|
|
$content = get_ws_content($otmp);
|
|
|
|
is(@{$content}, 1, 'only one nodes on this workspace');
|
|
|
|
|
2011-10-27 22:46:01 +02:00
|
|
|
######################################################################
|
|
|
|
# 5) test moving floating containers.
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
2011-11-22 01:00:54 +01:00
|
|
|
my $floatwin = open_floating_window;
|
2011-10-27 22:46:01 +02:00
|
|
|
my ($absolute_before, $top_before) = $floatwin->rect;
|
|
|
|
|
|
|
|
cmd 'move left';
|
|
|
|
|
|
|
|
my ($absolute, $top) = $floatwin->rect;
|
|
|
|
|
|
|
|
is($absolute->x, ($absolute_before->x - 10), 'moved 10 px to the left');
|
|
|
|
is($absolute->y, $absolute_before->y, 'y not changed');
|
|
|
|
is($absolute->width, $absolute_before->width, 'width not changed');
|
|
|
|
is($absolute->height, $absolute_before->height, 'height not changed');
|
|
|
|
|
|
|
|
$absolute_before = $absolute;
|
|
|
|
$top_before = $top;
|
|
|
|
|
|
|
|
cmd 'move right';
|
|
|
|
|
|
|
|
($absolute, $top) = $floatwin->rect;
|
|
|
|
|
|
|
|
is($absolute->x, ($absolute_before->x + 10), 'moved 10 px to the right');
|
|
|
|
is($absolute->y, $absolute_before->y, 'y not changed');
|
|
|
|
is($absolute->width, $absolute_before->width, 'width not changed');
|
|
|
|
is($absolute->height, $absolute_before->height, 'height not changed');
|
|
|
|
|
|
|
|
$absolute_before = $absolute;
|
|
|
|
$top_before = $top;
|
|
|
|
|
|
|
|
cmd 'move up';
|
|
|
|
|
|
|
|
($absolute, $top) = $floatwin->rect;
|
|
|
|
|
|
|
|
is($absolute->x, $absolute_before->x, 'x not changed');
|
|
|
|
is($absolute->y, ($absolute_before->y - 10), 'moved 10 px up');
|
|
|
|
is($absolute->width, $absolute_before->width, 'width not changed');
|
|
|
|
is($absolute->height, $absolute_before->height, 'height not changed');
|
|
|
|
|
|
|
|
$absolute_before = $absolute;
|
|
|
|
$top_before = $top;
|
|
|
|
|
|
|
|
cmd 'move down';
|
|
|
|
|
|
|
|
($absolute, $top) = $floatwin->rect;
|
|
|
|
|
|
|
|
is($absolute->x, $absolute_before->x, 'x not changed');
|
|
|
|
is($absolute->y, ($absolute_before->y + 10), 'moved 10 px up');
|
|
|
|
is($absolute->width, $absolute_before->width, 'width not changed');
|
|
|
|
is($absolute->height, $absolute_before->height, 'height not changed');
|
|
|
|
|
|
|
|
$absolute_before = $absolute;
|
|
|
|
$top_before = $top;
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# 6) test moving floating containers with a specific amount of px
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
cmd 'move left 20 px';
|
|
|
|
|
|
|
|
($absolute, $top) = $floatwin->rect;
|
|
|
|
|
2012-01-14 16:02:30 +01:00
|
|
|
is($absolute->x, ($absolute_before->x - 20), 'moved 20 px to the left');
|
2011-10-27 22:46:01 +02:00
|
|
|
is($absolute->y, $absolute_before->y, 'y not changed');
|
|
|
|
is($absolute->width, $absolute_before->width, 'width not changed');
|
|
|
|
is($absolute->height, $absolute_before->height, 'height not changed');
|
|
|
|
|
2012-03-23 13:39:17 +01:00
|
|
|
######################################################################
|
|
|
|
# 6) test moving floating window to a specified position
|
|
|
|
# and to absolute center
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
$tmp = fresh_workspace;
|
|
|
|
open_floating_window; my @floatcon;
|
|
|
|
|
|
|
|
cmd 'move position 5 px 15 px';
|
|
|
|
|
|
|
|
@floatcon = @{get_ws($tmp)->{floating_nodes}};
|
|
|
|
|
|
|
|
is($floatcon[0]->{rect}->{x}, 5, 'moved to position 5 x');
|
|
|
|
is($floatcon[0]->{rect}->{y}, 15, 'moved to position 15 y');
|
|
|
|
|
|
|
|
cmd 'move absolute position center';
|
|
|
|
|
|
|
|
@floatcon = @{get_ws($tmp)->{floating_nodes}};
|
|
|
|
|
|
|
|
my $center_x = int($x->root->rect->width/2) - int($floatcon[0]->{rect}->{width}/2);
|
|
|
|
my $center_y = int($x->root->rect->height/2) - int($floatcon[0]->{rect}->{height}/2);
|
2011-10-27 22:46:01 +02:00
|
|
|
|
2012-03-23 13:39:17 +01:00
|
|
|
is($floatcon[0]->{rect}->{x}, $center_x, "moved to center at position $center_x x");
|
|
|
|
is($floatcon[0]->{rect}->{y}, $center_y, "moved to center at position $center_y y");
|
2011-10-27 22:46:01 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|