]> git.sur5r.net Git - i3/i3/blob - testcases/t/517-regress-move-direction-ipc.t
1a325ae764b45695686bb5ffbb0fd41033757906
[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 # • 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 # 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 my $i3 = i3(get_socket_path());
31 $i3->connect()->recv;
32
33 # subscribe to the 'focus' ipc event
34 my $focus = AnyEvent->condvar;
35 $i3->subscribe({
36     workspace => sub {
37         my ($event) = @_;
38         if ($event->{change} eq 'focus') {
39             $focus->send($event);
40         }
41     }
42 })->recv;
43
44 # give up after 0.5 seconds
45 my $timer = AnyEvent->timer(
46     after => 0.5,
47     cb => sub {
48         $focus->send(0);
49     }
50 );
51
52 # open two windows on the left output
53 cmd 'workspace ws-left';
54 open_window;
55 open_window;
56
57 # move a window over to the right output
58 cmd 'move right';
59 my $event = $focus->recv;
60
61 ok($event, 'moving from workspace with two windows triggered focus ipc event');
62 is($event->{current}->{name}, 'ws-right', 'focus event gave the right workspace');
63 is(@{$event->{current}->{nodes}}, 1, 'focus event gave the right number of windows on the workspace');
64
65 # reset and try again
66 $focus = AnyEvent->condvar;
67 cmd 'workspace ws-left';
68 $focus->recv;
69
70 $focus = AnyEvent->condvar;
71 cmd 'move right';
72 $event = $focus->recv;
73 ok($event, 'moving from workspace with one window triggered focus ipc event');
74 is($event->{current}->{name}, 'ws-right', 'focus event gave the right workspace');
75 is(@{$event->{current}->{nodes}}, 2, 'focus event gave the right number of windows on the workspace');
76
77 done_testing;