]> git.sur5r.net Git - i3/i3/blob - testcases/t/36-floating-ws-empty.t
Merge branch 'tree' into next
[i3/i3] / testcases / t / 36-floating-ws-empty.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 # Regression test: when only having a floating window on a workspace, it should not be deleted.
4
5 use i3test;
6 use X11::XCB qw(:all);
7
8 BEGIN {
9     use_ok('X11::XCB::Window');
10 }
11
12 my $i3 = i3(get_socket_path());
13
14 my $tmp = fresh_workspace;
15
16 #############################################################################
17 # 1: open a floating window, get it mapped
18 #############################################################################
19
20 ok(workspace_exists($tmp), "workspace $tmp exists");
21
22 my $x = X11::XCB::Connection->new;
23
24 # Create a floating window which is smaller than the minimum enforced size of i3
25 my $window = $x->root->create_child(
26     class => WINDOW_CLASS_INPUT_OUTPUT,
27     rect => [ 0, 0, 30, 30],
28     background_color => '#C0C0C0',
29     # replace the type with 'utility' as soon as the coercion works again in X11::XCB
30     window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
31 );
32
33 isa_ok($window, 'X11::XCB::Window');
34
35 $window->map;
36
37 sleep 0.25;
38
39 ok($window->mapped, 'Window is mapped');
40
41 # switch to a different workspace, see if the window is still mapped?
42
43 my $otmp = fresh_workspace;
44
45 ok(workspace_exists($otmp), "new workspace $otmp exists");
46 ok(workspace_exists($tmp), "old workspace $tmp still exists");
47
48 done_testing;