]> git.sur5r.net Git - i3/i3/blob - testcases/t/119-match.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 119-match.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 #
4 # Tests all kinds of matching methods
5 #
6 use i3test;
7 use X11::XCB qw(PROP_MODE_REPLACE);
8
9 my $tmp = fresh_workspace;
10
11 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
12
13 # Open a new window
14 my $window = open_window;
15 my $content = get_ws_content($tmp);
16 ok(@{$content} == 1, 'window mapped');
17 my $win = $content->[0];
18
19 ######################################################################
20 # first test that matches which should not match this window really do
21 # not match it
22 ######################################################################
23 # TODO: specify more match types
24 # we can match on any (non-empty) class here since that window does not have
25 # WM_CLASS set
26 cmd q|[class=".*"] kill|;
27 cmd q|[con_id="99999"] kill|;
28
29 $content = get_ws_content($tmp);
30 ok(@{$content} == 1, 'window still there');
31
32 # now kill the window
33 cmd 'nop now killing the window';
34 my $id = $win->{id};
35 cmd qq|[con_id="$id"] kill|;
36
37 wait_for_unmap $window;
38
39 cmd 'nop checking if its gone';
40 $content = get_ws_content($tmp);
41 ok(@{$content} == 0, 'window killed');
42
43 # TODO: same test, but with pcre expressions
44
45 ######################################################################
46 # check that multiple criteria work are checked with a logical AND,
47 # not a logical OR (that is, matching is not cancelled after the first
48 # criterion matches).
49 ######################################################################
50
51 $tmp = fresh_workspace;
52
53 # TODO: move to X11::XCB
54 sub set_wm_class {
55     my ($id, $class, $instance) = @_;
56
57     # Add a _NET_WM_STRUT_PARTIAL hint
58     my $atomname = $x->atom(name => 'WM_CLASS');
59     my $atomtype = $x->atom(name => 'STRING');
60
61     $x->change_property(
62         PROP_MODE_REPLACE,
63         $id,
64         $atomname->id,
65         $atomtype->id,
66         8,
67         length($class) + length($instance) + 2,
68         "$instance\x00$class\x00"
69     );
70 }
71
72 sub open_special {
73     my %args = @_;
74     my $wm_class = delete($args{wm_class}) || 'special';
75
76     return open_window(
77         %args,
78         before_map => sub { set_wm_class($_->id, $wm_class, $wm_class) },
79     );
80 }
81
82 my $left = open_special(name => 'left');
83 ok($left->mapped, 'left window mapped');
84
85 my $right = open_special(name => 'right');
86 ok($right->mapped, 'right window mapped');
87
88 # two windows should be here
89 $content = get_ws_content($tmp);
90 ok(@{$content} == 2, 'two windows opened');
91
92 cmd '[class="special" title="left"] kill';
93
94 sync_with_i3;
95
96 $content = get_ws_content($tmp);
97 is(@{$content}, 1, 'one window still there');
98
99 ######################################################################
100 # check that regular expressions work
101 ######################################################################
102
103 $tmp = fresh_workspace;
104
105 $left = open_special(name => 'left', wm_class => 'special7');
106 ok($left->mapped, 'left window mapped');
107
108 # two windows should be here
109 $content = get_ws_content($tmp);
110 ok(@{$content} == 1, 'window opened');
111
112 cmd '[class="^special[0-9]$"] kill';
113
114 wait_for_unmap $left;
115
116 $content = get_ws_content($tmp);
117 is(@{$content}, 0, 'window killed');
118
119 ######################################################################
120 # check that UTF-8 works when matching
121 ######################################################################
122
123 $tmp = fresh_workspace;
124
125 $left = open_special(name => 'รค 3', wm_class => 'special7');
126 ok($left->mapped, 'left window mapped');
127
128 # two windows should be here
129 $content = get_ws_content($tmp);
130 ok(@{$content} == 1, 'window opened');
131
132 cmd '[title="^\w [3]$"] kill';
133
134 wait_for_unmap $left;
135
136 $content = get_ws_content($tmp);
137 is(@{$content}, 0, 'window killed');
138
139 done_testing;