aboutsummaryrefslogtreecommitdiff
path: root/testcases/t/320-mouse-bindings.t
blob: 45e0f4fff107754986c7de29106610aea85af092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!perl
# vim:ts=4:sw=4:expandtab
#
# Please read the following documents before working on tests:
# • https://build.i3wm.org/docs/testsuite.html
#   (or docs/testsuite)
#
# • https://build.i3wm.org/docs/lib-i3test.html
#   (alternatively: perldoc ./testcases/lib/i3test.pm)
#
# • https://build.i3wm.org/docs/ipc.html
#   (or docs/ipc)
#
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
#   (unless you are already familiar with Perl)
#
# Test button bindsyms
use i3test i3_config => <<EOT;
# i3 config file (v4)
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
focus_follows_mouse no

for_window[class="mark_A"] mark A
for_window[class="mark_B"] mark B
for_window[class="mark_C"] mark C
for_window[class="mark_D"] mark D

bindsym button1 --whole-window [con_mark=A] focus
bindsym button2 --whole-window [con_mark=B] focus

bindsym button4 --whole-window [con_mark=B] focus
mode "testmode" {
    bindsym button4 --whole-window [con_mark=C] focus
    bindsym button5 --whole-window [con_mark=D] focus
}

default_border pixel 0

EOT
use i3test::XTEST;

sub button {
    my ($button, $window, $msg) = @_;
    xtest_button_press($button, 5, 5);
    xtest_button_release($button, 5, 5);
    xtest_sync_with_i3;

    local $Test::Builder::Level = $Test::Builder::Level + 1;
    is_focus($window, $msg);
}

sub is_focus {
    my ($window, $msg) = @_;
    local $Test::Builder::Level = $Test::Builder::Level + 1;
    is($x->input_focus, $window->id, $msg);
}

# Leftmost window is focused on button presses that have no binding
my $L = open_window;
my $A = open_window(wm_class => 'mark_A');
my $B = open_window(wm_class => 'mark_B');
is_focus($B, 'sanity check');
is_focus(open_window, 'sanity check, other window');

button(1, $A, 'button 1 binding');
button(1, $A, 'button 1 binding, again');
button(2, $B, 'button 2 binding');
button(1, $A, 'button 1 binding');
button(3, $L, 'button 3, no binding');

# Test modes, see #4539
# Unfortunately, grabbing / ungrabbing doesn't seem to work correctly in xvfb
# so we can't really test this.

my $C = open_window(wm_class => 'mark_C');
my $D = open_window(wm_class => 'mark_D');

button(4, $B, 'button 4 binding outside mode');
button(5, $L, 'button 5 no binding outside mode');

cmd 'mode testmode';
button(4, $C, 'button 4 binding inside mode');
button(5, $D, 'button 5 binding inside mode');

cmd 'mode default';
button(4, $B, 'button 4 binding outside mode');
button(5, $L, 'button 5 no binding outside mode');

done_testing;