]> git.sur5r.net Git - i3/i3/blob - testcases/t/258-keypress-release.t
added "toggle" option to "split" command
[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 # • 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 --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_autostart => 0;
23 use i3test::XTEST;
24 use ExtUtils::PkgConfig;
25
26 SKIP: {
27     skip "libxcb-xkb too old (need >= 1.11)", 1 unless
28         ExtUtils::PkgConfig->atleast_version('xcb-xkb', '1.11');
29
30 my $config = <<EOT;
31 # i3 config file (v4)
32 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
33
34 bindsym Print nop Print
35 bindsym --release Control+Print nop Control+Print
36 EOT
37
38 my $pid = launch_with_config($config);
39
40 start_binding_capture;
41
42 is(listen_for_binding(
43     sub {
44         xtest_key_press(107); # Print
45         xtest_key_release(107); # Print
46     },
47     ),
48     'Print',
49     'triggered the "Print" keybinding');
50
51 is(listen_for_binding(
52     sub {
53         xtest_key_press(37); # Control_L
54         xtest_key_press(107); # Print
55         xtest_key_release(107); # Print
56         xtest_key_release(37); # Control_L
57     },
58     ),
59     'Control+Print',
60     'triggered the "Control+Print" keybinding');
61
62 sync_with_i3;
63 is(scalar @i3test::XTEST::binding_events, 2, 'Received exactly 2 binding events');
64
65 exit_gracefully($pid);
66
67 }
68
69 done_testing;