aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/bind.expect
blob: 2527095573ae663c381d53936c29c1aceeb247f1 (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
# vim: set filetype=expect:

spawn $fish

expect_prompt

# test switching key bindings
# this should leave the mode in the appropriate state

send_line "set -g fish_key_bindings fish_vi_key_bindings"
expect_prompt
send_line -h "echo fail\033ddiecho success"
expect_prompt -re {\r\nsuccess\r\n} {
    puts "success"
} -nounmatched -re {\r\nfail} {
    puts stderr "fail"
} unmatched {
    puts stderr "Couldn't find expected output 'success'"
}
# try again without the human typing
send_line -h "echo fail\033ddiecho success"
expect_prompt -re {\r\nsuccess\r\n} {
    puts "success"
} -nounmatched -re {\r\nfail} {
    puts stderr "fail"
} unmatched {
    puts stderr "Couldn't find expected output 'success'"
}

# Test lowercase-r replace
send_line -h "\033ddiecho TEXT\033hhrAi"
expect_prompt -re {\r\nTAXT\r\n} {
    puts "replace success"
} -nounmatched -re {\r\nfail} {
    puts stderr "replace fail"
} unmatched {
    puts stderr "Couldn't find expected output 'TAXT'"
}

# still in insert mode, switch back to regular key bindings
send_line -h "set -g fish_key_bindings fish_default_key_bindings"
expect_prompt
send_line "echo success"
expect_prompt -re {\r\nsuccess\r\n} {
    puts "success"
} unmatched {
    puts stderr "Couldn't find expected output 'success'"
} timeout {
    set msg ""
    append msg "Timeout after setting fish_key_bindings to fish_default_key_bindings\n" \
               "\$fish_bind_mode is most likely still set to 'insert'"
    abort $msg
}