2012-01-10 23:10:59 +01:00
|
|
|
|
#!perl
|
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
#
|
2012-09-10 14:09:01 +02:00
|
|
|
|
# Please read the following documents before working on tests:
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
2012-09-10 14:09:01 +02:00
|
|
|
|
# (or docs/testsuite)
|
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
2012-09-10 14:09:01 +02:00
|
|
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
|
|
|
#
|
2017-09-24 10:19:50 +02:00
|
|
|
|
# • https://build.i3wm.org/docs/ipc.html
|
2012-09-10 14:09:01 +02:00
|
|
|
|
# (or docs/ipc)
|
|
|
|
|
#
|
|
|
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
|
|
|
# (unless you are already familiar with Perl)
|
|
|
|
|
#
|
2012-01-10 23:10:59 +01:00
|
|
|
|
# Tests whether the 'move workspace <ws> to [output] <output>' command works
|
|
|
|
|
#
|
|
|
|
|
use List::Util qw(first);
|
2017-09-14 12:30:42 +02:00
|
|
|
|
use i3test i3_config => <<EOT;
|
2012-04-09 14:27:33 +02:00
|
|
|
|
# i3 config file (v4)
|
|
|
|
|
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
|
|
|
|
|
|
|
|
|
fake-outputs 1024x768+0+0,1024x768+1024+0
|
2017-09-14 13:35:26 +02:00
|
|
|
|
|
|
|
|
|
bar {
|
|
|
|
|
# Disable i3bar.
|
|
|
|
|
i3bar_command :
|
|
|
|
|
}
|
2012-04-09 14:27:33 +02:00
|
|
|
|
EOT
|
2017-09-14 12:30:42 +02:00
|
|
|
|
|
|
|
|
|
# TODO: get rid of smartmatch in this test
|
2012-04-09 14:27:33 +02:00
|
|
|
|
|
2012-01-10 23:10:59 +01:00
|
|
|
|
################################################################################
|
|
|
|
|
# Setup workspaces so that they stay open (with an empty container).
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
is(focused_ws, '1', 'starting on workspace 1');
|
|
|
|
|
# ensure workspace 1 stays open
|
|
|
|
|
open_window;
|
|
|
|
|
|
|
|
|
|
cmd 'focus output right';
|
|
|
|
|
is(focused_ws, '2', 'workspace 2 on second output');
|
|
|
|
|
# ensure workspace 2 stays open
|
|
|
|
|
open_window;
|
|
|
|
|
|
|
|
|
|
cmd 'focus output right';
|
|
|
|
|
is(focused_ws, '1', 'back on workspace 1');
|
|
|
|
|
|
|
|
|
|
# We don’t use fresh_workspace with named workspaces here since they come last
|
|
|
|
|
# when using 'workspace next'.
|
|
|
|
|
cmd 'workspace 5';
|
|
|
|
|
# ensure workspace 5 stays open
|
|
|
|
|
open_window;
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
# Move a workspace over and verify that it is on the right output.
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# The current order should be:
|
|
|
|
|
# output 1: 1, 5
|
|
|
|
|
# output 2: 2
|
|
|
|
|
cmd 'workspace 5';
|
|
|
|
|
is(focused_ws, '5', 'workspace 5 focused');
|
|
|
|
|
|
|
|
|
|
my ($x0, $x1) = workspaces_per_screen();
|
2012-04-09 14:27:33 +02:00
|
|
|
|
ok('5' ~~ @$x0, 'workspace 5 on fake-0');
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
cmd 'move workspace to output fake-1';
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
|
|
|
|
sub workspaces_per_screen {
|
|
|
|
|
my $i3 = i3(get_socket_path());
|
|
|
|
|
my $tree = $i3->get_tree->recv;
|
|
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
my $fake0 = first { $_->{name} eq 'fake-0' } @outputs;
|
2013-12-14 14:50:44 +01:00
|
|
|
|
my $fake0_content = first { $_->{type} eq 'con' } @{$fake0->{nodes}};
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
my $fake1 = first { $_->{name} eq 'fake-1' } @outputs;
|
2013-12-14 14:50:44 +01:00
|
|
|
|
my $fake1_content = first { $_->{type} eq 'con' } @{$fake1->{nodes}};
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
my @fake0_workspaces = map { $_->{name} } @{$fake0_content->{nodes}};
|
|
|
|
|
my @fake1_workspaces = map { $_->{name} } @{$fake1_content->{nodes}};
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
return \@fake0_workspaces, \@fake1_workspaces;
|
2012-01-10 23:10:59 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
2012-04-09 14:27:33 +02:00
|
|
|
|
ok('5' ~~ @$x1, 'workspace 5 now on fake-1');
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
|
|
|
|
################################################################################
|
2012-02-15 19:02:02 +01:00
|
|
|
|
# Verify that a new workspace will be created when moving the last workspace.
|
2012-01-10 23:10:59 +01:00
|
|
|
|
################################################################################
|
|
|
|
|
|
2012-04-09 14:27:33 +02:00
|
|
|
|
is_deeply($x0, [ '1' ], 'only workspace 1 remaining on fake-0');
|
2012-02-15 19:02:02 +01:00
|
|
|
|
|
2012-01-10 23:10:59 +01:00
|
|
|
|
cmd 'workspace 1';
|
2012-04-09 14:27:33 +02:00
|
|
|
|
cmd 'move workspace to output fake-1';
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
2012-04-09 14:27:33 +02:00
|
|
|
|
ok('1' ~~ @$x1, 'workspace 1 now on fake-1');
|
|
|
|
|
is_deeply($x0, [ '3' ], 'workspace 2 created on fake-0');
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
# Verify that 'move workspace to output <direction>' works
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
cmd 'workspace 5';
|
|
|
|
|
cmd 'move workspace to output left';
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
2012-04-09 14:27:33 +02:00
|
|
|
|
ok('5' ~~ @$x0, 'workspace 5 back on fake-0');
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2013-01-25 00:02:37 +01:00
|
|
|
|
# Verify that wrapping works
|
|
|
|
|
cmd 'move workspace to output left';
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok('5' ~~ @$x1, 'workspace 5 on fake-1');
|
|
|
|
|
|
|
|
|
|
# Put workspace 5 where it should
|
|
|
|
|
cmd 'move workspace to output left';
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok('5' ~~ @$x0, 'workspace 5 on fake-0 again');
|
|
|
|
|
|
2012-02-15 19:08:53 +01:00
|
|
|
|
################################################################################
|
|
|
|
|
# Verify that coordinates of floating windows are fixed correctly when moving a
|
|
|
|
|
# workspace to a different output.
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
cmd 'workspace 5';
|
|
|
|
|
my $floating_window = open_floating_window;
|
|
|
|
|
|
|
|
|
|
my $old_rect = $floating_window->rect;
|
|
|
|
|
|
|
|
|
|
cmd 'move workspace to output right';
|
|
|
|
|
|
|
|
|
|
my $new_rect = $floating_window->rect;
|
|
|
|
|
|
|
|
|
|
isnt($old_rect->{x}, $new_rect->{x}, 'x coordinate changed');
|
|
|
|
|
is($old_rect->{y}, $new_rect->{y}, 'y coordinate unchanged');
|
|
|
|
|
is($old_rect->{width}, $new_rect->{width}, 'width unchanged');
|
|
|
|
|
is($old_rect->{height}, $new_rect->{height}, 'height unchanged');
|
2012-01-10 23:10:59 +01:00
|
|
|
|
|
2012-09-22 19:03:19 +02:00
|
|
|
|
################################################################################
|
|
|
|
|
# Verify that empty workspaces get cleaned up when moving a different workspace
|
|
|
|
|
# to that output.
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
my $empty_ws = fresh_workspace(output => 0);
|
|
|
|
|
my $other_output_ws = fresh_workspace(output => 1);
|
|
|
|
|
cmd 'open';
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok($empty_ws ~~ @$x0, 'empty_ws on fake-0');
|
|
|
|
|
ok($other_output_ws ~~ @$x1, 'other_output_ws on fake-1');
|
|
|
|
|
|
|
|
|
|
cmd 'move workspace to output left';
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok(!($empty_ws ~~ @$x0), 'empty_ws not on fake-0');
|
|
|
|
|
ok(!($empty_ws ~~ @$x1), 'empty_ws not on fake-1');
|
|
|
|
|
ok($other_output_ws ~~ @$x0, 'other_output_ws on fake-0');
|
|
|
|
|
|
2016-09-30 17:28:02 +02:00
|
|
|
|
################################################################################
|
|
|
|
|
# Verify that the special word 'current' can be used for the output.
|
|
|
|
|
################################################################################
|
2012-04-09 14:27:33 +02:00
|
|
|
|
|
2016-09-30 17:28:02 +02:00
|
|
|
|
my $ws1 = fresh_workspace(output => 1);
|
|
|
|
|
open_window;
|
|
|
|
|
cmd 'mark marked';
|
|
|
|
|
|
|
|
|
|
my $ws0 = fresh_workspace(output => 0);
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok($ws0 ~~ @$x0, 'ws0 on fake-0');
|
|
|
|
|
ok($ws1 ~~ @$x1, 'ws1 on fake-1');
|
|
|
|
|
|
|
|
|
|
cmd '[con_mark=marked] move workspace to output current';
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok($ws1 ~~ @$x0, 'ws1 on fake-0');
|
|
|
|
|
|
2017-12-01 15:12:43 +01:00
|
|
|
|
################################################################################
|
|
|
|
|
# Verify that '[class=".*"] move workspace to output' doesn't fail when
|
|
|
|
|
# containers in the scratchpad are matched.
|
|
|
|
|
# See issue: #3064.
|
|
|
|
|
################################################################################
|
|
|
|
|
my $__i3_scratch = get_ws('__i3_scratch');
|
|
|
|
|
is(scalar @{$__i3_scratch->{floating_nodes}}, 0, 'scratchpad is empty');
|
|
|
|
|
|
|
|
|
|
my $ws0 = fresh_workspace(output => 0);
|
|
|
|
|
open_window(wm_class => 'a');
|
|
|
|
|
|
|
|
|
|
my $ws1 = fresh_workspace(output => 1);
|
|
|
|
|
open_window(wm_class => 'b');
|
|
|
|
|
my $scratchpad_window = open_window(wm_class => 'c');
|
|
|
|
|
cmd 'move to scratchpad';
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok($ws0 ~~ @$x0, 'ws0 on fake-0');
|
|
|
|
|
ok($ws1 ~~ @$x1, 'ws1 on fake-1');
|
|
|
|
|
|
|
|
|
|
my $reply = cmd '[class=".*"] move workspace to output fake-1';
|
|
|
|
|
ok($reply->[0]->{success}, 'move successful');
|
|
|
|
|
|
|
|
|
|
($x0, $x1) = workspaces_per_screen();
|
|
|
|
|
ok($ws0 ~~ @$x1, 'ws0 on fake-1');
|
|
|
|
|
ok($ws1 ~~ @$x1, 'ws1 on fake-1');
|
|
|
|
|
|
|
|
|
|
$__i3_scratch = get_ws('__i3_scratch');
|
|
|
|
|
is(scalar @{$__i3_scratch->{floating_nodes}}, 1, 'window still in scratchpad');
|
|
|
|
|
|
2016-09-30 17:28:02 +02:00
|
|
|
|
################################################################################
|
|
|
|
|
|
2012-01-10 23:10:59 +01:00
|
|
|
|
done_testing;
|