2009-11-18 20:39:53 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
use i3test tests => 10;
|
2009-11-18 20:39:53 +01:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use Time::HiRes qw(sleep);
|
2010-06-02 17:51:58 +02:00
|
|
|
use List::Util qw(first);
|
2009-11-18 20:39:53 +01:00
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
|
|
|
|
}
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
my $i3 = i3("/tmp/nestedcons");
|
|
|
|
my $tmp = get_unused_workspace();
|
|
|
|
$i3->command("workspace $tmp")->recv;
|
2009-11-18 20:39:53 +01:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Create two windows and put them in stacking mode
|
|
|
|
#####################################################################
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
$i3->command('split v')->recv;
|
|
|
|
|
2009-11-18 20:39:53 +01:00
|
|
|
my $top = i3test::open_standard_window($x);
|
|
|
|
my $bottom = i3test::open_standard_window($x);
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
my @urgent = grep { $_->{urgent} == 1 } @{get_ws_content($tmp)};
|
|
|
|
is(@urgent, 0, 'no window got the urgent flag');
|
|
|
|
|
|
|
|
#$i3->command('layout stacking')->recv;
|
2009-11-18 20:39:53 +01:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Add the urgency hint, switch to a different workspace and back again
|
|
|
|
#####################################################################
|
|
|
|
$top->add_hint('urgency');
|
2010-06-02 17:51:58 +02:00
|
|
|
sleep 0.5;
|
|
|
|
|
|
|
|
@content = @{get_ws_content($tmp)};
|
|
|
|
@urgent = grep { $_->{urgent} == 1 } @content;
|
|
|
|
$top_info = first { $_->{window} == $top->id } @content;
|
|
|
|
$bottom_info = first { $_->{window} == $bottom->id } @content;
|
|
|
|
|
|
|
|
is($top_info->{urgent}, 1, 'top window is marked urgent');
|
|
|
|
is($bottom_info->{urgent}, 0, 'bottom window is not marked urgent');
|
|
|
|
is(@urgent, 1, 'exactly one window got the urgent flag');
|
|
|
|
|
|
|
|
$i3->command('[id="' . $top->id . '"] focus')->recv;
|
|
|
|
|
|
|
|
@urgent = grep { $_->{urgent} == 1 } @{get_ws_content($tmp)};
|
|
|
|
is(@urgent, 0, 'no window got the urgent flag after focusing');
|
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
|
|
|
sleep 0.5;
|
|
|
|
|
|
|
|
@urgent = grep { $_->{urgent} == 1 } @{get_ws_content($tmp)};
|
|
|
|
is(@urgent, 0, 'no window got the urgent flag after re-setting urgency hint');
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Check if the workspace urgency hint gets set/cleared correctly
|
|
|
|
#####################################################################
|
|
|
|
my $ws = get_ws($tmp);
|
|
|
|
is($ws->{urgent}, 0, 'urgent flag not set on workspace');
|
|
|
|
|
|
|
|
my $otmp = get_unused_workspace();
|
|
|
|
$i3->command("workspace $otmp")->recv;
|
|
|
|
|
|
|
|
$top->add_hint('urgency');
|
|
|
|
sleep 0.5;
|
|
|
|
|
|
|
|
$ws = get_ws($tmp);
|
|
|
|
is($ws->{urgent}, 1, 'urgent flag set on workspace');
|
|
|
|
|
|
|
|
$i3->command("workspace $tmp")->recv;
|
2009-11-18 20:39:53 +01:00
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
$ws = get_ws($tmp);
|
|
|
|
is($ws->{urgent}, 0, 'urgent flag not set on workspace after switching');
|
2009-11-20 15:56:18 +01:00
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
diag( "Testing i3, Perl $], $^X" );
|