]> git.sur5r.net Git - i3/i3/blob - testcases/t/517-regress-move-direction-ipc.t
Merge pull request #3441 from stapelberg/template
[i3/i3] / testcases / t / 517-regress-move-direction-ipc.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • https://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • https://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • https://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 # Make sure the command `move <direction>` properly sends the workspace focus
18 # ipc event required for i3bar to be properly updated and redrawn.
19 #
20 # Bug still in: 4.6-195-g34232b8
21 use i3test i3_config => <<EOT;
22 # i3 config file (v4)
23 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
24
25 fake-outputs 1024x768+0+0,1024x768+1024+0
26 workspace ws-left output fake-0
27 workspace ws-right output fake-1
28 EOT
29
30 # open two windows on the left output
31 cmd 'workspace ws-left';
32 open_window;
33 open_window;
34
35 sub focus_subtest {
36     my ($cmd, $want) = @_;
37
38     my @events = events_for(
39         sub { cmd $cmd },
40         'workspace');
41
42     my @focus = grep { $_->{change} eq 'focus' } @events;
43     is(scalar @focus, 1, 'Received 1 workspace::focus event');
44     is($focus[0]->{current}->{name}, 'ws-right', 'focus event gave the right workspace');
45     is(@{$focus[0]->{current}->{nodes}}, $want, 'focus event gave the right number of windows on the workspace');
46 }
47
48 # move a window over to the right output
49 subtest 'move right (1)', \&focus_subtest, 'move right', 1;
50
51 # move another window
52 cmd 'workspace ws-left';
53 subtest 'move right (2)', \&focus_subtest, 'move right', 2;
54
55 done_testing;