2009-08-05 21:37:11 +02:00
|
|
|
|
package i3test;
|
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
|
2011-08-03 00:03:13 +02:00
|
|
|
|
use File::Temp qw(tmpnam tempfile tempdir);
|
2011-01-28 01:10:45 +01:00
|
|
|
|
use Test::Builder;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
use X11::XCB::Rect;
|
|
|
|
|
use X11::XCB::Window;
|
|
|
|
|
use X11::XCB qw(:all);
|
2010-04-16 15:03:27 +02:00
|
|
|
|
use AnyEvent::I3;
|
2011-09-22 21:30:24 +02:00
|
|
|
|
use EV;
|
2010-06-02 17:50:06 +02:00
|
|
|
|
use List::Util qw(first);
|
2011-02-21 14:55:03 +01:00
|
|
|
|
use List::MoreUtils qw(lastval);
|
2011-03-07 00:06:27 +01:00
|
|
|
|
use Time::HiRes qw(sleep);
|
2011-05-24 22:21:05 +02:00
|
|
|
|
use Try::Tiny;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
use Cwd qw(abs_path);
|
|
|
|
|
use Proc::Background;
|
2011-10-05 00:33:38 +02:00
|
|
|
|
use SocketActivation;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
|
2010-07-03 16:28:58 +02:00
|
|
|
|
use v5.10;
|
2010-04-16 15:03:27 +02:00
|
|
|
|
|
2010-07-03 16:28:58 +02:00
|
|
|
|
use Exporter ();
|
2011-09-22 23:11:11 +02:00
|
|
|
|
our @EXPORT = qw(
|
|
|
|
|
get_workspace_names
|
|
|
|
|
get_unused_workspace
|
|
|
|
|
fresh_workspace
|
|
|
|
|
get_ws_content
|
|
|
|
|
get_ws
|
|
|
|
|
get_focused
|
|
|
|
|
open_empty_con
|
2011-09-24 16:11:37 +02:00
|
|
|
|
open_window
|
|
|
|
|
open_floating_window
|
2011-09-22 23:11:11 +02:00
|
|
|
|
get_dock_clients
|
|
|
|
|
cmd
|
|
|
|
|
sync_with_i3
|
|
|
|
|
does_i3_live
|
|
|
|
|
exit_gracefully
|
|
|
|
|
workspace_exists
|
|
|
|
|
focused_ws
|
|
|
|
|
get_socket_path
|
|
|
|
|
launch_with_config
|
2011-09-24 14:07:05 +02:00
|
|
|
|
wait_for_event
|
|
|
|
|
wait_for_map
|
|
|
|
|
wait_for_unmap
|
2011-09-22 23:11:11 +02:00
|
|
|
|
);
|
2011-01-28 01:10:45 +01:00
|
|
|
|
|
|
|
|
|
my $tester = Test::Builder->new();
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $_cached_socket_path = undef;
|
2011-09-23 21:37:45 +02:00
|
|
|
|
my $_sync_window = undef;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
my $tmp_socket_path = undef;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
2009-08-06 00:03:31 +02:00
|
|
|
|
BEGIN {
|
|
|
|
|
my $window_count = 0;
|
|
|
|
|
sub counter_window {
|
|
|
|
|
return $window_count++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-03 16:28:58 +02:00
|
|
|
|
sub import {
|
|
|
|
|
my $class = shift;
|
|
|
|
|
my $pkg = caller;
|
|
|
|
|
eval "package $pkg;
|
2011-05-25 20:15:52 +02:00
|
|
|
|
use Test::Most" . (@_ > 0 ? " qw(@_)" : "") . ";
|
2010-07-03 16:28:58 +02:00
|
|
|
|
use Data::Dumper;
|
|
|
|
|
use AnyEvent::I3;
|
2011-03-09 18:47:00 +01:00
|
|
|
|
use Time::HiRes qw(sleep);
|
2010-07-03 16:28:58 +02:00
|
|
|
|
use Test::Deep qw(eq_deeply cmp_deeply cmp_set cmp_bag cmp_methods useclass noclass set bag subbagof superbagof subsetof supersetof superhashof subhashof bool str arraylength Isa ignore methods regexprefonly regexpmatches num regexponly scalref reftype hashkeysonly blessed array re hash regexpref hash_each shallow array_each code arrayelementsonly arraylengthonly scalarrefonly listmethods any hashkeys isa);
|
|
|
|
|
use v5.10;
|
|
|
|
|
use strict;
|
|
|
|
|
use warnings;
|
|
|
|
|
";
|
|
|
|
|
@_ = ($class);
|
|
|
|
|
goto \&Exporter::import;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-23 21:37:45 +02:00
|
|
|
|
#
|
|
|
|
|
# Waits for the next event and calls the given callback for every event to
|
|
|
|
|
# determine if this is the event we are waiting for.
|
|
|
|
|
#
|
|
|
|
|
# Can be used to wait until a window is mapped, until a ClientMessage is
|
|
|
|
|
# received, etc.
|
|
|
|
|
#
|
|
|
|
|
# wait_for_event $x, 0.25, sub { $_[0]->{response_type} == MAP_NOTIFY };
|
|
|
|
|
#
|
|
|
|
|
sub wait_for_event {
|
|
|
|
|
my ($x, $timeout, $cb) = @_;
|
|
|
|
|
|
|
|
|
|
my $cv = AE::cv;
|
|
|
|
|
|
|
|
|
|
my $prep = EV::prepare sub {
|
|
|
|
|
$x->flush;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
my $check = EV::check sub {
|
|
|
|
|
while (defined(my $event = $x->poll_for_event)) {
|
|
|
|
|
if ($cb->($event)) {
|
|
|
|
|
$cv->send(1);
|
|
|
|
|
last;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
my $watcher = EV::io $x->get_file_descriptor, EV::READ, sub {
|
|
|
|
|
# do nothing, we only need this watcher so that EV picks up the events
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Trigger timeout after $timeout seconds (can be fractional)
|
2011-09-24 14:07:05 +02:00
|
|
|
|
my $timeout = AE::timer $timeout, 0, sub { warn "timeout"; $cv->send(0) };
|
2011-09-23 21:37:45 +02:00
|
|
|
|
|
|
|
|
|
my $result = $cv->recv;
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-24 14:07:05 +02:00
|
|
|
|
# thin wrapper around wait_for_event which waits for MAP_NOTIFY
|
|
|
|
|
# make sure to include 'structure_notify' in the window’s event_mask attribute
|
|
|
|
|
sub wait_for_map {
|
|
|
|
|
my ($x) = @_;
|
|
|
|
|
wait_for_event $x, 1, sub { $_[0]->{response_type} == MAP_NOTIFY };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Wrapper around wait_for_event which waits for UNMAP_NOTIFY. Also calls
|
|
|
|
|
# sync_with_i3 to make sure i3 also picked up and processed the UnmapNotify
|
|
|
|
|
# event.
|
|
|
|
|
sub wait_for_unmap {
|
|
|
|
|
my ($x) = @_;
|
|
|
|
|
wait_for_event $x, 1, sub { $_[0]->{response_type} == UNMAP_NOTIFY };
|
|
|
|
|
sync_with_i3($x);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
#
|
|
|
|
|
# Opens a new window (see X11::XCB::Window), maps it, waits until it got mapped
|
|
|
|
|
# and synchronizes with i3.
|
|
|
|
|
#
|
|
|
|
|
# set dont_map to a true value to avoid mapping
|
|
|
|
|
#
|
|
|
|
|
# default values:
|
|
|
|
|
# class => WINDOW_CLASS_INPUT_OUTPUT
|
|
|
|
|
# rect => [ 0, 0, 30, 30 ]
|
|
|
|
|
# background_color => '#c0c0c0'
|
|
|
|
|
# event_mask => [ 'structure_notify' ]
|
|
|
|
|
# name => 'Window <n>'
|
|
|
|
|
#
|
|
|
|
|
sub open_window {
|
|
|
|
|
my ($x, $args) = @_;
|
|
|
|
|
my %args = ($args ? %$args : ());
|
2011-03-07 00:06:27 +01:00
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
my $dont_map = delete $args{dont_map};
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
2011-09-24 16:44:42 +02:00
|
|
|
|
$args{class} //= WINDOW_CLASS_INPUT_OUTPUT;
|
|
|
|
|
$args{rect} //= [ 0, 0, 30, 30 ];
|
|
|
|
|
$args{background_color} //= '#c0c0c0';
|
|
|
|
|
$args{event_mask} //= [ 'structure_notify' ];
|
|
|
|
|
$args{name} //= 'Window ' . counter_window();
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
my $window = $x->root->create_child(%args);
|
2011-09-17 20:29:23 +02:00
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
return $window if $dont_map;
|
2011-09-17 20:29:23 +02:00
|
|
|
|
|
2009-08-05 21:37:11 +02:00
|
|
|
|
$window->map;
|
2011-09-24 16:11:37 +02:00
|
|
|
|
wait_for_map($x);
|
|
|
|
|
# We sync with i3 here to make sure $x->input_focus is updated.
|
|
|
|
|
sync_with_i3($x);
|
|
|
|
|
return $window;
|
|
|
|
|
}
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
# Thin wrapper around open_window which sets window_type to
|
|
|
|
|
# _NET_WM_WINDOW_TYPE_UTILITY to make the window floating.
|
|
|
|
|
sub open_floating_window {
|
|
|
|
|
my ($x, $args) = @_;
|
|
|
|
|
my %args = ($args ? %$args : ());
|
2009-08-05 21:37:11 +02:00
|
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
|
$args{window_type} = $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY');
|
|
|
|
|
|
|
|
|
|
return open_window($x, \%args);
|
2009-08-05 21:37:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-07-17 15:17:16 +02:00
|
|
|
|
sub open_empty_con {
|
|
|
|
|
my ($i3) = @_;
|
|
|
|
|
|
|
|
|
|
my $reply = $i3->command('open')->recv;
|
|
|
|
|
return $reply->{id};
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-16 15:03:27 +02:00
|
|
|
|
sub get_workspace_names {
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $i3 = i3(get_socket_path());
|
2010-11-21 21:42:28 +01:00
|
|
|
|
my $tree = $i3->get_tree->recv;
|
2011-02-20 23:43:03 +01:00
|
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
|
my @cons;
|
|
|
|
|
for my $output (@outputs) {
|
|
|
|
|
# get the first CT_CON of each output
|
|
|
|
|
my $content = first { $_->{type} == 2 } @{$output->{nodes}};
|
|
|
|
|
@cons = (@cons, @{$content->{nodes}});
|
|
|
|
|
}
|
|
|
|
|
[ map { $_->{name} } @cons ]
|
2010-04-16 15:03:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub get_unused_workspace {
|
|
|
|
|
my @names = get_workspace_names();
|
|
|
|
|
my $tmp;
|
|
|
|
|
do { $tmp = tmpnam() } while ($tmp ~~ @names);
|
|
|
|
|
$tmp
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
|
sub fresh_workspace {
|
|
|
|
|
my $unused = get_unused_workspace;
|
|
|
|
|
cmd("workspace $unused");
|
|
|
|
|
$unused
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-02 17:50:06 +02:00
|
|
|
|
sub get_ws {
|
|
|
|
|
my ($name) = @_;
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $i3 = i3(get_socket_path());
|
2010-11-21 21:42:28 +01:00
|
|
|
|
my $tree = $i3->get_tree->recv;
|
2011-02-20 23:43:03 +01:00
|
|
|
|
|
|
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
|
my @workspaces;
|
|
|
|
|
for my $output (@outputs) {
|
|
|
|
|
# get the first CT_CON of each output
|
|
|
|
|
my $content = first { $_->{type} == 2 } @{$output->{nodes}};
|
|
|
|
|
@workspaces = (@workspaces, @{$content->{nodes}});
|
|
|
|
|
}
|
2010-06-02 17:50:06 +02:00
|
|
|
|
|
|
|
|
|
# as there can only be one workspace with this name, we can safely
|
|
|
|
|
# return the first entry
|
2011-02-20 23:43:03 +01:00
|
|
|
|
return first { $_->{name} eq $name } @workspaces;
|
2010-06-02 17:50:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-16 15:03:27 +02:00
|
|
|
|
#
|
|
|
|
|
# returns the content (== tree, starting from the node of a workspace)
|
2010-05-10 00:06:24 +02:00
|
|
|
|
# of a workspace. If called in array context, also includes the focus
|
|
|
|
|
# stack of the workspace
|
2010-04-16 15:03:27 +02:00
|
|
|
|
#
|
|
|
|
|
sub get_ws_content {
|
|
|
|
|
my ($name) = @_;
|
2010-06-02 17:50:06 +02:00
|
|
|
|
my $con = get_ws($name);
|
|
|
|
|
return wantarray ? ($con->{nodes}, $con->{focus}) : $con->{nodes};
|
2010-04-16 15:03:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-06-01 20:52:22 +02:00
|
|
|
|
sub get_focused {
|
|
|
|
|
my ($ws) = @_;
|
2011-02-20 23:43:03 +01:00
|
|
|
|
my $con = get_ws($ws);
|
2010-06-01 20:52:22 +02:00
|
|
|
|
|
|
|
|
|
my @focused = @{$con->{focus}};
|
|
|
|
|
my $lf;
|
|
|
|
|
while (@focused > 0) {
|
|
|
|
|
$lf = $focused[0];
|
|
|
|
|
last unless defined($con->{focus});
|
|
|
|
|
@focused = @{$con->{focus}};
|
2010-11-21 16:34:45 +01:00
|
|
|
|
@cons = grep { $_->{id} == $lf } (@{$con->{nodes}}, @{$con->{'floating_nodes'}});
|
2010-06-01 20:52:22 +02:00
|
|
|
|
$con = $cons[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $lf;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 12:21:02 +01:00
|
|
|
|
sub get_dock_clients {
|
2011-02-21 14:55:03 +01:00
|
|
|
|
my $which = shift;
|
|
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $tree = i3(get_socket_path())->get_tree->recv;
|
2011-02-21 12:21:02 +01:00
|
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
|
# Children of all dockareas
|
|
|
|
|
my @docked;
|
|
|
|
|
for my $output (@outputs) {
|
2011-02-21 14:55:03 +01:00
|
|
|
|
if (!defined($which)) {
|
|
|
|
|
@docked = (@docked, map { @{$_->{nodes}} }
|
|
|
|
|
grep { $_->{type} == 5 }
|
|
|
|
|
@{$output->{nodes}});
|
|
|
|
|
} elsif ($which eq 'top') {
|
|
|
|
|
my $first = first { $_->{type} == 5 } @{$output->{nodes}};
|
|
|
|
|
@docked = (@docked, @{$first->{nodes}});
|
|
|
|
|
} elsif ($which eq 'bottom') {
|
|
|
|
|
my $last = lastval { $_->{type} == 5 } @{$output->{nodes}};
|
|
|
|
|
@docked = (@docked, @{$last->{nodes}});
|
|
|
|
|
}
|
2011-02-21 12:21:02 +01:00
|
|
|
|
}
|
|
|
|
|
return @docked;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-29 11:21:33 +01:00
|
|
|
|
sub cmd {
|
2011-07-25 13:35:56 +02:00
|
|
|
|
i3(get_socket_path())->command(@_)->recv
|
2010-11-29 11:21:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-14 23:43:57 +02:00
|
|
|
|
sub workspace_exists {
|
|
|
|
|
my ($name) = @_;
|
|
|
|
|
($name ~~ @{get_workspace_names()})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub focused_ws {
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $i3 = i3(get_socket_path());
|
2011-07-14 23:43:57 +02:00
|
|
|
|
my $tree = $i3->get_tree->recv;
|
|
|
|
|
my @outputs = @{$tree->{nodes}};
|
|
|
|
|
my @cons;
|
|
|
|
|
for my $output (@outputs) {
|
|
|
|
|
# get the first CT_CON of each output
|
|
|
|
|
my $content = first { $_->{type} == 2 } @{$output->{nodes}};
|
|
|
|
|
my $first = first { $_->{fullscreen_mode} == 1 } @{$content->{nodes}};
|
|
|
|
|
return $first->{name}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-23 21:37:45 +02:00
|
|
|
|
#
|
|
|
|
|
# Sends an I3_SYNC ClientMessage with a random value to the root window.
|
|
|
|
|
# i3 will reply with the same value, but, due to the order of events it
|
|
|
|
|
# processes, only after all other events are done.
|
|
|
|
|
#
|
|
|
|
|
# This can be used to ensure the results of a cmd 'focus left' are pushed to
|
|
|
|
|
# X11 and that $x->input_focus returns the correct value afterwards.
|
|
|
|
|
#
|
|
|
|
|
# See also docs/testsuite for a long explanation
|
|
|
|
|
#
|
|
|
|
|
sub sync_with_i3 {
|
|
|
|
|
my ($x) = @_;
|
|
|
|
|
|
|
|
|
|
# Since we need a (mapped) window for receiving a ClientMessage, we create
|
|
|
|
|
# one on the first call of sync_with_i3. It will be re-used in all
|
|
|
|
|
# subsequent calls.
|
|
|
|
|
if (!defined($_sync_window)) {
|
|
|
|
|
$_sync_window = $x->root->create_child(
|
|
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
|
rect => X11::XCB::Rect->new(x => -15, y => -15, width => 10, height => 10 ),
|
|
|
|
|
override_redirect => 1,
|
|
|
|
|
background_color => '#ff0000',
|
|
|
|
|
event_mask => [ 'structure_notify' ],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$_sync_window->map;
|
|
|
|
|
|
|
|
|
|
wait_for_event $x, 0.5, sub { $_[0]->{response_type} == MAP_NOTIFY };
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-24 14:07:05 +02:00
|
|
|
|
my $root = $x->get_root_window();
|
2011-09-23 21:37:45 +02:00
|
|
|
|
# Generate a random number to identify this particular ClientMessage.
|
|
|
|
|
my $myrnd = int(rand(255)) + 1;
|
|
|
|
|
|
|
|
|
|
# Generate a ClientMessage, see xcb_client_message_t
|
|
|
|
|
my $msg = pack "CCSLLLLLLL",
|
|
|
|
|
CLIENT_MESSAGE, # response_type
|
|
|
|
|
32, # format
|
|
|
|
|
0, # sequence
|
|
|
|
|
$root, # destination window
|
|
|
|
|
$x->atom(name => 'I3_SYNC')->id,
|
|
|
|
|
|
|
|
|
|
$_sync_window->id, # data[0]: our own window id
|
|
|
|
|
$myrnd, # data[1]: a random value to identify the request
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0;
|
|
|
|
|
|
|
|
|
|
# Send it to the root window -- since i3 uses the SubstructureRedirect
|
|
|
|
|
# event mask, it will get the ClientMessage.
|
|
|
|
|
$x->send_event(0, $root, EVENT_MASK_SUBSTRUCTURE_REDIRECT, $msg);
|
|
|
|
|
|
|
|
|
|
# now wait until the reply is here
|
|
|
|
|
return wait_for_event $x, 1, sub {
|
|
|
|
|
my ($event) = @_;
|
|
|
|
|
# TODO: const
|
|
|
|
|
return 0 unless $event->{response_type} == 161;
|
|
|
|
|
|
|
|
|
|
my ($win, $rnd) = unpack "LL", $event->{data};
|
|
|
|
|
return ($rnd == $myrnd);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-28 01:10:45 +01:00
|
|
|
|
sub does_i3_live {
|
2011-07-25 13:35:56 +02:00
|
|
|
|
my $tree = i3(get_socket_path())->get_tree->recv;
|
2011-01-28 01:10:45 +01:00
|
|
|
|
my @nodes = @{$tree->{nodes}};
|
|
|
|
|
my $ok = (@nodes > 0);
|
|
|
|
|
$tester->ok($ok, 'i3 still lives');
|
|
|
|
|
return $ok;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-24 22:21:05 +02:00
|
|
|
|
# Tries to exit i3 gracefully (with the 'exit' cmd) or kills the PID if that fails
|
|
|
|
|
sub exit_gracefully {
|
|
|
|
|
my ($pid, $socketpath) = @_;
|
2011-07-25 13:35:56 +02:00
|
|
|
|
$socketpath ||= get_socket_path();
|
2011-05-24 22:21:05 +02:00
|
|
|
|
|
|
|
|
|
my $exited = 0;
|
|
|
|
|
try {
|
|
|
|
|
say "Exiting i3 cleanly...";
|
|
|
|
|
i3($socketpath)->command('exit')->recv;
|
|
|
|
|
$exited = 1;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (!$exited) {
|
|
|
|
|
kill(9, $pid) or die "could not kill i3";
|
|
|
|
|
}
|
2011-09-24 17:28:21 +02:00
|
|
|
|
|
|
|
|
|
if ($socketpath =~ m,^/tmp/i3-test-socket-,) {
|
|
|
|
|
unlink($socketpath);
|
|
|
|
|
}
|
2011-05-24 22:21:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
|
# Gets the socket path from the I3_SOCKET_PATH atom stored on the X11 root window
|
|
|
|
|
sub get_socket_path {
|
|
|
|
|
my ($cache) = @_;
|
|
|
|
|
$cache ||= 1;
|
|
|
|
|
|
|
|
|
|
if ($cache && defined($_cached_socket_path)) {
|
|
|
|
|
return $_cached_socket_path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
|
|
|
|
my $atom = $x->atom(name => 'I3_SOCKET_PATH');
|
|
|
|
|
my $cookie = $x->get_property(0, $x->get_root_window(), $atom->id, GET_PROPERTY_TYPE_ANY, 0, 256);
|
|
|
|
|
my $reply = $x->get_property_reply($cookie->{sequence});
|
|
|
|
|
my $socketpath = $reply->{value};
|
|
|
|
|
$_cached_socket_path = $socketpath;
|
|
|
|
|
return $socketpath;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-03 00:03:13 +02:00
|
|
|
|
#
|
|
|
|
|
# launches a new i3 process with the given string as configuration file.
|
|
|
|
|
# useful for tests which test specific config file directives.
|
|
|
|
|
#
|
|
|
|
|
# be sure to use !NO_I3_INSTANCE! somewhere in the file to signal
|
|
|
|
|
# complete-run.pl that it should not create an instance of i3
|
|
|
|
|
#
|
|
|
|
|
sub launch_with_config {
|
2011-10-05 00:33:38 +02:00
|
|
|
|
my ($config, $dont_add_socket_path) = @_;
|
|
|
|
|
|
|
|
|
|
$dont_add_socket_path //= 0;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
|
|
|
|
|
if (!defined($tmp_socket_path)) {
|
|
|
|
|
$tmp_socket_path = File::Temp::tempnam('/tmp', 'i3-test-socket-');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
my ($fh, $tmpfile) = tempfile('i3-test-config-XXXXX', UNLINK => 1);
|
|
|
|
|
say $fh $config;
|
2011-10-05 00:33:38 +02:00
|
|
|
|
say $fh "ipc-socket $tmp_socket_path" unless $dont_add_socket_path;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
close($fh);
|
|
|
|
|
|
2011-10-05 00:33:38 +02:00
|
|
|
|
my $cv = AnyEvent->condvar;
|
|
|
|
|
my $pid = activate_i3(
|
|
|
|
|
unix_socket_path => "$tmp_socket_path-activation",
|
|
|
|
|
display => $ENV{DISPLAY},
|
|
|
|
|
configfile => $tmpfile,
|
|
|
|
|
logpath => $ENV{LOGPATH},
|
|
|
|
|
cv => $cv,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
# blockingly wait until i3 is ready
|
|
|
|
|
$cv->recv;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
|
|
|
|
|
# force update of the cached socket path in lib/i3test
|
|
|
|
|
get_socket_path(0);
|
|
|
|
|
|
2011-10-05 00:33:38 +02:00
|
|
|
|
return $pid;
|
2011-08-03 00:03:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-05 21:37:11 +02:00
|
|
|
|
1
|