rizin/test/unit/test_cons.c
2024-01-07 22:40:25 +08:00

376 lines
13 KiB
C

// SPDX-FileCopyrightText: 2020 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_cons.h>
#include "minunit.h"
bool test_rz_cons() {
// NOTE: not initializing a value here results in UB
ut8 r = 0, g = 0, b = 0, a = 0;
rz_cons_rgb_init();
// all these strdup are for asan/valgrind to have some exact bounds to work with
char *foo = strdup("___"); // should crash in asan mode
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 0, "red color");
mu_assert_eq(g, 0, "green color");
mu_assert_eq(b, 0, "blue color");
mu_assert_eq(a, 0, "alpha color");
// old school
foo = strdup("\x1b[32mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 0, "red color");
mu_assert_eq(g, 127, "green color");
mu_assert_eq(b, 0, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("[32mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 0, "red color");
mu_assert_eq(g, 127, "green color");
mu_assert_eq(b, 0, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("32mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 0, "red color");
mu_assert_eq(g, 127, "green color");
mu_assert_eq(b, 0, "blue color");
mu_assert_eq(a, 0, "alpha color");
// 256
foo = strdup("\x1b[38;5;213mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 255, "red color");
mu_assert_eq(g, 135, "green color");
mu_assert_eq(b, 255, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("[38;5;213mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 255, "red color");
mu_assert_eq(g, 135, "green color");
mu_assert_eq(b, 255, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("38;5;213mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 255, "red color");
mu_assert_eq(g, 135, "green color");
mu_assert_eq(b, 255, "blue color");
mu_assert_eq(a, 0, "alpha color");
// 24 bit
foo = strdup("\x1b[38;2;42;13;37mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 42, "red color");
mu_assert_eq(g, 13, "green color");
mu_assert_eq(b, 37, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("[38;2;42;13;37mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 42, "red color");
mu_assert_eq(g, 13, "green color");
mu_assert_eq(b, 37, "blue color");
mu_assert_eq(a, 0, "alpha color");
foo = strdup("38;2;42;13;37mhello\x1b[0m");
r = g = b = a = 0;
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_assert_eq(r, 42, "red color");
mu_assert_eq(g, 13, "green color");
mu_assert_eq(b, 37, "blue color");
mu_assert_eq(a, 0, "alpha color");
// no over-read
foo = strdup("38;2");
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
foo = strdup("38;5");
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
foo = strdup("3");
rz_cons_rgb_parse(foo, &r, &g, &b, &a);
free(foo);
mu_end;
}
bool test_cons_to_html() {
char *html;
html = rz_cons_html_filter("\x1b[32mhello\x1b[0m", NULL);
mu_assert_streq_free(html, "<font color='#0f0'>hello</font>", "Simple font color");
html = rz_cons_html_filter("\x1b[31mhello\x1b[0mabc", NULL);
mu_assert_streq_free(html, "<font color='#f00'>hello</font>abc", "Simple font color2");
html = rz_cons_html_filter("\x1b[31mhe\x1b[44mllo\x1b[0mabc", NULL);
mu_assert_streq_free(html, "<font color='#f00'>he</font><font color='#f00' style='background-color:#00f'>llo</font>abc", "Color and background");
html = rz_cons_html_filter("\x1b[44mhe\x1b[31mllo\x1b[0mabc", NULL);
mu_assert_streq_free(html, "<font style='background-color:#00f'>he</font><font color='#f00' style='background-color:#00f'>llo</font>abc", "Background and color");
html = rz_cons_html_filter("AA\x1b[31mBB\x1b[32mCC\x1b[0mDD", NULL);
mu_assert_streq_free(html, "AA<font color='#f00'>BB</font><font color='#0f0'>CC</font>DD", "Switch color");
html = rz_cons_html_filter("AA\x1b[31mBB\x1b[32m\x1b[41mCC\x1b[0mDD", NULL);
mu_assert_streq_free(html, "AA<font color='#f00'>BB</font><font color='#0f0' style='background-color:#f00'>CC</font>DD", "Multiple changes");
html = rz_cons_html_filter("\x1b[33m0x0005d01\x1b[0m \x1b[36mand\x1b[36m foo", NULL);
mu_assert_streq_free(html, "<font color='#ff0'>0x0005d01</font>&nbsp;<font color='#aaf'>and</font><font color='#aaf'>&nbsp;foo</font>", "Space and reset");
html = rz_cons_html_filter("\x1b[33mAAAA\x1b[7mBBBB\x1b[33mBBB\x1b[0mCCC", NULL);
mu_assert_streq_free(html, "<font color='#ff0'>AAAA</font>"
"<font color='#ff0' style='text-decoration:underline overline'>BBBB</font>"
"<font color='#ff0' style='text-decoration:underline overline'>BBB</font>CCC",
"Invert");
html = rz_cons_html_filter("\x1b[33mAAAA\x1b[7mBBBB\x1b[33mBBB\x1b[27mCCC", NULL);
mu_assert_streq_free(html, "<font color='#ff0'>AAAA</font>"
"<font color='#ff0' style='text-decoration:underline overline'>BBBB</font>"
"<font color='#ff0' style='text-decoration:underline overline'>BBB</font><font color='#ff0'>CCC</font>",
"Invert rest");
html = rz_cons_html_filter("\x1b[41m\x1b[31mBB\x1b[39mCC", NULL);
mu_assert_streq_free(html, "<font color='#f00' style='background-color:#f00'>BB</font>"
"<font style='background-color:#f00'>CC</font>",
"Default font color color");
html = rz_cons_html_filter("\x1b[41m\x1b[31mBB\x1b[49mCC", NULL);
mu_assert_streq_free(html, "<font color='#f00' style='background-color:#f00'>BB</font><font color='#f00'>CC</font>", "Default background color");
html = rz_cons_html_filter("aaa" Color_RESET "bbb", NULL);
mu_assert_streq_free(html, "aaabbb", "Only reset");
html = rz_cons_html_filter("aaa" Color_RESET Color_RED "bbb", NULL);
mu_assert_streq_free(html, "aaa<font color='#f00'>bbb</font>", "Color after reset");
html = rz_cons_html_filter("aaa" Color_RESET Color_RED Color_RESET "bbb", NULL);
mu_assert_streq_free(html, "aaabbb", "Color after reset");
html = rz_cons_html_filter("aaa" Color_RESET Color_RED Color_RESET Color_BGGREEN "bbb", NULL);
mu_assert_streq_free(html, "aaa<font style='background-color:#0f0'>bbb</font>", "Reset color reset color");
html = rz_cons_html_filter(Color_RED Color_BGGREEN "aaa" Color_RESET Color_RESET_BG "bbb", NULL);
mu_assert_streq_free(html, "<font color='#f00' style='background-color:#0f0'>aaa</font>bbb", "Two different resets");
html = rz_cons_html_filter(Color_RED Color_BGGREEN "aaa" Color_RESET_BG Color_RESET "bbb", NULL);
mu_assert_streq_free(html, "<font color='#f00' style='background-color:#0f0'>aaa</font>bbb", "Two different resets opposite order");
mu_end;
}
static RzLineNSCompletionResult *nocompletion_run(RzLineBuffer *buf, RzLinePromptType prompt_type, void *user) {
return rz_line_ns_completion_result_new(0, 0, NULL);
}
bool test_line_nocompletion(void) {
RzLine *line = rz_line_new();
line->ns_completion.run = nocompletion_run;
strcpy(line->buffer.data, "pd");
line->buffer.length = strlen("pd");
line->buffer.index = 2;
rz_line_autocomplete(line);
mu_assert_streq(line->buffer.data, "pd", "pd is still there");
mu_assert_eq(line->buffer.length, 2, "length is still 2");
mu_assert_eq(line->buffer.index, 2, "the user position is still the same");
rz_line_free(line);
mu_end;
}
static RzLineNSCompletionResult *onecompletion_run(RzLineBuffer *buf, RzLinePromptType prompt_type, void *user) {
RzLineNSCompletionResult *res = rz_line_ns_completion_result_new(0, 2, NULL);
rz_line_ns_completion_result_add(res, "pdf");
return res;
}
bool test_line_onecompletion(void) {
RzLine *line = rz_line_new();
line->ns_completion.run = onecompletion_run;
strcpy(line->buffer.data, "pd");
line->buffer.length = strlen("pd");
line->buffer.index = 2;
rz_line_autocomplete(line);
mu_assert_eq(line->buffer.length, 4, "length is updated (space included)");
mu_assert_eq(line->buffer.index, 4, "index after the space");
mu_assert_streq(line->buffer.data, "pdf ", "pdf has been autocompleted and a space added");
strcpy(line->buffer.data, "pd fcn");
line->buffer.length = strlen("pd fcn");
line->buffer.index = 2;
rz_line_autocomplete(line);
mu_assert_eq(line->buffer.index, 3, "should leave everythin else intact");
mu_assert_eq(line->buffer.length, 7, "length is updated");
mu_assert_streq(line->buffer.data, "pdf fcn", "pdf has been autocompleted and fcn kept intact");
rz_line_free(line);
mu_end;
}
static RzLineNSCompletionResult *multicompletion_run(RzLineBuffer *buf, RzLinePromptType prompt_type, void *user) {
RzLineNSCompletionResult *res = rz_line_ns_completion_result_new(0, 2, NULL);
rz_line_ns_completion_result_add(res, "pdf");
rz_line_ns_completion_result_add(res, "pdF");
rz_line_ns_completion_result_add(res, "pdb");
rz_line_ns_completion_result_add(res, "pdx");
return res;
}
static RzLineNSCompletionResult *multicompletion_run2(RzLineBuffer *buf, RzLinePromptType prompt_type, void *user) {
RzLineNSCompletionResult *res = rz_line_ns_completion_result_new(0, 1, NULL);
rz_line_ns_completion_result_add(res, "pdf");
rz_line_ns_completion_result_add(res, "pdF");
rz_line_ns_completion_result_add(res, "pdb");
rz_line_ns_completion_result_add(res, "pdx");
return res;
}
bool test_line_multicompletion(void) {
RzCons *cons = rz_cons_new();
// Make test reproducible everywhere
cons->force_columns = 80;
cons->force_rows = 23;
RzLine *line = rz_line_new();
line->ns_completion.run = multicompletion_run;
cons->line = line;
strcpy(line->buffer.data, "pd");
line->buffer.length = strlen("pd");
line->buffer.index = 2;
rz_line_autocomplete(line);
mu_assert_eq(line->buffer.length, 2, "length is the same");
mu_assert_eq(line->buffer.index, 2, "index is the same");
mu_assert_streq(line->buffer.data, "pd", "pd is the same");
const char *exp_buf = "> pd\n"
"pdf pdF pdb pdx \n";
const char *buf = rz_cons_get_buffer();
mu_assert_notnull(buf, "buf is not null");
mu_assert_streq(buf, exp_buf, "options are shown correctly");
rz_cons_reset();
line->ns_completion.run = multicompletion_run2;
strcpy(line->buffer.data, "p");
line->buffer.length = strlen("p");
line->buffer.index = 1;
rz_line_autocomplete(line);
mu_assert_eq(line->buffer.length, 2, "length was updated for 'pd'");
mu_assert_eq(line->buffer.index, 2, "index is at the end of 'pd'");
mu_assert_streq(line->buffer.data, "pd", "pd was written because max common prefx");
exp_buf = "> pd\n"
"pdf pdF pdb pdx \n";
buf = rz_cons_get_buffer();
mu_assert_notnull(buf, "buf is not null");
mu_assert_streq(buf, exp_buf, "options are shown correctly");
rz_cons_free();
mu_end;
}
bool test_line_kill_word(void) {
RzCons *cons = rz_cons_new();
// Make test reproducible everywhere
cons->force_columns = 80;
cons->force_rows = 23;
RzLine *line = rz_line_new();
line->ns_completion.run = multicompletion_run;
cons->line = line;
// write the string, then do ^b two times to move the index to 10, then ^d to delete the word under the cursor
const char instr[] = "pd 10@ hello\x1b\x62\x1b\x62\x1b\x64\n";
rz_cons_readpush(instr, sizeof(instr));
rz_line_readline(line);
mu_assert_eq(line->buffer.index, 3, "index is after 'pd '");
mu_assert_streq(line->buffer.data, "pd @ hello", "10 was deleted");
rz_cons_free();
mu_end;
}
bool test_line_undo(void) {
RzCons *cons = rz_cons_new();
// Make test reproducible everywhere
cons->force_columns = 80;
cons->force_rows = 23;
RzLine *line = rz_line_new();
cons->line = line;
// write 20 chars and undo once
char input_concat[] = "01234567890123456789\x1f\n";
rz_cons_readpush(input_concat, sizeof(input_concat));
rz_line_readline(line);
mu_assert_eq(line->buffer.length, 0, "concatenated string should get cleared");
mu_assert_eq(line->buffer.index, 0, "index is 0");
// write a string, delete, then undo('\x1f') twice
char input_undo[] = "0123\x17\x1f\x1f\n";
rz_cons_readpush(input_undo, sizeof(input_undo));
rz_line_readline(line);
mu_assert_eq(line->buffer.index, 0, "index is at 0");
mu_assert_eq(line->buffer.length, 0, "legth is 0");
// write a string, undo('\x1f') and redo('\x1b\x3f')
char input_redo[] = "pDF\x1f\x1b\x3f\n";
rz_cons_readpush(input_redo, sizeof(input_redo));
rz_line_readline(line);
mu_assert_streq(line->buffer.data, "pDF", "redo not working");
// run completion (example of replacing and continuous operation).
line->ns_completion.run = onecompletion_run;
// now "pd" has been confirmed to be completed to "pdf ". undo will turn it to previous state replacing the texts.
const char input_undo_group[] = "pd\t\x1f\n";
rz_cons_readpush(input_undo_group, sizeof(input_undo_group));
rz_line_readline(line);
mu_assert_streq(line->buffer.data, "pd", "undo group operations not working");
rz_cons_free();
mu_end;
}
bool all_tests() {
mu_run_test(test_rz_cons);
mu_run_test(test_cons_to_html);
mu_run_test(test_line_nocompletion);
mu_run_test(test_line_onecompletion);
mu_run_test(test_line_multicompletion);
mu_run_test(test_line_kill_word);
mu_run_test(test_line_undo);
return tests_passed != tests_run;
}
mu_main(all_tests)