aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2011-04-01 00:50:51 +0100
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2011-04-01 00:50:51 +0100
commit6424282c4ddb129d6987a0f8c03f3d23132b842c (patch)
tree0894cf3486e781511e1fed73dad37db215bf16cd /t
parentee69b33c496fffab14f5783552b0316cdcdef543 (diff)
downloadtermo-6424282c4ddb129d6987a0f8c03f3d23132b842c.tar.gz
termo-6424282c4ddb129d6987a0f8c03f3d23132b842c.tar.xz
termo-6424282c4ddb129d6987a0f8c03f3d23132b842c.zip
Partial implementation of termkey_strpkey(3); missing FORMAT_WRAPBRACKET and TYPE_FUNCTION support
Diffstat (limited to 't')
-rw-r--r--t/12strpkey.c90
1 files changed, 90 insertions, 0 deletions
diff --git a/t/12strpkey.c b/t/12strpkey.c
new file mode 100644
index 0000000..648e1c1
--- /dev/null
+++ b/t/12strpkey.c
@@ -0,0 +1,90 @@
+#include "../termkey.h"
+#include "taplib.h"
+
+int main(int argc, char *argv[])
+{
+ TermKey *tk;
+ TermKeyKey key;
+ TermKeyResult res;
+
+#define CLEAR_KEY do { key.type = -1; key.code.number = -1; key.modifiers = -1; key.utf8[0] = 0; } while(0)
+
+ plan_tests(44);
+
+ tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS);
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "A", &key, 0);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/A/0");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/A/0");
+ is_int(key.code.number, 'A', "key.code.number for unicode/A/0");
+ is_int(key.modifiers, 0, "key.modifiers for unicode/A/0");
+ is_str(key.utf8, "A", "key.utf8 for unicode/A/0");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "C-b", &key, 0);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/b/CTRL");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/b/CTRL");
+ is_int(key.code.number, 'b', "key.code.number for unicode/b/CTRL");
+ is_int(key.modifiers, TERMKEY_KEYMOD_CTRL, "key.modifiers for unicode/b/CTRL");
+ is_str(key.utf8, "b", "key.utf8 for unicode/b/CTRL");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "Ctrl-b", &key, TERMKEY_FORMAT_LONGMOD);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/b/CTRL longmod");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/b/CTRL longmod");
+ is_int(key.code.number, 'b', "key.code.number for unicode/b/CTRL longmod");
+ is_int(key.modifiers, TERMKEY_KEYMOD_CTRL, "key.modifiers for unicode/b/CTRL longmod");
+ is_str(key.utf8, "b", "key.utf8 for unicode/b/CTRL longmod");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "^B", &key, TERMKEY_FORMAT_CARETCTRL);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/b/CTRL caretctrl");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/b/CTRL caretctrl");
+ is_int(key.code.number, 'b', "key.code.number for unicode/b/CTRL caretctrl");
+ is_int(key.modifiers, TERMKEY_KEYMOD_CTRL, "key.modifiers for unicode/b/CTRL caretctrl");
+ is_str(key.utf8, "b", "key.utf8 for unicode/b/CTRL caretctrl");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "A-c", &key, 0);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/c/ALT");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/c/ALT");
+ is_int(key.code.number, 'c', "key.code.number for unicode/c/ALT");
+ is_int(key.modifiers, TERMKEY_KEYMOD_ALT, "key.modifiers for unicode/c/ALT");
+ is_str(key.utf8, "c", "key.utf8 for unicode/c/ALT");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "Alt-c", &key, TERMKEY_FORMAT_LONGMOD);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/c/ALT longmod");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/c/ALT longmod");
+ is_int(key.code.number, 'c', "key.code.number for unicode/c/ALT longmod");
+ is_int(key.modifiers, TERMKEY_KEYMOD_ALT, "key.modifiers for unicode/c/ALT longmod");
+ is_str(key.utf8, "c", "key.utf8 for unicode/c/ALT longmod");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "M-c", &key, TERMKEY_FORMAT_ALTISMETA);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/c/ALT altismeta");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/c/ALT altismeta");
+ is_int(key.code.number, 'c', "key.code.number for unicode/c/ALT altismeta");
+ is_int(key.modifiers, TERMKEY_KEYMOD_ALT, "key.modifiers for unicode/c/ALT altismeta");
+ is_str(key.utf8, "c", "key.utf8 for unicode/c/ALT altismeta");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "Meta-c", &key, TERMKEY_FORMAT_ALTISMETA|TERMKEY_FORMAT_LONGMOD);
+ is_int(res, TERMKEY_RES_KEY, "result for unicode/c/ALT altismeta+longmod");
+ is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/c/ALT altismeta+longmod");
+ is_int(key.code.number, 'c', "key.code.number for unicode/c/ALT altismeta+longmod");
+ is_int(key.modifiers, TERMKEY_KEYMOD_ALT, "key.modifiers for unicode/c/ALT altismeta+longmod");
+ is_str(key.utf8, "c", "key.utf8 for unicode/c/ALT altismeta+longmod");
+
+ CLEAR_KEY;
+ res = termkey_strpkey(tk, "Up", &key, 0);
+ is_int(res, TERMKEY_RES_KEY, "result for sym/Up/0");
+ is_int(key.type, TERMKEY_TYPE_KEYSYM, "key.type for sym/Up/0");
+ is_int(key.code.sym, TERMKEY_SYM_UP, "key.code.number for sym/Up/0");
+ is_int(key.modifiers, 0, "key.modifiers for sym/Up/0");
+
+ termkey_destroy(tk);
+
+ return exit_status();
+}