mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 07:02:05 +08:00
36 lines
766 B
Python
36 lines
766 B
Python
#!/usr/bin/env python3
|
|
from pexpect_helper import SpawnedProc
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
|
|
sp = SpawnedProc(args=["-d", "reader"])
|
|
sp.expect_prompt()
|
|
|
|
# Verify we correctly diable mouse tracking.
|
|
|
|
# Five char sequence.
|
|
sp.send("\x1b[tDE")
|
|
sp.expect_str("reader: Disabling mouse tracking")
|
|
|
|
# Six char sequence.
|
|
sp.send("\x1b[MABC")
|
|
sp.expect_str("reader: Disabling mouse tracking")
|
|
|
|
# Nine char sequences.
|
|
sp.send("\x1b[TABCDEF")
|
|
sp.expect_str("reader: Disabling mouse tracking")
|
|
|
|
# sleep to catch up under ASAN
|
|
sp.sleep(0.5)
|
|
|
|
# Extended SGR sequences.
|
|
sp.send("\x1b[<1;2;3M")
|
|
sp.expect_str("reader: Disabling mouse tracking")
|
|
|
|
sp.send("\x1b[<1;2;3m")
|
|
sp.expect_str("reader: Disabling mouse tracking")
|
|
|
|
sp.sendline("echo done")
|
|
sp.expect_prompt("done")
|