]> git.sur5r.net Git - i3/i3/blob - testcases/lib/i3test.pm
Merge branch 'next'
[i3/i3] / testcases / lib / i3test.pm
1 package i3test;
2 # vim:ts=4:sw=4:expandtab
3 use strict; use warnings;
4
5 use File::Temp qw(tmpnam tempfile tempdir);
6 use Test::Builder;
7 use X11::XCB::Rect;
8 use X11::XCB::Window;
9 use X11::XCB qw(:all);
10 use AnyEvent::I3;
11 use List::Util qw(first);
12 use Time::HiRes qw(sleep);
13 use Cwd qw(abs_path);
14 use Scalar::Util qw(blessed);
15 use SocketActivation;
16
17 use v5.10;
18
19 # preload
20 use Test::More ();
21 use Data::Dumper ();
22
23 use Exporter ();
24 our @EXPORT = qw(
25     get_workspace_names
26     get_unused_workspace
27     fresh_workspace
28     get_ws_content
29     get_ws
30     get_focused
31     open_empty_con
32     open_window
33     open_floating_window
34     get_dock_clients
35     cmd
36     sync_with_i3
37     exit_gracefully
38     workspace_exists
39     focused_ws
40     get_socket_path
41     launch_with_config
42     wait_for_event
43     wait_for_map
44     wait_for_unmap
45     $x
46 );
47
48 =head1 NAME
49
50 i3test - Testcase setup module
51
52 =encoding utf-8
53
54 =head1 SYNOPSIS
55
56   use i3test;
57
58   my $ws = fresh_workspace;
59   is_num_children($ws, 0, 'no containers on this workspace yet');
60   cmd 'open';
61   is_num_children($ws, 1, 'one container after "open"');
62
63   done_testing;
64
65 =head1 DESCRIPTION
66
67 This module is used in every i3 testcase and takes care of automatically
68 starting i3 before any test instructions run. It also saves you typing of lots
69 of boilerplate in every test file.
70
71
72 i3test automatically "use"s C<Test::More>, C<Data::Dumper>, C<AnyEvent::I3>,
73 C<Time::HiRes>’s C<sleep> and C<i3test::Test> so that all of them are available
74 to you in your testcase.
75
76 See also C<i3test::Test> (L<http://build.i3wm.org/docs/lib-i3test-test.html>)
77 which provides additional test instructions (like C<ok> or C<is>).
78
79 =cut
80
81 my $tester = Test::Builder->new();
82 my $_cached_socket_path = undef;
83 my $_sync_window = undef;
84 my $tmp_socket_path = undef;
85
86 our $x;
87
88 BEGIN {
89     my $window_count = 0;
90     sub counter_window {
91         return $window_count++;
92     }
93 }
94
95 my $i3_pid;
96 my $i3_autostart;
97
98 END {
99
100     # testcases which start i3 manually should always call exit_gracefully
101     # on their own. Let’s see, whether they really did.
102     if (! $i3_autostart) {
103         return unless $i3_pid;
104
105         $tester->ok(undef, 'testcase called exit_gracefully()');
106     }
107
108     # don't trigger SIGCHLD handler
109     local $SIG{CHLD};
110
111     # From perldoc -v '$?':
112     # Inside an "END" subroutine $? contains the value
113     # that is going to be given to "exit()".
114     #
115     # Since waitpid sets $?, we need to localize it,
116     # otherwise TAP would be misinterpreted our return status
117     local $?;
118
119     # When measuring code coverage, try to exit i3 cleanly (otherwise, .gcda
120     # files are not written)
121     if ($ENV{COVERAGE} || $ENV{VALGRIND}) {
122         exit_gracefully($i3_pid, "/tmp/nested-$ENV{DISPLAY}");
123
124     } else {
125         kill(9, $i3_pid)
126             or $tester->BAIL_OUT("could not kill i3");
127
128         waitpid $i3_pid, 0;
129     }
130 }
131
132 sub import {
133     my ($class, %args) = @_;
134     my $pkg = caller;
135
136     $i3_autostart = delete($args{i3_autostart}) // 1;
137
138     my $cv = launch_with_config('-default', dont_block => 1)
139         if $i3_autostart;
140
141     my $test_more_args = '';
142     $test_more_args = join(' ', 'qw(', %args, ')') if keys %args;
143     local $@;
144     eval << "__";
145 package $pkg;
146 use Test::More $test_more_args;
147 use Data::Dumper;
148 use AnyEvent::I3;
149 use Time::HiRes qw(sleep);
150 use i3test::Test;
151 __
152     $tester->BAIL_OUT("$@") if $@;
153     feature->import(":5.10");
154     strict->import;
155     warnings->import;
156
157     $x ||= i3test::X11->new;
158     $cv->recv if $i3_autostart;
159
160     @_ = ($class);
161     goto \&Exporter::import;
162 }
163
164 =head1 EXPORT
165
166 =head2 wait_for_event($timeout, $callback)
167
168 Waits for the next event and calls the given callback for every event to
169 determine if this is the event we are waiting for.
170
171 Can be used to wait until a window is mapped, until a ClientMessage is
172 received, etc.
173
174   wait_for_event 0.25, sub { $_[0]->{response_type} == MAP_NOTIFY };
175
176 =cut
177 sub wait_for_event {
178     my ($timeout, $cb) = @_;
179
180     my $cv = AE::cv;
181
182     $x->flush;
183
184     # unfortunately, there is no constant for this
185     my $ae_read = 0;
186
187     my $guard = AE::io $x->get_file_descriptor, $ae_read, sub {
188         while (defined(my $event = $x->poll_for_event)) {
189             if ($cb->($event)) {
190                 $cv->send(1);
191                 last;
192             }
193         }
194     };
195
196     # Trigger timeout after $timeout seconds (can be fractional)
197     my $t = AE::timer $timeout, 0, sub { warn "timeout ($timeout secs)"; $cv->send(0) };
198
199     my $result = $cv->recv;
200     undef $t;
201     undef $guard;
202     return $result;
203 }
204
205 =head2 wait_for_map($window)
206
207 Thin wrapper around wait_for_event which waits for MAP_NOTIFY.
208 Make sure to include 'structure_notify' in the window’s event_mask attribute.
209
210 This function is called by C<open_window>, so in most cases, you don’t need to
211 call it on your own. If you need special setup of the window before mapping,
212 you might have to map it on your own and use this function:
213
214   my $window = open_window(dont_map => 1);
215   # Do something special with the window first
216   # …
217
218   # Now map it and wait until it’s been mapped
219   $window->map;
220   wait_for_map($window);
221
222 =cut
223 sub wait_for_map {
224     my ($win) = @_;
225     my $id = (blessed($win) && $win->isa('X11::XCB::Window')) ? $win->id : $win;
226     wait_for_event 2, sub {
227         $_[0]->{response_type} == MAP_NOTIFY and $_[0]->{window} == $id
228     };
229 }
230
231 =head2 wait_for_unmap($window)
232
233 Wrapper around C<wait_for_event> which waits for UNMAP_NOTIFY. Also calls
234 C<sync_with_i3> to make sure i3 also picked up and processed the UnmapNotify
235 event.
236
237   my $ws = fresh_workspace;
238   my $window = open_window;
239   is_num_children($ws, 1, 'one window on workspace');
240   $window->unmap;
241   wait_for_unmap;
242   is_num_children($ws, 0, 'no more windows on this workspace');
243
244 =cut
245 sub wait_for_unmap {
246     my ($win) = @_;
247     # my $id = (blessed($win) && $win->isa('X11::XCB::Window')) ? $win->id : $win;
248     wait_for_event 2, sub {
249         $_[0]->{response_type} == UNMAP_NOTIFY # and $_[0]->{window} == $id
250     };
251     sync_with_i3();
252 }
253
254 =head2 open_window([ $args ])
255
256 Opens a new window (see C<X11::XCB::Window>), maps it, waits until it got mapped
257 and synchronizes with i3.
258
259 The following arguments can be passed:
260
261 =over 4
262
263 =item class
264
265 The X11 window class (e.g. WINDOW_CLASS_INPUT_OUTPUT), not to be confused with
266 the WM_CLASS!
267
268 =item rect
269
270 An arrayref with 4 members specifying the initial geometry (position and size)
271 of the window, e.g. C<< [ 0, 100, 70, 50 ] >> for a window appearing at x=0, y=100
272 with width=70 and height=50.
273
274 Note that this is entirely irrelevant for tiling windows.
275
276 =item background_color
277
278 The background pixel color of the window, formatted as "#rrggbb", like HTML
279 color codes (e.g. #c0c0c0). This is useful to tell windows apart when actually
280 watching the testcases.
281
282 =item event_mask
283
284 An arrayref containing strings which describe the X11 event mask we use for that
285 window. The default is C<< [ 'structure_notify' ] >>.
286
287 =item name
288
289 The window’s C<_NET_WM_NAME> (UTF-8 window title). By default, this is "Window
290 n" with n being replaced by a counter to keep windows apart.
291
292 =item dont_map
293
294 Set to a true value to avoid mapping the window (making it visible).
295
296 =item before_map
297
298 A coderef which is called before the window is mapped (unless C<dont_map> is
299 true). The freshly created C<$window> is passed as C<$_> and as the first
300 argument.
301
302 =back
303
304 The default values are equivalent to this call:
305
306   open_window(
307     class => WINDOW_CLASS_INPUT_OUTPUT
308     rect => [ 0, 0, 30, 30 ]
309     background_color => '#c0c0c0'
310     event_mask => [ 'structure_notify' ]
311     name => 'Window <n>'
312   );
313
314 Usually, though, calls are simpler:
315
316   my $top_window = open_window;
317
318 =cut
319 sub open_window {
320     my %args = @_ == 1 ? %{$_[0]} : @_;
321
322     my $dont_map = delete $args{dont_map};
323     my $before_map = delete $args{before_map};
324
325     $args{class} //= WINDOW_CLASS_INPUT_OUTPUT;
326     $args{rect} //= [ 0, 0, 30, 30 ];
327     $args{background_color} //= '#c0c0c0';
328     $args{event_mask} //= [ 'structure_notify' ];
329     $args{name} //= 'Window ' . counter_window();
330
331     my $window = $x->root->create_child(%args);
332
333     if ($before_map) {
334         # TODO: investigate why _create is not needed
335         $window->_create;
336         $before_map->($window) for $window;
337     }
338
339     return $window if $dont_map;
340
341     $window->map;
342     wait_for_map($window);
343     return $window;
344 }
345
346 =head2 open_floating_window([ $args ])
347
348 Thin wrapper around open_window which sets window_type to
349 C<_NET_WM_WINDOW_TYPE_UTILITY> to make the window floating.
350
351 The arguments are the same as those of C<open_window>.
352
353 =cut
354 sub open_floating_window {
355     my %args = @_ == 1 ? %{$_[0]} : @_;
356
357     $args{window_type} = $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY');
358
359     return open_window(\%args);
360 }
361
362 sub open_empty_con {
363     my ($i3) = @_;
364
365     my $reply = $i3->command('open')->recv;
366     return $reply->[0]->{id};
367 }
368
369 =head2 get_workspace_names()
370
371 Returns an arrayref containing the name of every workspace (regardless of its
372 output) which currently exists.
373
374   my $workspace_names = get_workspace_names;
375   is(scalar @$workspace_names, 3, 'three workspaces exist currently');
376
377 =cut
378 sub get_workspace_names {
379     my $i3 = i3(get_socket_path());
380     my $tree = $i3->get_tree->recv;
381     my @outputs = @{$tree->{nodes}};
382     my @cons;
383     for my $output (@outputs) {
384         next if $output->{name} eq '__i3';
385         # get the first CT_CON of each output
386         my $content = first { $_->{type} == 2 } @{$output->{nodes}};
387         @cons = (@cons, @{$content->{nodes}});
388     }
389     [ map { $_->{name} } @cons ]
390 }
391
392 =head2 get_unused_workspace
393
394 Returns a workspace name which has not yet been used. See also
395 C<fresh_workspace> which directly switches to an unused workspace.
396
397   my $ws = get_unused_workspace;
398   cmd "workspace $ws";
399
400 =cut
401 sub get_unused_workspace {
402     my @names = get_workspace_names();
403     my $tmp;
404     do { $tmp = tmpnam() } while ($tmp ~~ @names);
405     $tmp
406 }
407
408 =head2 fresh_workspace([ $args ])
409
410 Switches to an unused workspace and returns the name of that workspace.
411
412 Optionally switches to the specified output first.
413
414     my $ws = fresh_workspace;
415
416     # Get a fresh workspace on the second output.
417     my $ws = fresh_workspace(output => 1);
418
419 =cut
420 sub fresh_workspace {
421     my %args = @_;
422     if (exists($args{output})) {
423         my $i3 = i3(get_socket_path());
424         my $tree = $i3->get_tree->recv;
425         my $output = first { $_->{name} eq "fake-$args{output}" }
426                         @{$tree->{nodes}};
427         die "BUG: Could not find output $args{output}" unless defined($output);
428         # Get the focused workspace on that output and switch to it.
429         my $content = first { $_->{type} == 2 } @{$output->{nodes}};
430         my $focused = $content->{focus}->[0];
431         my $workspace = first { $_->{id} == $focused } @{$content->{nodes}};
432         $workspace = $workspace->{name};
433         cmd("workspace $workspace");
434     }
435
436     my $unused = get_unused_workspace;
437     cmd("workspace $unused");
438     $unused
439 }
440
441 =head2 get_ws($workspace)
442
443 Returns the container (from the i3 layout tree) which represents C<$workspace>.
444
445   my $ws = fresh_workspace;
446   my $ws_con = get_ws($ws);
447   ok(!$ws_con->{urgent}, 'fresh workspace not marked urgent');
448
449 Here is an example which counts the number of urgent containers recursively,
450 starting from the workspace container:
451
452   sub count_urgent {
453       my ($con) = @_;
454
455       my @children = (@{$con->{nodes}}, @{$con->{floating_nodes}});
456       my $urgent = grep { $_->{urgent} } @children;
457       $urgent += count_urgent($_) for @children;
458       return $urgent;
459   }
460   my $urgent = count_urgent(get_ws($ws));
461   is($urgent, 3, "three urgent windows on workspace $ws");
462
463
464 =cut
465 sub get_ws {
466     my ($name) = @_;
467     my $i3 = i3(get_socket_path());
468     my $tree = $i3->get_tree->recv;
469
470     my @outputs = @{$tree->{nodes}};
471     my @workspaces;
472     for my $output (@outputs) {
473         # get the first CT_CON of each output
474         my $content = first { $_->{type} == 2 } @{$output->{nodes}};
475         @workspaces = (@workspaces, @{$content->{nodes}});
476     }
477
478     # as there can only be one workspace with this name, we can safely
479     # return the first entry
480     return first { $_->{name} eq $name } @workspaces;
481 }
482
483 =head2 get_ws_content($workspace)
484
485 Returns the content (== tree, starting from the node of a workspace)
486 of a workspace. If called in array context, also includes the focus
487 stack of the workspace.
488
489   my $nodes = get_ws_content($ws);
490   is(scalar @$nodes, 4, 'there are four containers at workspace-level');
491
492 Or, in array context:
493
494   my $window = open_window;
495   my ($nodes, $focus) = get_ws_content($ws);
496   is($focus->[0], $window->id, 'newly opened window focused');
497
498 Note that this function does not do recursion for you! It only returns the
499 containers B<on workspace level>. If you want to work with all containers (even
500 nested ones) on a workspace, you have to use recursion:
501
502   # NB: This function does not count floating windows
503   sub count_urgent {
504       my ($nodes) = @_;
505
506       my $urgent = 0;
507       for my $con (@$nodes) {
508           $urgent++ if $con->{urgent};
509           $urgent += count_urgent($con->{nodes});
510       }
511
512       return $urgent;
513   }
514   my $nodes = get_ws_content($ws);
515   my $urgent = count_urgent($nodes);
516   is($urgent, 3, "three urgent windows on workspace $ws");
517
518 If you also want to deal with floating windows, you have to use C<get_ws>
519 instead and access C<< ->{nodes} >> and C<< ->{floating_nodes} >> on your own.
520
521 =cut
522 sub get_ws_content {
523     my ($name) = @_;
524     my $con = get_ws($name);
525     return wantarray ? ($con->{nodes}, $con->{focus}) : $con->{nodes};
526 }
527
528 =head2 get_focused($workspace)
529
530 Returns the container ID of the currently focused container on C<$workspace>.
531
532   my $ws = fresh_workspace;
533   my $first_window = open_window;
534   my $second_window = open_window;
535   is(get_focused($ws), $second_window, 'second window focused');
536
537 =cut
538 sub get_focused {
539     my ($ws) = @_;
540     my $con = get_ws($ws);
541
542     my @focused = @{$con->{focus}};
543     my $lf;
544     while (@focused > 0) {
545         $lf = $focused[0];
546         last unless defined($con->{focus});
547         @focused = @{$con->{focus}};
548         my @cons = grep { $_->{id} == $lf } (@{$con->{nodes}}, @{$con->{'floating_nodes'}});
549         $con = $cons[0];
550     }
551
552     return $lf;
553 }
554
555 =head2 get_dock_clients([ $dockarea ])
556
557 Returns an array of all dock containers in C<$dockarea> (one of "top" or
558 "bottom"). If C<$dockarea> is not specified, returns an array of all dock
559 containers in any dockarea.
560
561   my @docked = get_dock_clients;
562   is(scalar @docked, 0, 'no dock clients yet');
563
564 =cut
565 sub get_dock_clients {
566     my $which = shift;
567
568     my $tree = i3(get_socket_path())->get_tree->recv;
569     my @outputs = @{$tree->{nodes}};
570     # Children of all dockareas
571     my @docked;
572     for my $output (@outputs) {
573         if (!defined($which)) {
574             @docked = (@docked, map { @{$_->{nodes}} }
575                                 grep { $_->{type} == 5 }
576                                 @{$output->{nodes}});
577         } elsif ($which eq 'top') {
578             my $first = first { $_->{type} == 5 } @{$output->{nodes}};
579             @docked = (@docked, @{$first->{nodes}}) if defined($first);
580         } elsif ($which eq 'bottom') {
581             my @matching = grep { $_->{type} == 5 } @{$output->{nodes}};
582             my $last = $matching[-1];
583             @docked = (@docked, @{$last->{nodes}}) if defined($last);
584         }
585     }
586     return @docked;
587 }
588
589 =head2 cmd($command)
590
591 Sends the specified command to i3.
592
593   my $ws = unused_workspace;
594   cmd "workspace $ws";
595   cmd 'focus right';
596
597 =cut
598 sub cmd {
599     i3(get_socket_path())->command(@_)->recv
600 }
601
602 =head2 workspace_exists($workspace)
603
604 Returns true if C<$workspace> is the name of an existing workspace.
605
606   my $old_ws = focused_ws;
607   # switch away from where we currently are
608   fresh_workspace;
609
610   ok(workspace_exists($old_ws), 'old workspace still exists');
611
612 =cut
613 sub workspace_exists {
614     my ($name) = @_;
615     ($name ~~ @{get_workspace_names()})
616 }
617
618 =head2 focused_ws
619
620 Returns the name of the currently focused workspace.
621
622   my $ws = focused_ws;
623   is($ws, '1', 'i3 starts on workspace 1');
624
625 =cut
626 sub focused_ws {
627     my $i3 = i3(get_socket_path());
628     my $tree = $i3->get_tree->recv;
629     my $focused = $tree->{focus}->[0];
630     my $output = first { $_->{id} == $focused } @{$tree->{nodes}};
631     my $content = first { $_->{type} == 2 } @{$output->{nodes}};
632     my $first = first { $_->{fullscreen_mode} == 1 } @{$content->{nodes}};
633     return $first->{name}
634 }
635
636 =head2 sync_with_i3([ $args ])
637
638 Sends an I3_SYNC ClientMessage with a random value to the root window.
639 i3 will reply with the same value, but, due to the order of events it
640 processes, only after all other events are done.
641
642 This can be used to ensure the results of a cmd 'focus left' are pushed to
643 X11 and that C<< $x->input_focus >> returns the correct value afterwards.
644
645 See also L<http://build.i3wm.org/docs/testsuite.html> for a longer explanation.
646
647   my $window = open_window;
648   $window->add_hint('urgency');
649   # Ensure i3 picked up the change
650   sync_with_i3;
651
652 The only time when you need to use the C<no_cache> argument is when you just
653 killed your own X11 connection:
654
655   cmd 'kill client';
656   # We need to re-establish the X11 connection which we just killed :).
657   $x = i3test::X11->new;
658   sync_with_i3(no_cache => 1);
659
660 =cut
661 sub sync_with_i3 {
662     my %args = @_ == 1 ? %{$_[0]} : @_;
663
664     # Since we need a (mapped) window for receiving a ClientMessage, we create
665     # one on the first call of sync_with_i3. It will be re-used in all
666     # subsequent calls.
667     if (!exists($args{window_id}) &&
668         (!defined($_sync_window) || exists($args{no_cache}))) {
669         $_sync_window = open_window(
670             rect => [ -15, -15, 10, 10 ],
671             override_redirect => 1,
672         );
673     }
674
675     my $window_id = delete $args{window_id};
676     $window_id //= $_sync_window->id;
677
678     my $root = $x->get_root_window();
679     # Generate a random number to identify this particular ClientMessage.
680     my $myrnd = int(rand(255)) + 1;
681
682     # Generate a ClientMessage, see xcb_client_message_t
683     my $msg = pack "CCSLLLLLLL",
684          CLIENT_MESSAGE, # response_type
685          32,     # format
686          0,      # sequence
687          $root,  # destination window
688          $x->atom(name => 'I3_SYNC')->id,
689
690          $window_id,    # data[0]: our own window id
691          $myrnd, # data[1]: a random value to identify the request
692          0,
693          0,
694          0;
695
696     # Send it to the root window -- since i3 uses the SubstructureRedirect
697     # event mask, it will get the ClientMessage.
698     $x->send_event(0, $root, EVENT_MASK_SUBSTRUCTURE_REDIRECT, $msg);
699
700     # now wait until the reply is here
701     return wait_for_event 2, sub {
702         my ($event) = @_;
703         # TODO: const
704         return 0 unless $event->{response_type} == 161;
705
706         my ($win, $rnd) = unpack "LL", $event->{data};
707         return ($rnd == $myrnd);
708     };
709 }
710
711 =head2 exit_gracefully($pid, [ $socketpath ])
712
713 Tries to exit i3 gracefully (with the 'exit' cmd) or kills the PID if that fails.
714
715 If C<$socketpath> is not specified, C<get_socket_path()> will be called.
716
717 You only need to use this function if you have launched i3 on your own with
718 C<launch_with_config>. Otherwise, it will be automatically called when the
719 testcase ends.
720
721   use i3test i3_autostart => 0;
722   my $pid = launch_with_config($config);
723   # …
724   exit_gracefully($pid);
725
726 =cut
727 sub exit_gracefully {
728     my ($pid, $socketpath) = @_;
729     $socketpath ||= get_socket_path();
730
731     my $exited = 0;
732     eval {
733         say "Exiting i3 cleanly...";
734         i3($socketpath)->command('exit')->recv;
735         $exited = 1;
736     };
737
738     if (!$exited) {
739         kill(9, $pid)
740             or $tester->BAIL_OUT("could not kill i3");
741     }
742
743     if ($socketpath =~ m,^/tmp/i3-test-socket-,) {
744         unlink($socketpath);
745     }
746
747     waitpid $pid, 0;
748     undef $i3_pid;
749 }
750
751 =head2 get_socket_path([ $cache ])
752
753 Gets the socket path from the C<I3_SOCKET_PATH> atom stored on the X11 root
754 window. After the first call, this function will return a cached version of the
755 socket path unless you specify a false value for C<$cache>.
756
757   my $i3 = i3(get_socket_path());
758   $i3->command('nop test example')->recv;
759
760 To avoid caching:
761
762   my $i3 = i3(get_socket_path(0));
763
764 =cut
765 sub get_socket_path {
766     my ($cache) = @_;
767     $cache ||= 1;
768
769     if ($cache && defined($_cached_socket_path)) {
770         return $_cached_socket_path;
771     }
772
773     my $atom = $x->atom(name => 'I3_SOCKET_PATH');
774     my $cookie = $x->get_property(0, $x->get_root_window(), $atom->id, GET_PROPERTY_TYPE_ANY, 0, 256);
775     my $reply = $x->get_property_reply($cookie->{sequence});
776     my $socketpath = $reply->{value};
777     if ($socketpath eq "/tmp/nested-$ENV{DISPLAY}") {
778         $socketpath .= '-activation';
779     }
780     $_cached_socket_path = $socketpath;
781     return $socketpath;
782 }
783
784 =head2 launch_with_config($config, [ $args ])
785
786 Launches a new i3 process with C<$config> as configuration file. Useful for
787 tests which test specific config file directives.
788
789   use i3test i3_autostart => 0;
790
791   my $config = <<EOT;
792   # i3 config file (v4)
793   for_window [class="borderless"] border none
794   for_window [title="special borderless title"] border none
795   EOT
796
797   my $pid = launch_with_config($config);
798
799   # …
800
801   exit_gracefully($pid);
802
803 =cut
804 sub launch_with_config {
805     my ($config, %args) = @_;
806
807     $tmp_socket_path = "/tmp/nested-$ENV{DISPLAY}";
808
809     $args{dont_create_temp_dir} //= 0;
810
811     my ($fh, $tmpfile) = tempfile("i3-cfg-for-$ENV{TESTNAME}-XXXXX", UNLINK => 1);
812
813     if ($config ne '-default') {
814         say $fh $config;
815     } else {
816         open(my $conf_fh, '<', './i3-test.config')
817             or $tester->BAIL_OUT("could not open default config: $!");
818         local $/;
819         say $fh scalar <$conf_fh>;
820     }
821
822     say $fh "ipc-socket $tmp_socket_path"
823         unless $args{dont_add_socket_path};
824
825     close($fh);
826
827     my $cv = AnyEvent->condvar;
828     $i3_pid = activate_i3(
829         unix_socket_path => "$tmp_socket_path-activation",
830         display => $ENV{DISPLAY},
831         configfile => $tmpfile,
832         outdir => $ENV{OUTDIR},
833         testname => $ENV{TESTNAME},
834         valgrind => $ENV{VALGRIND},
835         strace => $ENV{STRACE},
836         xtrace => $ENV{XTRACE},
837         restart => $ENV{RESTART},
838         cv => $cv,
839         dont_create_temp_dir => $args{dont_create_temp_dir},
840     );
841
842     # force update of the cached socket path in lib/i3test
843     # as soon as i3 has started
844     $cv->cb(sub { get_socket_path(0) });
845
846     return $cv if $args{dont_block};
847
848     # blockingly wait until i3 is ready
849     $cv->recv;
850
851     return $i3_pid;
852 }
853
854 =head1 AUTHOR
855
856 Michael Stapelberg <michael@i3wm.org>
857
858 =cut
859
860 package i3test::X11;
861 use parent 'X11::XCB::Connection';
862
863 sub input_focus {
864     my $self = shift;
865     i3test::sync_with_i3();
866
867     return $self->SUPER::input_focus(@_);
868 }
869
870 1