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