]> git.sur5r.net Git - i3/i3/blob - testcases/t/258-keypress-release.t
Merge pull request #3171 from i3/revert-3170-master-merge
[i3/i3] / testcases / t / 258-keypress-release.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 # Verifies that --release key bindings are not shadowed by non-release key
18 # bindings for the same key.
19 # Ticket: #2002
20 # Bug still in: 4.11-103-gc8d51b4
21 # Bug introduced with commit bf3cd41b5ddf1e757515ab5fbf811be56e5f69cc
22 use i3test i3_config => <<EOT;
23 # i3 config file (v4)
24 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
25
26 bindsym Print nop Print
27 bindsym --release Control+Print nop Control+Print
28
29 # see issue #2442
30 bindsym Mod1+b nop Mod1+b
31 bindsym --release Mod1+Shift+b nop Mod1+Shift+b release
32 EOT
33 use i3test::XTEST;
34 use ExtUtils::PkgConfig;
35
36 SKIP: {
37     skip "libxcb-xkb too old (need >= 1.11)", 1 unless
38         ExtUtils::PkgConfig->atleast_version('xcb-xkb', '1.11');
39
40 is(listen_for_binding(
41     sub {
42         xtest_key_press(107); # Print
43         xtest_key_release(107); # Print
44         xtest_sync_with_i3;
45     },
46     ),
47     'Print',
48     'triggered the "Print" keybinding');
49
50 is(listen_for_binding(
51     sub {
52         xtest_key_press(37); # Control_L
53         xtest_key_press(107); # Print
54         xtest_key_release(107); # Print
55         xtest_key_release(37); # Control_L
56         xtest_sync_with_i3;
57     },
58     ),
59     'Control+Print',
60     'triggered the "Control+Print" keybinding');
61
62 is(listen_for_binding(
63     sub {
64         xtest_key_press(64); # Alt_L
65         xtest_key_press(56); # b
66         xtest_key_release(56); # b
67         xtest_key_release(64); # Alt_L
68         xtest_sync_with_i3;
69     },
70     ),
71     'Mod1+b',
72     'triggered the "Mod1+b" keybinding');
73
74 is(listen_for_binding(
75     sub {
76         xtest_key_press(64); # Alt_L
77         xtest_key_press(50); # Shift_L
78         xtest_key_press(56); # b
79         xtest_key_release(56); # b
80         xtest_key_release(50); # Shift_L
81         xtest_key_release(64); # Alt_L
82         xtest_sync_with_i3;
83     },
84     ),
85     'Mod1+Shift+b release',
86     'triggered the "Mod1+Shift+b" release keybinding');
87
88 }
89
90 done_testing;