]> git.sur5r.net Git - i3/i3/blob - testcases/t/511-scratchpad-configure-request.t
tests: replace http:// with https:// where appropriate
[i3/i3] / testcases / t / 511-scratchpad-configure-request.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • https://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • https://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • https://build.i3wm.org/docs/ipc.html
12 #   (or docs/ipc)
13 #
14 # • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
15 #   (unless you are already familiar with Perl)
16 #
17 # Tests that ConfigureRequests don’t make windows fall out of the scratchpad.
18 # Ticket: #898
19 # Bug still in: 4.4-15-g770ead6
20 use i3test i3_config => <<EOT;
21 # i3 config file (v4)
22 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
23
24 fake-outputs 1024x768+0+0,1024x768+1024+0
25 EOT
26
27 my $left_ws = fresh_workspace(output => 0);
28 my $right_ws = fresh_workspace(output => 1);
29
30 my $window = open_window;
31 cmd 'move scratchpad';
32
33 # Cause a ConfigureRequest by setting the window’s position/size.
34 my ($a, $t) = $window->rect;
35 $window->rect(X11::XCB::Rect->new(x => 0, y => 0, width => $a->width, height => $a->height));
36
37 sync_with_i3;
38
39 my $ws = get_ws($left_ws);
40 is(scalar @{$ws->{floating_nodes}}, 0, 'scratchpad window still in scratchpad after ConfigureRequest');
41 $ws = get_ws($right_ws);
42 is(scalar @{$ws->{floating_nodes}}, 0, 'scratchpad window still in scratchpad after ConfigureRequest');
43
44 done_testing;