2010-11-21 23:35:49 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Check if numbered workspaces and named workspaces are sorted in the right way
|
|
|
|
# in get_workspaces IPC output (necessary for i3bar etc.).
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-11-21 23:35:49 +01:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Window');
|
|
|
|
}
|
|
|
|
|
2011-07-25 13:35:56 +02:00
|
|
|
my $i3 = i3(get_socket_path());
|
2010-11-21 23:35:49 +01:00
|
|
|
my $x = X11::XCB::Connection->new;
|
|
|
|
|
|
|
|
sub check_order {
|
|
|
|
my ($msg) = @_;
|
|
|
|
|
|
|
|
my @ws = @{$i3->get_workspaces->recv};
|
|
|
|
my @nums = map { $_->{num} } grep { defined($_->{num}) } @ws;
|
|
|
|
my @sorted = sort @nums;
|
|
|
|
|
|
|
|
cmp_deeply(\@nums, \@sorted, $msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
check_order('workspace order alright before testing');
|
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# open a window to keep this ws open
|
|
|
|
#############################################################################
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace 93";
|
2010-11-21 23:35:49 +01:00
|
|
|
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
|
|
|
|
my @ws = @{$i3->get_workspaces->recv};
|
|
|
|
my @f = grep { defined($_->{num}) && $_->{num} == 93 } @ws;
|
|
|
|
is(@f, 1, 'ws 93 found by num');
|
|
|
|
check_order('workspace order alright after opening 93');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace 92";
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
check_order('workspace order alright after opening 92');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace 94";
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
check_order('workspace order alright after opening 94');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace 96";
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
check_order('workspace order alright after opening 96');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace foo";
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
check_order('workspace order alright after opening foo');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd "workspace 91";
|
2011-09-24 16:11:37 +02:00
|
|
|
open_window($x);
|
2010-11-21 23:35:49 +01:00
|
|
|
check_order('workspace order alright after opening 91');
|
2011-03-09 20:25:17 +01:00
|
|
|
|
|
|
|
done_testing;
|