]> git.sur5r.net Git - i3/i3/blob - testcases/t/02-fullscreen.t
Merge branch 'tree' into next
[i3/i3] / testcases / t / 02-fullscreen.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3
4 use i3test;
5 use X11::XCB qw(:all);
6 use List::Util qw(first);
7
8 my $i3 = i3(get_socket_path());
9
10 my $tmp = fresh_workspace;
11
12 sub fullscreen_windows {
13     scalar grep { $_->{fullscreen_mode} != 0 } @{get_ws_content($tmp)}
14 }
15
16 # get the output of this workspace
17 my $tree = $i3->get_tree->recv;
18 my @outputs = @{$tree->{nodes}};
19 my $output;
20 for my $o (@outputs) {
21     # get the first CT_CON of each output
22     my $content = first { $_->{type} == 2 } @{$o->{nodes}};
23     if (defined(first { $_->{name} eq $tmp } @{$content->{nodes}})) {
24         $output = $o;
25         last;
26     }
27 }
28
29 BEGIN {
30     use_ok('X11::XCB::Window');
31 }
32
33 my $x = X11::XCB::Connection->new;
34
35 ##################################
36 # map a window, then fullscreen it
37 ##################################
38
39 my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
40
41 my $window = $x->root->create_child(
42     class => WINDOW_CLASS_INPUT_OUTPUT,
43     rect => $original_rect,
44     background_color => '#C0C0C0',
45 );
46
47 isa_ok($window, 'X11::XCB::Window');
48
49 is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
50
51 $window->map;
52
53 sleep 0.25;
54
55 # open another container to make the window get only half of the screen
56 cmd 'open';
57
58 my $new_rect = $window->rect;
59 ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
60 $original_rect = $new_rect;
61
62 sleep 0.25;
63
64 $window->fullscreen(1);
65
66 sleep 0.25;
67
68 $new_rect = $window->rect;
69 ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned after fullscreen");
70
71 my $orect = $output->{rect};
72 my $wrect = $new_rect;
73
74 # see if the window really is fullscreen. 20 px for borders are allowed
75 my $threshold = 20;
76 ok(($wrect->{x} - $orect->{x}) < $threshold, 'x coordinate fullscreen');
77 ok(($wrect->{y} - $orect->{y}) < $threshold, 'y coordinate fullscreen');
78 ok(abs($wrect->{width} - $orect->{width}) < $threshold, 'width coordinate fullscreen');
79 ok(abs($wrect->{height} - $orect->{height}) < $threshold, 'height coordinate fullscreen');
80
81
82 $window->unmap;
83
84 #########################################################
85 # test with a window which is fullscreened before mapping
86 #########################################################
87
88 # open another container because the empty one will swallow the window we
89 # map in a second
90 cmd 'open';
91
92 $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
93 $window = $x->root->create_child(
94     class => WINDOW_CLASS_INPUT_OUTPUT,
95     rect => $original_rect,
96     background_color => 61440,
97 );
98
99 is_deeply($window->rect, $original_rect, "rect unmodified before mapping");
100
101 $window->fullscreen(1);
102 $window->map;
103
104 sleep(0.25);
105
106 $new_rect = $window->rect;
107 ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned after fullscreen");
108 ok($window->mapped, "Window is mapped after opening it in fullscreen mode");
109
110 $wrect = $new_rect;
111
112 # see if the window really is fullscreen. 20 px for borders are allowed
113 ok(($wrect->{x} - $orect->{x}) < $threshold, 'x coordinate fullscreen');
114 ok(($wrect->{y} - $orect->{y}) < $threshold, 'y coordinate fullscreen');
115 ok(abs($wrect->{width} - $orect->{width}) < $threshold, 'width coordinate fullscreen');
116 ok(abs($wrect->{height} - $orect->{height}) < $threshold, 'height coordinate fullscreen');
117
118 ###############################################################################
119 # test if setting two windows in fullscreen mode at the same time does not work
120 ###############################################################################
121
122 $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 30);
123 my $swindow = $x->root->create_child(
124     class => WINDOW_CLASS_INPUT_OUTPUT,
125     rect => $original_rect,
126     background_color => '#C0C0C0',
127 );
128
129 $swindow->map;
130 sleep 0.25;
131
132 ok(!$swindow->mapped, 'window not mapped while fullscreen window active');
133
134 $new_rect = $swindow->rect;
135 ok(!eq_deeply($new_rect, $original_rect), "Window got repositioned");
136
137 $swindow->fullscreen(1);
138 sleep 0.25;
139
140 is(fullscreen_windows(), 1, 'amount of fullscreen windows');
141
142 $window->fullscreen(0);
143 sleep 0.25;
144 is(fullscreen_windows(), 0, 'amount of fullscreen windows');
145
146 ok($swindow->mapped, 'window mapped after other fullscreen ended');
147
148 ###########################################################################
149 # as $swindow is out of state at the moment (it requested to be fullscreen,
150 # but the WM denied), we check what happens if we go out of fullscreen now
151 # (nothing should happen)
152 ###########################################################################
153
154 $swindow->fullscreen(0);
155 sleep 0.25;
156
157 is(fullscreen_windows(), 0, 'amount of fullscreen windows after disabling');
158
159 cmd 'fullscreen';
160
161 is(fullscreen_windows(), 1, 'amount of fullscreen windows after fullscreen command');
162
163 cmd 'fullscreen';
164
165 is(fullscreen_windows(), 0, 'amount of fullscreen windows after fullscreen command');
166
167 # clean up the workspace so that it will be cleaned when switching away
168 cmd 'kill' for (@{get_ws_content($tmp)});
169
170 done_testing;