123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653 |
- #!/usr/bin/env python
- # License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
- from functools import partial
- import kitty.fast_data_types as defines
- from kitty.key_encoding import EventType, KeyEvent, decode_key_event, encode_key_event
- from kitty.keys import Mappings
- from . import BaseTest
- class TestKeys(BaseTest):
- def test_encode_key_event(self):
- enc = defines.encode_key_for_tty
- ae = self.assertEqual
- shift, alt, ctrl, super, hyper, meta = defines.GLFW_MOD_SHIFT, defines.GLFW_MOD_ALT, defines.GLFW_MOD_CONTROL, defines.GLFW_MOD_SUPER, defines.GLFW_MOD_HYPER, defines.GLFW_MOD_META # noqa
- num_lock, caps_lock = defines.GLFW_MOD_NUM_LOCK, defines.GLFW_MOD_CAPS_LOCK
- press, repeat, release = defines.GLFW_PRESS, defines.GLFW_REPEAT, defines.GLFW_RELEASE # noqa
- def csi(mods=0, num=1, action=1, shifted_key=0, alternate_key=0, text=None, trailer='u'):
- ans = '\033['
- if isinstance(num, str):
- num = ord(num)
- if num != 1 or mods or shifted_key or alternate_key or text:
- ans += f'{num}'
- if shifted_key or alternate_key:
- if isinstance(shifted_key, str):
- shifted_key = ord(shifted_key)
- ans += ':' + (f'{shifted_key}' if shifted_key else '')
- if alternate_key:
- if isinstance(alternate_key, str):
- alternate_key = ord(alternate_key)
- ans += f':{alternate_key}'
- if mods or action > 1 or text:
- m = 0
- if mods & shift:
- m |= 1
- if mods & alt:
- m |= 2
- if mods & ctrl:
- m |= 4
- if mods & super:
- m |= 8
- if mods & hyper:
- m |= 16
- if mods & meta:
- m |= 32
- if action > 1 or m:
- ans += f';{m+1}'
- if action > 1:
- ans += f':{action}'
- elif text:
- ans += ';'
- if text:
- ans += ';' + ':'.join(map(str, map(ord, text)))
- return ans + trailer
- def mods_test(key, plain=None, shift=None, ctrl=None, alt=None, calt=None, cshift=None, ashift=None, csi_num=None, trailer='u'):
- c = partial(csi, num=csi_num or key, trailer=trailer)
- e = partial(enc, key=key)
- def a(a, b):
- ae(a, b, f"{a.encode('ascii')} != {b.encode('ascii')}")
- def w(a, b):
- return c(b) if a is None else a
- a(e(), plain or c())
- a(e(mods=defines.GLFW_MOD_SHIFT), w(shift, defines.GLFW_MOD_SHIFT))
- a(e(mods=defines.GLFW_MOD_CONTROL), w(ctrl, defines.GLFW_MOD_CONTROL))
- a(e(mods=defines.GLFW_MOD_ALT | defines.GLFW_MOD_CONTROL), w(calt, defines.GLFW_MOD_ALT | defines.GLFW_MOD_CONTROL))
- a(e(mods=defines.GLFW_MOD_SHIFT | defines.GLFW_MOD_CONTROL), w(cshift, defines.GLFW_MOD_CONTROL | defines.GLFW_MOD_SHIFT))
- a(e(mods=defines.GLFW_MOD_SHIFT | defines.GLFW_MOD_ALT), w(ashift, defines.GLFW_MOD_ALT | defines.GLFW_MOD_SHIFT))
- def mkp(name, *a, **kw):
- for x in (f'GLFW_FKEY_{name}', f'GLFW_FKEY_KP_{name}'):
- k = getattr(defines, x)
- mods_test(k, *a, **kw)
- mkp('ENTER', '\x0d', alt='\033\x0d', ctrl='\x0d', shift='\x0d', ashift='\033\x0d', calt='\033\x0d', cshift='\x0d')
- mods_test(defines.GLFW_FKEY_ESCAPE, '\x1b', alt='\033\033', ctrl='\x1b', shift='\x1b', calt='\x1b\x1b', cshift='\x1b', ashift='\x1b\x1b')
- mods_test(defines.GLFW_FKEY_BACKSPACE, '\x7f', alt='\033\x7f', ctrl='\x08', shift='\x7f', ashift='\033\x7f', cshift='\x08', calt='\x1b\x08')
- mods_test(defines.GLFW_FKEY_TAB, '\t', alt='\033\t', shift='\x1b[Z', ctrl='\t', ashift='\x1b\x1b[Z', cshift='\x1b[Z', calt='\x1b\t')
- mkp('INSERT', csi_num=2, trailer='~')
- mkp('DELETE', csi_num=3, trailer='~')
- mkp('PAGE_UP', csi_num=5, trailer='~')
- mkp('PAGE_DOWN', csi_num=6, trailer='~')
- mkp('HOME', csi_num=1, trailer='H')
- mkp('END', csi_num=1, trailer='F')
- mods_test(defines.GLFW_FKEY_F1, '\x1bOP', csi_num=1, trailer='P')
- mods_test(defines.GLFW_FKEY_F2, '\x1bOQ', csi_num=1, trailer='Q')
- mods_test(defines.GLFW_FKEY_F3, '\x1bOR', csi_num=13, trailer='~')
- mods_test(defines.GLFW_FKEY_F4, '\x1bOS', csi_num=1, trailer='S')
- mods_test(defines.GLFW_FKEY_F5, csi_num=15, trailer='~')
- mods_test(defines.GLFW_FKEY_F6, csi_num=17, trailer='~')
- mods_test(defines.GLFW_FKEY_F7, csi_num=18, trailer='~')
- mods_test(defines.GLFW_FKEY_F8, csi_num=19, trailer='~')
- mods_test(defines.GLFW_FKEY_F9, csi_num=20, trailer='~')
- mods_test(defines.GLFW_FKEY_F10, csi_num=21, trailer='~')
- mods_test(defines.GLFW_FKEY_F11, csi_num=23, trailer='~')
- mods_test(defines.GLFW_FKEY_F12, csi_num=24, trailer='~')
- mkp('UP', csi_num=1, trailer='A')
- mkp('DOWN', csi_num=1, trailer='B')
- mkp('RIGHT', csi_num=1, trailer='C')
- mkp('LEFT', csi_num=1, trailer='D')
- # legacy key tests {{{
- # start legacy letter tests (auto generated by gen-key-constants.py do not edit)
- ae(enc(ord('`'), shifted_key=ord('~')), '`')
- ae(enc(ord('`'), shifted_key=ord('~'), mods=shift), '~')
- ae(enc(ord('`'), shifted_key=ord('~'), mods=alt), "\x1b" + '`')
- ae(enc(ord('`'), shifted_key=ord('~'), mods=shift | alt), "\x1b" + '~')
- ae(enc(ord('`'), shifted_key=ord('~'), mods=ctrl), '`')
- ae(enc(ord('`'), shifted_key=ord('~'), mods=ctrl | alt), "\x1b" + '`')
- ae(enc(ord('1'), shifted_key=ord('!')), '1')
- ae(enc(ord('1'), shifted_key=ord('!'), mods=shift), '!')
- ae(enc(ord('1'), shifted_key=ord('!'), mods=alt), "\x1b" + '1')
- ae(enc(ord('1'), shifted_key=ord('!'), mods=shift | alt), "\x1b" + '!')
- ae(enc(ord('1'), shifted_key=ord('!'), mods=ctrl), '1')
- ae(enc(ord('1'), shifted_key=ord('!'), mods=ctrl | alt), "\x1b" + '1')
- ae(enc(ord('2'), shifted_key=ord('@')), '2')
- ae(enc(ord('2'), shifted_key=ord('@'), mods=shift), '@')
- ae(enc(ord('2'), shifted_key=ord('@'), mods=alt), "\x1b" + '2')
- ae(enc(ord('2'), shifted_key=ord('@'), mods=shift | alt), "\x1b" + '@')
- ae(enc(ord('2'), shifted_key=ord('@'), mods=ctrl), '\x00')
- ae(enc(ord('2'), shifted_key=ord('@'), mods=ctrl | alt), "\x1b" + '\x00')
- ae(enc(ord('3'), shifted_key=ord('#')), '3')
- ae(enc(ord('3'), shifted_key=ord('#'), mods=shift), '#')
- ae(enc(ord('3'), shifted_key=ord('#'), mods=alt), "\x1b" + '3')
- ae(enc(ord('3'), shifted_key=ord('#'), mods=shift | alt), "\x1b" + '#')
- ae(enc(ord('3'), shifted_key=ord('#'), mods=ctrl), '\x1b')
- ae(enc(ord('3'), shifted_key=ord('#'), mods=ctrl | alt), "\x1b" + '\x1b')
- ae(enc(ord('4'), shifted_key=ord('$')), '4')
- ae(enc(ord('4'), shifted_key=ord('$'), mods=shift), '$')
- ae(enc(ord('4'), shifted_key=ord('$'), mods=alt), "\x1b" + '4')
- ae(enc(ord('4'), shifted_key=ord('$'), mods=shift | alt), "\x1b" + '$')
- ae(enc(ord('4'), shifted_key=ord('$'), mods=ctrl), '\x1c')
- ae(enc(ord('4'), shifted_key=ord('$'), mods=ctrl | alt), "\x1b" + '\x1c')
- ae(enc(ord('5'), shifted_key=ord('%')), '5')
- ae(enc(ord('5'), shifted_key=ord('%'), mods=shift), '%')
- ae(enc(ord('5'), shifted_key=ord('%'), mods=alt), "\x1b" + '5')
- ae(enc(ord('5'), shifted_key=ord('%'), mods=shift | alt), "\x1b" + '%')
- ae(enc(ord('5'), shifted_key=ord('%'), mods=ctrl), '\x1d')
- ae(enc(ord('5'), shifted_key=ord('%'), mods=ctrl | alt), "\x1b" + '\x1d')
- ae(enc(ord('6'), shifted_key=ord('^')), '6')
- ae(enc(ord('6'), shifted_key=ord('^'), mods=shift), '^')
- ae(enc(ord('6'), shifted_key=ord('^'), mods=alt), "\x1b" + '6')
- ae(enc(ord('6'), shifted_key=ord('^'), mods=shift | alt), "\x1b" + '^')
- ae(enc(ord('6'), shifted_key=ord('^'), mods=ctrl), '\x1e')
- ae(enc(ord('6'), shifted_key=ord('^'), mods=ctrl | alt), "\x1b" + '\x1e')
- ae(enc(ord('7'), shifted_key=ord('&')), '7')
- ae(enc(ord('7'), shifted_key=ord('&'), mods=shift), '&')
- ae(enc(ord('7'), shifted_key=ord('&'), mods=alt), "\x1b" + '7')
- ae(enc(ord('7'), shifted_key=ord('&'), mods=shift | alt), "\x1b" + '&')
- ae(enc(ord('7'), shifted_key=ord('&'), mods=ctrl), '\x1f')
- ae(enc(ord('7'), shifted_key=ord('&'), mods=ctrl | alt), "\x1b" + '\x1f')
- ae(enc(ord('8'), shifted_key=ord('*')), '8')
- ae(enc(ord('8'), shifted_key=ord('*'), mods=shift), '*')
- ae(enc(ord('8'), shifted_key=ord('*'), mods=alt), "\x1b" + '8')
- ae(enc(ord('8'), shifted_key=ord('*'), mods=shift | alt), "\x1b" + '*')
- ae(enc(ord('8'), shifted_key=ord('*'), mods=ctrl), '\x7f')
- ae(enc(ord('8'), shifted_key=ord('*'), mods=ctrl | alt), "\x1b" + '\x7f')
- ae(enc(ord('9'), shifted_key=ord('(')), '9')
- ae(enc(ord('9'), shifted_key=ord('('), mods=shift), '(')
- ae(enc(ord('9'), shifted_key=ord('('), mods=alt), "\x1b" + '9')
- ae(enc(ord('9'), shifted_key=ord('('), mods=shift | alt), "\x1b" + '(')
- ae(enc(ord('9'), shifted_key=ord('('), mods=ctrl), '9')
- ae(enc(ord('9'), shifted_key=ord('('), mods=ctrl | alt), "\x1b" + '9')
- ae(enc(ord('0'), shifted_key=ord(')')), '0')
- ae(enc(ord('0'), shifted_key=ord(')'), mods=shift), ')')
- ae(enc(ord('0'), shifted_key=ord(')'), mods=alt), "\x1b" + '0')
- ae(enc(ord('0'), shifted_key=ord(')'), mods=shift | alt), "\x1b" + ')')
- ae(enc(ord('0'), shifted_key=ord(')'), mods=ctrl), '0')
- ae(enc(ord('0'), shifted_key=ord(')'), mods=ctrl | alt), "\x1b" + '0')
- ae(enc(ord('-'), shifted_key=ord('_')), '-')
- ae(enc(ord('-'), shifted_key=ord('_'), mods=shift), '_')
- ae(enc(ord('-'), shifted_key=ord('_'), mods=alt), "\x1b" + '-')
- ae(enc(ord('-'), shifted_key=ord('_'), mods=shift | alt), "\x1b" + '_')
- ae(enc(ord('-'), shifted_key=ord('_'), mods=ctrl), '-')
- ae(enc(ord('-'), shifted_key=ord('_'), mods=ctrl | alt), "\x1b" + '-')
- ae(enc(ord('='), shifted_key=ord('+')), '=')
- ae(enc(ord('='), shifted_key=ord('+'), mods=shift), '+')
- ae(enc(ord('='), shifted_key=ord('+'), mods=alt), "\x1b" + '=')
- ae(enc(ord('='), shifted_key=ord('+'), mods=shift | alt), "\x1b" + '+')
- ae(enc(ord('='), shifted_key=ord('+'), mods=ctrl), '=')
- ae(enc(ord('='), shifted_key=ord('+'), mods=ctrl | alt), "\x1b" + '=')
- ae(enc(ord('['), shifted_key=ord('{')), '[')
- ae(enc(ord('['), shifted_key=ord('{'), mods=shift), '{')
- ae(enc(ord('['), shifted_key=ord('{'), mods=alt), "\x1b" + '[')
- ae(enc(ord('['), shifted_key=ord('{'), mods=shift | alt), "\x1b" + '{')
- ae(enc(ord('['), shifted_key=ord('{'), mods=ctrl), '\x1b')
- ae(enc(ord('['), shifted_key=ord('{'), mods=ctrl | alt), "\x1b" + '\x1b')
- ae(enc(ord(']'), shifted_key=ord('}')), ']')
- ae(enc(ord(']'), shifted_key=ord('}'), mods=shift), '}')
- ae(enc(ord(']'), shifted_key=ord('}'), mods=alt), "\x1b" + ']')
- ae(enc(ord(']'), shifted_key=ord('}'), mods=shift | alt), "\x1b" + '}')
- ae(enc(ord(']'), shifted_key=ord('}'), mods=ctrl), '\x1d')
- ae(enc(ord(']'), shifted_key=ord('}'), mods=ctrl | alt), "\x1b" + '\x1d')
- ae(enc(ord('\\'), shifted_key=ord('|')), '\\')
- ae(enc(ord('\\'), shifted_key=ord('|'), mods=shift), '|')
- ae(enc(ord('\\'), shifted_key=ord('|'), mods=alt), "\x1b" + '\\')
- ae(enc(ord('\\'), shifted_key=ord('|'), mods=shift | alt), "\x1b" + '|')
- ae(enc(ord('\\'), shifted_key=ord('|'), mods=ctrl), '\x1c')
- ae(enc(ord('\\'), shifted_key=ord('|'), mods=ctrl | alt), "\x1b" + '\x1c')
- ae(enc(ord(';'), shifted_key=ord(':')), ';')
- ae(enc(ord(';'), shifted_key=ord(':'), mods=shift), ':')
- ae(enc(ord(';'), shifted_key=ord(':'), mods=alt), "\x1b" + ';')
- ae(enc(ord(';'), shifted_key=ord(':'), mods=shift | alt), "\x1b" + ':')
- ae(enc(ord(';'), shifted_key=ord(':'), mods=ctrl), ';')
- ae(enc(ord(';'), shifted_key=ord(':'), mods=ctrl | alt), "\x1b" + ';')
- ae(enc(ord("'"), shifted_key=ord('"')), "'")
- ae(enc(ord("'"), shifted_key=ord('"'), mods=shift), '"')
- ae(enc(ord("'"), shifted_key=ord('"'), mods=alt), "\x1b" + "'")
- ae(enc(ord("'"), shifted_key=ord('"'), mods=shift | alt), "\x1b" + '"')
- ae(enc(ord("'"), shifted_key=ord('"'), mods=ctrl), "'")
- ae(enc(ord("'"), shifted_key=ord('"'), mods=ctrl | alt), "\x1b" + "'")
- ae(enc(ord(','), shifted_key=ord('<')), ',')
- ae(enc(ord(','), shifted_key=ord('<'), mods=shift), '<')
- ae(enc(ord(','), shifted_key=ord('<'), mods=alt), "\x1b" + ',')
- ae(enc(ord(','), shifted_key=ord('<'), mods=shift | alt), "\x1b" + '<')
- ae(enc(ord(','), shifted_key=ord('<'), mods=ctrl), ',')
- ae(enc(ord(','), shifted_key=ord('<'), mods=ctrl | alt), "\x1b" + ',')
- ae(enc(ord('.'), shifted_key=ord('>')), '.')
- ae(enc(ord('.'), shifted_key=ord('>'), mods=shift), '>')
- ae(enc(ord('.'), shifted_key=ord('>'), mods=alt), "\x1b" + '.')
- ae(enc(ord('.'), shifted_key=ord('>'), mods=shift | alt), "\x1b" + '>')
- ae(enc(ord('.'), shifted_key=ord('>'), mods=ctrl), '.')
- ae(enc(ord('.'), shifted_key=ord('>'), mods=ctrl | alt), "\x1b" + '.')
- ae(enc(ord('/'), shifted_key=ord('?')), '/')
- ae(enc(ord('/'), shifted_key=ord('?'), mods=shift), '?')
- ae(enc(ord('/'), shifted_key=ord('?'), mods=alt), "\x1b" + '/')
- ae(enc(ord('/'), shifted_key=ord('?'), mods=shift | alt), "\x1b" + '?')
- ae(enc(ord('/'), shifted_key=ord('?'), mods=ctrl), '\x1f')
- ae(enc(ord('/'), shifted_key=ord('?'), mods=ctrl | alt), "\x1b" + '\x1f')
- ae(enc(ord('a'), shifted_key=ord('A')), 'a')
- ae(enc(ord('a'), shifted_key=ord('A'), mods=shift), 'A')
- ae(enc(ord('a'), shifted_key=ord('A'), mods=alt), "\x1b" + 'a')
- ae(enc(ord('a'), shifted_key=ord('A'), mods=shift | alt), "\x1b" + 'A')
- ae(enc(ord('a'), shifted_key=ord('A'), mods=ctrl), '\x01')
- ae(enc(ord('a'), shifted_key=ord('A'), mods=ctrl | alt), "\x1b" + '\x01')
- ae(enc(ord('b'), shifted_key=ord('B')), 'b')
- ae(enc(ord('b'), shifted_key=ord('B'), mods=shift), 'B')
- ae(enc(ord('b'), shifted_key=ord('B'), mods=alt), "\x1b" + 'b')
- ae(enc(ord('b'), shifted_key=ord('B'), mods=shift | alt), "\x1b" + 'B')
- ae(enc(ord('b'), shifted_key=ord('B'), mods=ctrl), '\x02')
- ae(enc(ord('b'), shifted_key=ord('B'), mods=ctrl | alt), "\x1b" + '\x02')
- ae(enc(ord('c'), shifted_key=ord('C')), 'c')
- ae(enc(ord('c'), shifted_key=ord('C'), mods=shift), 'C')
- ae(enc(ord('c'), shifted_key=ord('C'), mods=alt), "\x1b" + 'c')
- ae(enc(ord('c'), shifted_key=ord('C'), mods=shift | alt), "\x1b" + 'C')
- ae(enc(ord('c'), shifted_key=ord('C'), mods=ctrl), '\x03')
- ae(enc(ord('c'), shifted_key=ord('C'), mods=ctrl | alt), "\x1b" + '\x03')
- ae(enc(ord('d'), shifted_key=ord('D')), 'd')
- ae(enc(ord('d'), shifted_key=ord('D'), mods=shift), 'D')
- ae(enc(ord('d'), shifted_key=ord('D'), mods=alt), "\x1b" + 'd')
- ae(enc(ord('d'), shifted_key=ord('D'), mods=shift | alt), "\x1b" + 'D')
- ae(enc(ord('d'), shifted_key=ord('D'), mods=ctrl), '\x04')
- ae(enc(ord('d'), shifted_key=ord('D'), mods=ctrl | alt), "\x1b" + '\x04')
- ae(enc(ord('e'), shifted_key=ord('E')), 'e')
- ae(enc(ord('e'), shifted_key=ord('E'), mods=shift), 'E')
- ae(enc(ord('e'), shifted_key=ord('E'), mods=alt), "\x1b" + 'e')
- ae(enc(ord('e'), shifted_key=ord('E'), mods=shift | alt), "\x1b" + 'E')
- ae(enc(ord('e'), shifted_key=ord('E'), mods=ctrl), '\x05')
- ae(enc(ord('e'), shifted_key=ord('E'), mods=ctrl | alt), "\x1b" + '\x05')
- ae(enc(ord('f'), shifted_key=ord('F')), 'f')
- ae(enc(ord('f'), shifted_key=ord('F'), mods=shift), 'F')
- ae(enc(ord('f'), shifted_key=ord('F'), mods=alt), "\x1b" + 'f')
- ae(enc(ord('f'), shifted_key=ord('F'), mods=shift | alt), "\x1b" + 'F')
- ae(enc(ord('f'), shifted_key=ord('F'), mods=ctrl), '\x06')
- ae(enc(ord('f'), shifted_key=ord('F'), mods=ctrl | alt), "\x1b" + '\x06')
- ae(enc(ord('g'), shifted_key=ord('G')), 'g')
- ae(enc(ord('g'), shifted_key=ord('G'), mods=shift), 'G')
- ae(enc(ord('g'), shifted_key=ord('G'), mods=alt), "\x1b" + 'g')
- ae(enc(ord('g'), shifted_key=ord('G'), mods=shift | alt), "\x1b" + 'G')
- ae(enc(ord('g'), shifted_key=ord('G'), mods=ctrl), '\x07')
- ae(enc(ord('g'), shifted_key=ord('G'), mods=ctrl | alt), "\x1b" + '\x07')
- ae(enc(ord('h'), shifted_key=ord('H')), 'h')
- ae(enc(ord('h'), shifted_key=ord('H'), mods=shift), 'H')
- ae(enc(ord('h'), shifted_key=ord('H'), mods=alt), "\x1b" + 'h')
- ae(enc(ord('h'), shifted_key=ord('H'), mods=shift | alt), "\x1b" + 'H')
- ae(enc(ord('h'), shifted_key=ord('H'), mods=ctrl), '\x08')
- ae(enc(ord('h'), shifted_key=ord('H'), mods=ctrl | alt), "\x1b" + '\x08')
- ae(enc(ord('i'), shifted_key=ord('I')), 'i')
- ae(enc(ord('i'), shifted_key=ord('I'), mods=shift), 'I')
- ae(enc(ord('i'), shifted_key=ord('I'), mods=alt), "\x1b" + 'i')
- ae(enc(ord('i'), shifted_key=ord('I'), mods=shift | alt), "\x1b" + 'I')
- ae(enc(ord('i'), shifted_key=ord('I'), mods=ctrl), '\t')
- ae(enc(ord('i'), shifted_key=ord('I'), mods=ctrl | alt), "\x1b" + '\t')
- ae(enc(ord('j'), shifted_key=ord('J')), 'j')
- ae(enc(ord('j'), shifted_key=ord('J'), mods=shift), 'J')
- ae(enc(ord('j'), shifted_key=ord('J'), mods=alt), "\x1b" + 'j')
- ae(enc(ord('j'), shifted_key=ord('J'), mods=shift | alt), "\x1b" + 'J')
- ae(enc(ord('j'), shifted_key=ord('J'), mods=ctrl), '\n')
- ae(enc(ord('j'), shifted_key=ord('J'), mods=ctrl | alt), "\x1b" + '\n')
- ae(enc(ord('k'), shifted_key=ord('K')), 'k')
- ae(enc(ord('k'), shifted_key=ord('K'), mods=shift), 'K')
- ae(enc(ord('k'), shifted_key=ord('K'), mods=alt), "\x1b" + 'k')
- ae(enc(ord('k'), shifted_key=ord('K'), mods=shift | alt), "\x1b" + 'K')
- ae(enc(ord('k'), shifted_key=ord('K'), mods=ctrl), '\x0b')
- ae(enc(ord('k'), shifted_key=ord('K'), mods=ctrl | alt), "\x1b" + '\x0b')
- ae(enc(ord('l'), shifted_key=ord('L')), 'l')
- ae(enc(ord('l'), shifted_key=ord('L'), mods=shift), 'L')
- ae(enc(ord('l'), shifted_key=ord('L'), mods=alt), "\x1b" + 'l')
- ae(enc(ord('l'), shifted_key=ord('L'), mods=shift | alt), "\x1b" + 'L')
- ae(enc(ord('l'), shifted_key=ord('L'), mods=ctrl), '\x0c')
- ae(enc(ord('l'), shifted_key=ord('L'), mods=ctrl | alt), "\x1b" + '\x0c')
- ae(enc(ord('m'), shifted_key=ord('M')), 'm')
- ae(enc(ord('m'), shifted_key=ord('M'), mods=shift), 'M')
- ae(enc(ord('m'), shifted_key=ord('M'), mods=alt), "\x1b" + 'm')
- ae(enc(ord('m'), shifted_key=ord('M'), mods=shift | alt), "\x1b" + 'M')
- ae(enc(ord('m'), shifted_key=ord('M'), mods=ctrl), '\r')
- ae(enc(ord('m'), shifted_key=ord('M'), mods=ctrl | alt), "\x1b" + '\r')
- ae(enc(ord('n'), shifted_key=ord('N')), 'n')
- ae(enc(ord('n'), shifted_key=ord('N'), mods=shift), 'N')
- ae(enc(ord('n'), shifted_key=ord('N'), mods=alt), "\x1b" + 'n')
- ae(enc(ord('n'), shifted_key=ord('N'), mods=shift | alt), "\x1b" + 'N')
- ae(enc(ord('n'), shifted_key=ord('N'), mods=ctrl), '\x0e')
- ae(enc(ord('n'), shifted_key=ord('N'), mods=ctrl | alt), "\x1b" + '\x0e')
- ae(enc(ord('o'), shifted_key=ord('O')), 'o')
- ae(enc(ord('o'), shifted_key=ord('O'), mods=shift), 'O')
- ae(enc(ord('o'), shifted_key=ord('O'), mods=alt), "\x1b" + 'o')
- ae(enc(ord('o'), shifted_key=ord('O'), mods=shift | alt), "\x1b" + 'O')
- ae(enc(ord('o'), shifted_key=ord('O'), mods=ctrl), '\x0f')
- ae(enc(ord('o'), shifted_key=ord('O'), mods=ctrl | alt), "\x1b" + '\x0f')
- ae(enc(ord('p'), shifted_key=ord('P')), 'p')
- ae(enc(ord('p'), shifted_key=ord('P'), mods=shift), 'P')
- ae(enc(ord('p'), shifted_key=ord('P'), mods=alt), "\x1b" + 'p')
- ae(enc(ord('p'), shifted_key=ord('P'), mods=shift | alt), "\x1b" + 'P')
- ae(enc(ord('p'), shifted_key=ord('P'), mods=ctrl), '\x10')
- ae(enc(ord('p'), shifted_key=ord('P'), mods=ctrl | alt), "\x1b" + '\x10')
- ae(enc(ord('q'), shifted_key=ord('Q')), 'q')
- ae(enc(ord('q'), shifted_key=ord('Q'), mods=shift), 'Q')
- ae(enc(ord('q'), shifted_key=ord('Q'), mods=alt), "\x1b" + 'q')
- ae(enc(ord('q'), shifted_key=ord('Q'), mods=shift | alt), "\x1b" + 'Q')
- ae(enc(ord('q'), shifted_key=ord('Q'), mods=ctrl), '\x11')
- ae(enc(ord('q'), shifted_key=ord('Q'), mods=ctrl | alt), "\x1b" + '\x11')
- ae(enc(ord('r'), shifted_key=ord('R')), 'r')
- ae(enc(ord('r'), shifted_key=ord('R'), mods=shift), 'R')
- ae(enc(ord('r'), shifted_key=ord('R'), mods=alt), "\x1b" + 'r')
- ae(enc(ord('r'), shifted_key=ord('R'), mods=shift | alt), "\x1b" + 'R')
- ae(enc(ord('r'), shifted_key=ord('R'), mods=ctrl), '\x12')
- ae(enc(ord('r'), shifted_key=ord('R'), mods=ctrl | alt), "\x1b" + '\x12')
- ae(enc(ord('s'), shifted_key=ord('S')), 's')
- ae(enc(ord('s'), shifted_key=ord('S'), mods=shift), 'S')
- ae(enc(ord('s'), shifted_key=ord('S'), mods=alt), "\x1b" + 's')
- ae(enc(ord('s'), shifted_key=ord('S'), mods=shift | alt), "\x1b" + 'S')
- ae(enc(ord('s'), shifted_key=ord('S'), mods=ctrl), '\x13')
- ae(enc(ord('s'), shifted_key=ord('S'), mods=ctrl | alt), "\x1b" + '\x13')
- ae(enc(ord('t'), shifted_key=ord('T')), 't')
- ae(enc(ord('t'), shifted_key=ord('T'), mods=shift), 'T')
- ae(enc(ord('t'), shifted_key=ord('T'), mods=alt), "\x1b" + 't')
- ae(enc(ord('t'), shifted_key=ord('T'), mods=shift | alt), "\x1b" + 'T')
- ae(enc(ord('t'), shifted_key=ord('T'), mods=ctrl), '\x14')
- ae(enc(ord('t'), shifted_key=ord('T'), mods=ctrl | alt), "\x1b" + '\x14')
- ae(enc(ord('u'), shifted_key=ord('U')), 'u')
- ae(enc(ord('u'), shifted_key=ord('U'), mods=shift), 'U')
- ae(enc(ord('u'), shifted_key=ord('U'), mods=alt), "\x1b" + 'u')
- ae(enc(ord('u'), shifted_key=ord('U'), mods=shift | alt), "\x1b" + 'U')
- ae(enc(ord('u'), shifted_key=ord('U'), mods=ctrl), '\x15')
- ae(enc(ord('u'), shifted_key=ord('U'), mods=ctrl | alt), "\x1b" + '\x15')
- ae(enc(ord('v'), shifted_key=ord('V')), 'v')
- ae(enc(ord('v'), shifted_key=ord('V'), mods=shift), 'V')
- ae(enc(ord('v'), shifted_key=ord('V'), mods=alt), "\x1b" + 'v')
- ae(enc(ord('v'), shifted_key=ord('V'), mods=shift | alt), "\x1b" + 'V')
- ae(enc(ord('v'), shifted_key=ord('V'), mods=ctrl), '\x16')
- ae(enc(ord('v'), shifted_key=ord('V'), mods=ctrl | alt), "\x1b" + '\x16')
- ae(enc(ord('w'), shifted_key=ord('W')), 'w')
- ae(enc(ord('w'), shifted_key=ord('W'), mods=shift), 'W')
- ae(enc(ord('w'), shifted_key=ord('W'), mods=alt), "\x1b" + 'w')
- ae(enc(ord('w'), shifted_key=ord('W'), mods=shift | alt), "\x1b" + 'W')
- ae(enc(ord('w'), shifted_key=ord('W'), mods=ctrl), '\x17')
- ae(enc(ord('w'), shifted_key=ord('W'), mods=ctrl | alt), "\x1b" + '\x17')
- ae(enc(ord('x'), shifted_key=ord('X')), 'x')
- ae(enc(ord('x'), shifted_key=ord('X'), mods=shift), 'X')
- ae(enc(ord('x'), shifted_key=ord('X'), mods=alt), "\x1b" + 'x')
- ae(enc(ord('x'), shifted_key=ord('X'), mods=shift | alt), "\x1b" + 'X')
- ae(enc(ord('x'), shifted_key=ord('X'), mods=ctrl), '\x18')
- ae(enc(ord('x'), shifted_key=ord('X'), mods=ctrl | alt), "\x1b" + '\x18')
- ae(enc(ord('y'), shifted_key=ord('Y')), 'y')
- ae(enc(ord('y'), shifted_key=ord('Y'), mods=shift), 'Y')
- ae(enc(ord('y'), shifted_key=ord('Y'), mods=alt), "\x1b" + 'y')
- ae(enc(ord('y'), shifted_key=ord('Y'), mods=shift | alt), "\x1b" + 'Y')
- ae(enc(ord('y'), shifted_key=ord('Y'), mods=ctrl), '\x19')
- ae(enc(ord('y'), shifted_key=ord('Y'), mods=ctrl | alt), "\x1b" + '\x19')
- ae(enc(ord('z'), shifted_key=ord('Z')), 'z')
- ae(enc(ord('z'), shifted_key=ord('Z'), mods=shift), 'Z')
- ae(enc(ord('z'), shifted_key=ord('Z'), mods=alt), "\x1b" + 'z')
- ae(enc(ord('z'), shifted_key=ord('Z'), mods=shift | alt), "\x1b" + 'Z')
- ae(enc(ord('z'), shifted_key=ord('Z'), mods=ctrl), '\x1a')
- ae(enc(ord('z'), shifted_key=ord('Z'), mods=ctrl | alt), "\x1b" + '\x1a')
- # end legacy letter tests
- # }}}
- ae(enc(key=ord(':'), shifted_key=ord('/'), mods=shift | alt), '\x1b/')
- for key in '~!@#$%^&*()_+{}|:"<>?':
- ae(enc(key=ord(key), mods=alt), '\x1b' + key)
- ae(enc(key=ord(' ')), ' ')
- ae(enc(key=ord(' '), mods=ctrl | num_lock | caps_lock), '\0')
- ae(enc(key=ord(' '), mods=ctrl), '\0')
- ae(enc(key=ord(' '), mods=alt), '\x1b ')
- ae(enc(key=ord(' '), mods=shift), ' ')
- ae(enc(key=ord(' '), mods=ctrl | alt), '\x1b\0')
- ae(enc(key=ord(' '), mods=ctrl | shift), '\0')
- ae(enc(key=ord(' '), mods=alt | shift), '\x1b ')
- ae(enc(key=ord('i'), mods=ctrl | shift), csi(ctrl | shift, ord('i')))
- ae(enc(key=defines.GLFW_FKEY_LEFT_SHIFT), '')
- ae(enc(key=defines.GLFW_FKEY_CAPS_LOCK), '')
- q = partial(enc, key=ord('a'))
- ae(q(), 'a')
- ae(q(text='a'), 'a')
- ae(q(action=repeat), 'a')
- ae(q(action=release), '')
- # test disambiguate
- dq = partial(enc, key_encoding_flags=0b1)
- ae(dq(ord('a')), 'a')
- ae(dq(defines.GLFW_FKEY_ESCAPE), csi(num=27))
- ae(dq(defines.GLFW_FKEY_ENTER), '\r')
- ae(dq(defines.GLFW_FKEY_ENTER, mods=shift), csi(shift, 13))
- ae(dq(defines.GLFW_FKEY_TAB), '\t')
- ae(dq(defines.GLFW_FKEY_BACKSPACE), '\x7f')
- ae(dq(defines.GLFW_FKEY_TAB, mods=shift), csi(shift, 9))
- for mods in (ctrl, alt, ctrl | shift, alt | shift):
- ae(dq(ord('a'), mods=mods), csi(mods, ord('a')))
- ae(dq(ord(' '), mods=ctrl), csi(ctrl, ord(' ')))
- for k in (defines.GLFW_FKEY_KP_PAGE_UP, defines.GLFW_FKEY_KP_0):
- ae(dq(k), csi(num=k))
- ae(dq(k, mods=ctrl), csi(ctrl, num=k))
- ae(dq(defines.GLFW_FKEY_UP), '\x1b[A')
- ae(dq(defines.GLFW_FKEY_UP, mods=ctrl), csi(ctrl, 1, trailer='A'))
- # test event type reporting
- tq = partial(enc, key_encoding_flags=0b10)
- ae(tq(ord('a')), 'a')
- ae(tq(ord('a'), action=defines.GLFW_REPEAT), csi(num='a', action=2))
- ae(tq(ord('a'), action=defines.GLFW_RELEASE), csi(num='a', action=3))
- ae(tq(ord('a'), action=defines.GLFW_RELEASE, mods=shift), csi(shift, num='a', action=3))
- tq = partial(enc, key_encoding_flags=0b11)
- ae(tq(defines.GLFW_FKEY_BACKSPACE), '\x7f')
- ae(tq(defines.GLFW_FKEY_BACKSPACE, action=release), '')
- # test alternate key reporting
- aq = partial(enc, key_encoding_flags=0b100)
- ae(aq(ord('a')), 'a')
- ae(aq(ord('a'), shifted_key=ord('A')), 'a')
- ae(aq(ord('a'), mods=shift, shifted_key=ord('A')), csi(shift, 'a', shifted_key='A'))
- ae(aq(ord('a'), alternate_key=ord('A')), csi(num='a', alternate_key='A'))
- ae(aq(ord('a'), mods=shift, shifted_key=ord('A'), alternate_key=ord('b')), csi(shift, 'a', shifted_key='A', alternate_key='b'))
- # test report all keys
- kq = partial(enc, key_encoding_flags=0b1000)
- ae(kq(ord('a')), csi(num='a'))
- ae(kq(ord('a'), action=defines.GLFW_REPEAT), csi(num='a'))
- ae(kq(ord('a'), mods=ctrl), csi(ctrl, num='a'))
- ae(kq(defines.GLFW_FKEY_UP), '\x1b[A')
- ae(kq(defines.GLFW_FKEY_LEFT_SHIFT), csi(num=defines.GLFW_FKEY_LEFT_SHIFT))
- ae(kq(defines.GLFW_FKEY_ENTER), '\x1b[13u')
- ae(kq(defines.GLFW_FKEY_TAB), '\x1b[9u')
- ae(kq(defines.GLFW_FKEY_BACKSPACE), '\x1b[127u')
- # test embed text
- eq = partial(enc, key_encoding_flags=0b11000)
- ae(eq(ord('a'), text='a'), csi(num='a', text='a'))
- ae(eq(ord('a'), mods=shift, text='A'), csi(shift, num='a', text='A'))
- ae(eq(ord('a'), mods=shift, text='AB'), csi(shift, num='a', text='AB'))
- # test roundtripping via KeyEvent
- for mods in range(64):
- for action in EventType:
- for key in ('ENTER', 'a', 'TAB', 'F3'):
- for shifted_key in ('', 'X'):
- for alternate_key in ('', 'Y'):
- for text in ('', 'moose'):
- ev = KeyEvent(
- type=action, mods=mods, key=key, text=text, shifted_key=shifted_key, alternate_key=alternate_key,
- shift=bool(mods & 1), alt=bool(mods & 2), ctrl=bool(mods & 4), super=bool(mods & 8),
- hyper=bool(mods & 16), meta=bool(mods & 32)
- )
- ec = encode_key_event(ev)
- q = decode_key_event(ec[2:-1], ec[-1])
- self.ae(ev, q)
- def test_encode_mouse_event(self):
- NORMAL_PROTOCOL, UTF8_PROTOCOL, SGR_PROTOCOL, URXVT_PROTOCOL = range(4)
- L, M, R = 1, 2, 3
- protocol = SGR_PROTOCOL
- def enc(button=L, action=defines.PRESS, mods=0, x=1, y=1):
- return defines.test_encode_mouse(x, y, protocol, button, action, mods)
- self.ae(enc(), '<0;1;1M')
- self.ae(enc(action=defines.RELEASE), '<0;1;1m')
- self.ae(enc(action=defines.MOVE, button=0), '<35;1;1M')
- self.ae(enc(action=defines.DRAG), '<32;1;1M')
- self.ae(enc(R), '<2;1;1M')
- self.ae(enc(R, action=defines.RELEASE), '<2;1;1m')
- self.ae(enc(R, action=defines.DRAG), '<34;1;1M')
- self.ae(enc(M), '<1;1;1M')
- self.ae(enc(M, action=defines.RELEASE), '<1;1;1m')
- self.ae(enc(M, action=defines.DRAG), '<33;1;1M')
- self.ae(enc(x=1234, y=5678), '<0;1234;5678M')
- self.ae(enc(mods=defines.GLFW_MOD_SHIFT), '<4;1;1M')
- self.ae(enc(mods=defines.GLFW_MOD_ALT), '<8;1;1M')
- self.ae(enc(mods=defines.GLFW_MOD_CONTROL), '<16;1;1M')
- def test_mapping(self):
- from kitty.config import load_config
- from kitty.options.utils import parse_shortcut
- af = self.assertFalse
- class Window:
- def __init__(self, id=1):
- self.key_seqs = []
- self.id = id
- def send_key_sequence(self, *s):
- self.key_seqs.extend(s)
- class TM(Mappings):
- def __init__(self, *lines, active_window = Window()):
- self.active_window = active_window
- self.windows = [active_window]
- bad_lines = []
- self.options = load_config(overrides=lines, accumulate_bad_lines=bad_lines)
- af(bad_lines)
- self.ignore_os_keyboard_processing = False
- super().__init__()
- def get_active_window(self):
- return self.active_window
- def match_windows(self, expr: str):
- for w in self.windows:
- if str(w.id) == expr:
- yield w
- def show_error(self, title: str, msg: str) -> None:
- pass
- def ring_bell(self) -> None:
- pass
- def debug_print(self, *args, end: str = '\n') -> None:
- pass
- def combine(self, action_definition: str) -> bool:
- self.actions.append(action_definition)
- if action_definition.startswith('push_keyboard_mode '):
- self.push_keyboard_mode(action_definition.partition(' ')[2])
- elif action_definition == 'pop_keyboard_mode':
- self.pop_keyboard_mode()
- return bool(action_definition)
- def set_ignore_os_keyboard_processing(self, on: bool) -> None:
- self.ignore_os_keyboard_processing = on
- def set_cocoa_global_shortcuts(self, opts):
- return {}
- def get_options(self):
- return self.options
- def __call__(self, *keys: str):
- self.actions = []
- self.active_window.key_seqs = []
- consumed = []
- for key in keys:
- sk = parse_shortcut(key)
- ev = defines.KeyEvent(sk.key, 0, 0, sk.mods)
- consumed.append(self.dispatch_possible_special_key(ev))
- return consumed
- tm = TM('map ctrl+a new_window_with_cwd')
- self.ae(tm('ctrl+a'), [True])
- self.ae(tm.actions, ['new_window_with_cwd'])
- tm = TM('map ctrl+f>2 set_font_size 20')
- self.ae(tm('ctrl+f', '2'), [True, True])
- self.ae(tm.actions, ['set_font_size 20'])
- af(tm.active_window.key_seqs)
- # unmatched multi key mapping should send all keys to child
- self.ae(tm('ctrl+f', '1'), [True, False])
- af(tm.actions)
- self.ae(len(tm.active_window.key_seqs), 1) # ctrl+f should have been sent to the window
- # multi-key mapping that is unmapped should send all keys to child
- tm = TM('map kitty_mod+p>f')
- self.ae(tm('ctrl+shift+p', 'f'), [True, False])
- self.ae(len(tm.active_window.key_seqs), 1)
- # unmap
- tm = TM('map kitty_mod+enter')
- self.ae(tm('ctrl+shift+enter'), [False])
- # single key mapping overrides previous all multi-key mappings with same prefix
- tm = TM('map kitty_mod+p new_window')
- self.ae(tm('ctrl+shift+p', 'f'), [True, False])
- self.ae(tm.actions, ['new_window'])
- # multi-key mapping overrides previous single key mapping with same prefix
- tm = TM('map kitty_mod+s>p new_window')
- self.ae(tm('ctrl+shift+s', 'p'), [True, True])
- self.ae(tm.actions, ['new_window'])
- # mix of single and multi-key mappings with same prefix
- tm = TM('map alt+p>1 multi1', 'map alt+p single1', 'map alt+p>2 multi2')
- self.ae(tm('alt+p', '2'), [True, True])
- self.ae(tm.actions, ['multi2'])
- self.ae(tm('alt+p', '1'), [True, False])
- af(tm.actions)
- self.ae(len(tm.active_window.key_seqs), 1)
- # a single multi-key mapping should not prematurely match
- tm = TM('map alt+1>2>3 new_window')
- self.ae(tm('alt+1', '2'), [True, True])
- af(tm.actions)
- tm = TM('map alt+1>2>3 new_window')
- self.ae(tm('alt+1', '2', '3'), [True, True, True])
- self.ae(tm.actions, ['new_window'])
- # changing a multi key mapping
- tm = TM('map kitty_mod+p>f new_window')
- self.ae(tm('ctrl+shift+p', 'f'), [True, True])
- self.ae(tm.actions, ['new_window'])
- # different behavior with focus selection
- tm = TM('map --when-focus-on 2 kitty_mod+t')
- tm.windows.append(Window(2))
- self.ae(tm('ctrl+shift+t'), [True])
- tm.active_window = tm.windows[1]
- self.ae(tm('ctrl+shift+t'), [False])
- # modal mappings
- tm = TM('map --new-mode mw --on-unknown end kitty_mod+f7', 'map --mode mw left neighboring_window left', 'map --mode mw right neighboring_window right')
- self.ae(tm('ctrl+shift+f7'), [True])
- self.ae(tm.actions, ['push_keyboard_mode mw'])
- self.ae(tm('right'), [True])
- self.ae(tm.actions, ['neighboring_window right'])
- self.ae(tm('left'), [True])
- self.ae(tm.actions, ['neighboring_window left'])
- self.ae(tm('x'), [True])
- af(tm.keyboard_mode_stack)
- # modal mapping with --on-action=end must restore OS keyboard processing
- tm = TM('map --new-mode mw --on-action end m', 'map --mode mw a new_window')
- self.ae(tm('m', 'a'), [True, True])
- self.ae(tm.actions, ['push_keyboard_mode mw', 'new_window'])
- af(tm.ignore_os_keyboard_processing)
|