]> git.sur5r.net Git - i3/i3/blob - testcases/t/173-regress-focus-assign.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 173-regress-focus-assign.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Regression: Checks if focus is stolen when a window is managed which is
5 # assigned to an invisible workspace
6 #
7 use i3test i3_autostart => 0;
8 use X11::XCB qw(PROP_MODE_REPLACE);
9
10 # TODO: move to X11::XCB
11 sub set_wm_class {
12     my ($id, $class, $instance) = @_;
13
14     # Add a _NET_WM_STRUT_PARTIAL hint
15     my $atomname = $x->atom(name => 'WM_CLASS');
16     my $atomtype = $x->atom(name => 'STRING');
17
18     $x->change_property(
19         PROP_MODE_REPLACE,
20         $id,
21         $atomname->id,
22         $atomtype->id,
23         8,
24         length($class) + length($instance) + 2,
25         "$instance\x00$class\x00"
26     );
27 }
28
29 sub open_special {
30     my %args = @_;
31     my $wm_class = delete($args{wm_class}) || 'special';
32     $args{name} //= 'special window';
33
34     return open_window(
35         %args,
36         before_map => sub { set_wm_class($_->id, $wm_class, $wm_class) },
37     );
38 }
39
40 #####################################################################
41 # start a window and see that it does not get assigned with an empty config
42 #####################################################################
43
44 my $config = <<EOT;
45 # i3 config file (v4)
46 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
47 assign "special" → targetws
48 EOT
49
50 my $pid = launch_with_config($config);
51
52 my $tmp = fresh_workspace;
53
54 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
55 ok(get_ws($tmp)->{focused}, 'current workspace focused');
56
57 my $window = open_special;
58
59 ok(@{get_ws_content($tmp)} == 0, 'special window not on current workspace');
60 ok(@{get_ws_content('targetws')} == 1, 'special window on targetws');
61 ok(get_ws($tmp)->{focused}, 'current workspace still focused');
62
63 #####################################################################
64 # the same test, but with a floating window
65 #####################################################################
66
67 $window = open_special(
68     window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
69 );
70
71 ok(@{get_ws_content($tmp)} == 0, 'special window not on current workspace');
72 ok(@{get_ws_content('targetws')} == 1, 'special window on targetws');
73 ok(get_ws($tmp)->{focused}, 'current workspace still focused');
74
75 exit_gracefully($pid);
76
77 $window->destroy;
78
79 done_testing;