51 lines
1017 B
Perl
51 lines
1017 B
Perl
#!perl
|
|
# vim:ts=4:sw=4:expandtab
|
|
#
|
|
# Please read the following documents before working on tests:
|
|
# • https://build.i3wm.org/docs/testsuite.html
|
|
# (or docs/testsuite)
|
|
#
|
|
# • https://build.i3wm.org/docs/lib-i3test.html
|
|
# (alternatively: perldoc ./testcases/lib/i3test.pm)
|
|
#
|
|
# • https://build.i3wm.org/docs/ipc.html
|
|
# (or docs/ipc)
|
|
#
|
|
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
|
|
# (unless you are already familiar with Perl)
|
|
#
|
|
# Regression test for moving a con outside of a floating con when there are no
|
|
# tiling cons on a workspace
|
|
#
|
|
use i3test;
|
|
|
|
sub sync_cmd {
|
|
cmd @_;
|
|
sync_with_i3;
|
|
}
|
|
|
|
my $tmp = fresh_workspace;
|
|
|
|
my $left = open_window;
|
|
my $mid = open_window;
|
|
my $right = open_window;
|
|
|
|
# go to workspace level
|
|
sync_cmd 'focus parent';
|
|
|
|
# make it floating
|
|
sync_cmd 'mode toggle';
|
|
|
|
# move the con outside the floating con
|
|
sync_cmd 'move up';
|
|
|
|
does_i3_live;
|
|
|
|
# move another con outside
|
|
sync_cmd '[id="' . $mid->id . '"] focus';
|
|
sync_cmd 'move up';
|
|
|
|
does_i3_live;
|
|
|
|
done_testing;
|