mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
67 lines
1.7 KiB
Python
67 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
from pexpect_helper import SpawnedProc
|
|
import subprocess
|
|
import sys
|
|
from time import sleep
|
|
import os
|
|
|
|
os.environ["fish_escape_delay_ms"] = "10"
|
|
SpawnedProc()
|
|
sp = SpawnedProc()
|
|
send, sendline, sleep, expect_prompt, expect_re, expect_str = (
|
|
sp.send,
|
|
sp.sendline,
|
|
sp.sleep,
|
|
sp.expect_prompt,
|
|
sp.expect_re,
|
|
sp.expect_str,
|
|
)
|
|
expect_prompt()
|
|
|
|
sendline("$fish_key_reader --version")
|
|
expect_re("fish_key_reader, version .*")
|
|
expect_prompt()
|
|
|
|
sendline("exec $fish_key_reader -c -V")
|
|
|
|
# Do we get the expected startup prompt?
|
|
expect_str("Press a key:")
|
|
|
|
# Is a single control char echoed correctly?
|
|
send("\x07")
|
|
expect_str("char: \\cG\r\nbind \\cG 'do something'\r\n")
|
|
|
|
# Is a non-ASCII UTF-8 sequence prefaced by an escape char handled correctly?
|
|
sleep(0.020)
|
|
# send "\x1B\xE1\x88\xB4"
|
|
send("\x1B\u1234")
|
|
expect_str("char: ሴ\r\nbind \\eሴ 'do something'\r\n")
|
|
|
|
# Is a NULL char echoed correctly?
|
|
sleep(0.020)
|
|
send("\x00")
|
|
expect_str("char: \\c@\r\nbind -k nul 'do something'\r\n")
|
|
|
|
# Ensure we only name the sequence if we match all of it.
|
|
# Otherwise we end up calling escape+backspace "backspace"!
|
|
send("\x1b\x7f")
|
|
expect_str("char: \\e\r\n")
|
|
expect_str("char: \\x7F")
|
|
expect_str("""(aka "del")\r\nbind \\e\\x7F 'do something'\r\n""")
|
|
|
|
send("\x1c")
|
|
expect_str(r"char: \c\ (or \x1c)")
|
|
expect_str(r"bind \x1c 'do something'")
|
|
|
|
# Does it keep running if handed control sequences in the wrong order?
|
|
send("\x03")
|
|
sleep(0.010)
|
|
send("\x04")
|
|
expect_str("char: \\cD\r\n")
|
|
|
|
# Now send a second [ctrl-D]. Does that terminate the process like it should?
|
|
sleep(0.050)
|
|
send("\x04\x04")
|
|
expect_str("char: \\cD\r\n")
|
|
expect_str("Exiting at your request.\r\n")
|