2012-04-24 18:27:48 +02:00
|
|
|
#include "../termkey.h"
|
|
|
|
#include "taplib.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
TermKey *tk;
|
|
|
|
TermKeyKey key;
|
|
|
|
int line, col;
|
|
|
|
|
|
|
|
plan_tests(5);
|
|
|
|
|
|
|
|
tk = termkey_new_abstract("vt100", 0);
|
|
|
|
|
|
|
|
termkey_push_bytes(tk, "\e[15;7R", 7);
|
|
|
|
|
|
|
|
is_int(termkey_getkey(tk, &key), TERMKEY_RES_KEY, "getkey yields RES_KEY for position report");
|
|
|
|
|
|
|
|
is_int(key.type, TERMKEY_TYPE_POSITION, "key.type for position report");
|
|
|
|
|
|
|
|
is_int(termkey_interpret_position(tk, &key, &line, &col), TERMKEY_RES_KEY, "interpret_position yields RES_KEY");
|
|
|
|
|
2012-04-25 19:34:47 +02:00
|
|
|
is_int(line, 15, "line for position report");
|
|
|
|
is_int(col, 7, "column for position report");
|
2012-04-24 18:27:48 +02:00
|
|
|
|
|
|
|
termkey_destroy(tk);
|
|
|
|
|
|
|
|
return exit_status();
|
|
|
|
}
|