2010-11-20 20:16:15 +01:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Regression test: when only having a floating window on a workspace, it should not be deleted.
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-11-20 20:16:15 +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-20 20:16:15 +01:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-11-20 20:16:15 +01:00
|
|
|
|
|
|
|
#############################################################################
|
|
|
|
# 1: open a floating window, get it mapped
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
ok(workspace_exists($tmp), "workspace $tmp exists");
|
|
|
|
|
|
|
|
my $x = X11::XCB::Connection->new;
|
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
|
|
|
my $window = $x->root->create_child(
|
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
rect => [ 0, 0, 30, 30],
|
|
|
|
background_color => '#C0C0C0',
|
|
|
|
# replace the type with 'utility' as soon as the coercion works again in X11::XCB
|
|
|
|
window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep 0.25;
|
|
|
|
|
|
|
|
ok($window->mapped, 'Window is mapped');
|
|
|
|
|
|
|
|
# switch to a different workspace, see if the window is still mapped?
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $otmp = fresh_workspace;
|
2010-11-20 20:16:15 +01:00
|
|
|
|
|
|
|
ok(workspace_exists($otmp), "new workspace $otmp exists");
|
|
|
|
ok(workspace_exists($tmp), "old workspace $tmp still exists");
|
2011-03-09 20:25:17 +01:00
|
|
|
|
|
|
|
done_testing;
|