]> git.sur5r.net Git - i3/i3/blob - testcases/t/211-regress-urgency-assign.t
tests: move set_wm_class to X11::XCB::Window
[i3/i3] / testcases / t / 211-regress-urgency-assign.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Please read the following documents before working on tests:
5 # • http://build.i3wm.org/docs/testsuite.html
6 #   (or docs/testsuite)
7 #
8 # • http://build.i3wm.org/docs/lib-i3test.html
9 #   (alternatively: perldoc ./testcases/lib/i3test.pm)
10 #
11 # • http://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 # Verifies that windows are properly recognized as urgent when they start up
18 # with the urgency hint already set (and are assigned to a non-visible
19 # workspace).
20 #
21 # Ticket: #1086
22 # Bug still in: 4.6-62-g7098ef6
23 use i3test i3_autostart => 0;
24
25 sub open_special {
26     my %args = @_;
27     $args{name} //= 'special window';
28
29     # We use dont_map because i3 will not map the window on the current
30     # workspace. Thus, open_window would time out in wait_for_map (2 seconds).
31     my $window = open_window(
32         %args,
33         wm_class => 'special',
34         dont_map => 1,
35     );
36     $window->add_hint('urgency');
37     $window->map;
38     return $window;
39 }
40
41 my $config = <<EOT;
42 # i3 config file (v4)
43 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
44
45 assign [class="special"] nonvisible
46 EOT
47 my $pid = launch_with_config($config);
48
49 my $tmp = fresh_workspace;
50
51 ok((scalar grep { $_ eq 'nonvisible' } @{get_workspace_names()}) == 0,
52    'assignment destination workspace does not exist yet');
53
54 my $window = open_special;
55 sync_with_i3;
56
57 ok((scalar grep { $_ eq 'nonvisible' } @{get_workspace_names()}) > 0,
58    'assignment destination workspace exists');
59
60 my @urgent = grep { $_->{urgent} } @{get_ws_content('nonvisible')};
61 isnt(@urgent, 0, 'urgent window(s) found on destination workspace');
62
63 exit_gracefully($pid);
64
65 done_testing;