#!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) # # Test using multiple outputs for 'move workspace to output …' # Ticket: #4337 use i3test i3_config => < $out_num: $msg"); } ############################################################################### # Test moving workspace to same output # See issue #4691 ############################################################################### is_ws(1, 0, 'sanity check'); my $reply = cmd '[con_mark=aa] move workspace to output fake-0'; is_ws(1, 0, 'workspace did not move'); ok($reply->[0]->{success}, 'reply success'); ############################################################################### # Test using "next" special keyword ############################################################################### is_ws(1, 0, 'sanity check'); is_ws(3, 2, 'sanity check'); for (my $i = 1; $i < 9; $i++) { cmd '[con_mark=a] move workspace to output next'; my $out1 = $i % 4; my $out3 = ($i + 2) % 4; is_ws(1, $out1, 'move workspace to next'); is_ws(3, $out3, 'move workspace to next'); } ############################################################################### # Same as above but explicitly type all the outputs ############################################################################### is_ws(1, 0, 'sanity check'); is_ws(3, 2, 'sanity check'); for (my $i = 1; $i < 10; $i++) { cmd '[con_mark=a] move workspace to output fake-0 fake-1 fake-2 fake-3'; my $out1 = $i % 4; my $out3 = ($i + 2) % 4; is_ws(1, $out1, 'cycle through explicit outputs'); is_ws(3, $out3, 'cycle through explicit outputs'); } ############################################################################### # Use a subset of the outputs plus some non-existing outputs ############################################################################### cmd '[con_mark=aa] move workspace to output fake-1'; cmd '[con_mark=ab] move workspace to output fake-1'; is_ws(1, 1, 'start from fake-1 which is not included in output list'); is_ws(3, 1, 'start from fake-1 which is not included in output list'); my @order = (0, 3, 2); for (my $i = 0; $i < 10; $i++) { cmd '[con_mark=a] move workspace to output doesnotexist fake-0 alsodoesnotexist fake-3 fake-2'; my $out = $order[$i % 3]; is_ws(1, $out, 'cycle through shuffled outputs'); is_ws(3, $out, 'cycle through shuffled outputs'); } done_testing;