]> git.sur5r.net Git - i3/i3/blob - testcases/t/508-move-workspace-focus.t
Merge branch 'fix-move-ws'
[i3/i3] / testcases / t / 508-move-workspace-focus.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • http://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • http://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • http://build.i3wm.org/docs/ipc.html
12 #   (or docs/ipc)
13 #
14 # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
15 #   (unless you are already familiar with Perl)
16 #
17 # Regression test: Verify that focus is correct after moving a floating window
18 # to a workspace on a different visible output.
19 # Bug still in: 4.3-83-ge89a25f
20 use i3test i3_autostart => 0;
21
22 # Ensure the pointer is at (0, 0) so that we really start on the first
23 # (the left) workspace.
24 $x->root->warp_pointer(0, 0);
25
26 my $config = <<EOT;
27 # i3 config file (v4)
28 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
29
30 fake-outputs 1024x768+0+0,1024x768+1024+0
31 EOT
32 my $pid = launch_with_config($config);
33
34 my $left_ws = fresh_workspace(output => 0);
35 open_window;
36
37 my $right_ws = fresh_workspace(output => 1);
38 open_window;
39 my $right_float = open_floating_window;
40
41 cmd "move workspace $left_ws";
42 is($x->input_focus, $right_float->id, 'floating window still focused');
43
44 exit_gracefully($pid);
45
46 done_testing;