Unit test that CSI initial command also works
This commit is contained in:
parent
7b3dc4be71
commit
26912d989b
11
t/39csi.c
11
t/39csi.c
|
@ -9,13 +9,13 @@ int main(int argc, char *argv[])
|
||||||
size_t nargs = 16;
|
size_t nargs = 16;
|
||||||
unsigned long command;
|
unsigned long command;
|
||||||
|
|
||||||
plan_tests(7);
|
plan_tests(11);
|
||||||
|
|
||||||
tk = termkey_new_abstract("vt100", 0);
|
tk = termkey_new_abstract("vt100", 0);
|
||||||
|
|
||||||
termkey_push_bytes(tk, "\e[5;25v", 7);
|
termkey_push_bytes(tk, "\e[5;25v", 7);
|
||||||
|
|
||||||
is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY for position report");
|
is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY for CSI v");
|
||||||
|
|
||||||
is_int(key.type, TERMKEY_TYPE_UNKNOWN_CSI, "key.type for unknown CSI");
|
is_int(key.type, TERMKEY_TYPE_UNKNOWN_CSI, "key.type for unknown CSI");
|
||||||
|
|
||||||
|
@ -26,6 +26,13 @@ int main(int argc, char *argv[])
|
||||||
is_int(args[1], 25, "args[1] for unknown CSI");
|
is_int(args[1], 25, "args[1] for unknown CSI");
|
||||||
is_int(command, 'v', "command for unknown CSI");
|
is_int(command, 'v', "command for unknown CSI");
|
||||||
|
|
||||||
|
termkey_push_bytes(tk, "\e[?w", 4);
|
||||||
|
|
||||||
|
is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY for CSI ? w");
|
||||||
|
is_int(key.type, TERMKEY_TYPE_UNKNOWN_CSI, "key.type for unknown CSI");
|
||||||
|
is_int(termkey_interpret_csi(tk, &key, args, &nargs, &command), TERMKEY_RES_KEY, "interpret_csi yields RES_KEY");
|
||||||
|
is_int(command, '?' << 8 | 'w', "command for unknown CSI");
|
||||||
|
|
||||||
termkey_destroy(tk);
|
termkey_destroy(tk);
|
||||||
|
|
||||||
return exit_status();
|
return exit_status();
|
||||||
|
|
Loading…
Reference in New Issue