rizin/test/integration/test_autocmplt.c
Dhruv Maroo 61e8ace32a
Fixing some Coverity issues (#3261)
* Use signed long long for `src_readlen`, so we can check for -1

    * Fixes Coverity defect 396947 and 356103

* Replace Unicode quotes with ASCII

* Ue signed structure in case -1 is returned (CID 396933)

* Need signed to check negative (CID 395560)

* Fix memleaks in `test_autocmplt_global`

    * Related CIDs: 356309, 356307

* Set initial value of `ret` to false
2022-12-31 16:57:19 +08:00

659 lines
23 KiB
C

// SPDX-FileCopyrightText: 2021 ret2libc <sirmy15@gmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_core.h>
#include <rz_util/rz_str.h>
#include "../unit/minunit.h"
static RzCmdDescArg xd_args[] = {
{ .name = "f1", .type = RZ_CMD_ARG_TYPE_FILE },
{ .name = "F2", .type = RZ_CMD_ARG_TYPE_FCN },
{ .name = "e3", .type = RZ_CMD_ARG_TYPE_ENV },
{ .name = "Z4", .type = RZ_CMD_ARG_TYPE_REG_TYPE },
{ .name = "E5", .type = RZ_CMD_ARG_TYPE_EVAL_FULL },
{ 0 },
};
static RzCmdDescHelp xd_help = {
.summary = "xd summary",
.args = xd_args,
};
static RzCmdDescArg xe_args[] = {
{ .name = "f1", .type = RZ_CMD_ARG_TYPE_STRING },
{ 0 },
};
static RzCmdDescHelp xe_help = {
.summary = "xe summary",
.args = xe_args,
};
static RzCmdDescHelp x_group_help = {
.summary = "x group summary",
};
static RzCmdDescHelp p_help = {
.summary = "p summary",
.args = xe_args,
};
static RzCmdDescArg s_args[] = {
{ .name = "v1", .type = RZ_CMD_ARG_TYPE_RZNUM, .flags = RZ_CMD_ARG_FLAG_LAST },
{ 0 },
};
static RzCmdDescHelp s_help = {
.summary = "s summary",
.args = s_args,
};
static char **z_args_choices_cb(RzCore *core) {
char **res = RZ_NEWS0(char *, 3);
res[0] = strdup("Hello");
res[1] = strdup("World");
return res;
}
static RzCmdDescArg z_args[] = {
{ .name = "v1", .type = RZ_CMD_ARG_TYPE_CHOICES, .choices.choices_cb = z_args_choices_cb },
{ 0 },
};
static RzCmdDescHelp z_help = {
.summary = "z summary",
.args = z_args,
};
static RzCmdStatus x_handler(RzCore *core, int argc, const char **argv) {
return RZ_CMD_STATUS_OK;
}
static RzCore *fake_core_new(void) {
RzCore *core = rz_core_new();
mu_assert_notnull(core, "core should be created");
RzCoreFile *cf = rz_core_file_open(core, "bins/elf/hello_world", RZ_PERM_R, 0);
mu_assert_notnull(cf, "file should be opened");
rz_core_bin_load(core, "bins/elf/hello_world", 0);
rz_cmd_free(core->rcmd);
RzCmd *cmd = rz_core_cmd_new(core, true);
mu_assert_notnull(cmd, "cmd should be created");
RzCmdDesc *root = rz_cmd_get_root(cmd);
mu_assert_notnull(root, "root should be present");
RzCmdDesc *x = rz_cmd_desc_group_new(cmd, root, "x", NULL, NULL, &x_group_help);
mu_assert_notnull(x, "x");
RzCmdDesc *xd = rz_cmd_desc_argv_new(cmd, x, "xd", x_handler, &xd_help);
mu_assert_notnull(xd, "xd");
RzCmdDesc *xe = rz_cmd_desc_argv_new(cmd, x, "xe", x_handler, &xe_help);
mu_assert_notnull(xe, "xe");
RzCmdDesc *p = rz_cmd_desc_argv_new(cmd, root, "p", x_handler, &p_help);
mu_assert_notnull(p, "p");
RzCmdDesc *s = rz_cmd_desc_argv_new(cmd, root, "s", x_handler, &s_help);
mu_assert_notnull(s, "s");
RzCmdDesc *z = rz_cmd_desc_argv_new(cmd, root, "z", x_handler, &z_help);
mu_assert_notnull(z, "z");
core->rcmd = cmd;
rz_core_cmd(core, "", 0);
return core;
}
static RzCore *fake_core_new2(void) {
RzCore *core = rz_core_new();
mu_assert_notnull(core, "core should be created");
RzCoreFile *cf = rz_core_file_open(core, "bins/elf/hello_world", RZ_PERM_R, 0);
mu_assert_notnull(cf, "file should be opened");
rz_core_bin_load(core, "bins/elf/hello_world", 0);
RzCmdDesc *root = rz_cmd_get_root(core->rcmd);
mu_assert_notnull(root, "root should be present");
RzCmdDesc *unittest_cd = rz_cmd_desc_argv_new(core->rcmd, root, "unittest", x_handler, &xd_help);
mu_assert_notnull(unittest_cd, "unittest_cd");
rz_core_cmd(core, "", 0);
return core;
}
static bool test_autocmplt_cmdid(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
strcpy(buf->data, "x");
buf->length = strlen("x");
buf->index = 1;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_eq(r->start, 0, "should autocomplete starting from 0");
mu_assert_eq(r->end, 1, "should autocomplete ending at 1");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 commands starting with `x`");
mu_assert_streq(rz_pvector_at(&r->options, 0), "xd", "one is xd");
mu_assert_streq(rz_pvector_at(&r->options, 1), "xe", "one is xe");
rz_line_ns_completion_result_free(r);
strcpy(buf->data, "p @@c:x");
buf->length = strlen("p @@c:x");
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should be returned");
mu_assert_eq(r->start, buf->length - 1, "start is ok");
mu_assert_eq(r->end, buf->length, "end is ok");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 commands starting with `x`");
mu_assert_streq(rz_pvector_at(&r->options, 0), "xd", "one is xd");
mu_assert_streq(rz_pvector_at(&r->options, 1), "xe", "one is xe");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_newcommand(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
strcpy(buf->data, "");
buf->length = strlen("");
buf->index = 0;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should be returned");
mu_assert_eq(r->start, 0, "should autocomplete starting from 0");
mu_assert_eq(r->end, 0, "should autocomplete ending at 0");
mu_assert_eq(rz_pvector_len(&r->options), 5, "there are 5 commands available");
mu_assert_streq(rz_pvector_at(&r->options, 0), "p", "one is p");
mu_assert_streq(rz_pvector_at(&r->options, 1), "s", "one is s");
mu_assert_streq(rz_pvector_at(&r->options, 2), "xd", "one is xd");
mu_assert_streq(rz_pvector_at(&r->options, 3), "xe", "one is xe");
mu_assert_streq(rz_pvector_at(&r->options, 4), "z", "one is z");
rz_line_ns_completion_result_free(r);
strcpy(buf->data, "p @@c:");
buf->length = strlen("p @@c:");
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "result should be there");
mu_assert_eq(r->start, buf->length, "start should be ok");
mu_assert_eq(r->end, buf->length, "end should be ok");
mu_assert_eq(rz_pvector_len(&r->options), 5, "there are 4 commands available");
mu_assert_streq(rz_pvector_at(&r->options, 0), "p", "one is p");
mu_assert_streq(rz_pvector_at(&r->options, 1), "s", "one is s");
mu_assert_streq(rz_pvector_at(&r->options, 2), "xd", "one is xd");
mu_assert_streq(rz_pvector_at(&r->options, 3), "xe", "one is xe");
mu_assert_streq(rz_pvector_at(&r->options, 4), "z", "one is z");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_argid(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "xd ./unit/test_interv";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, 3, "should autocomplete starting from ./...");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 1, "there is just one file with test_interv");
mu_assert_streq(rz_pvector_at(&r->options, 0), "." RZ_SYS_DIR "unit" RZ_SYS_DIR "test_intervaltree.c", "test_intervaltree.c");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_quotedarg(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "xd \"./unit/test_interv";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, 4, "should autocomplete starting from ./...");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 1, "there is just one file with test_interv");
mu_assert_streq(rz_pvector_at(&r->options, 0), "." RZ_SYS_DIR "unit" RZ_SYS_DIR "test_intervaltree.c", "test_intervaltree.c");
mu_assert_streq(r->end_string, "\" ", "double quotes should be put at the end of the string");
rz_line_ns_completion_result_free(r);
s = "xd './unit/test_interv";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, 4, "should autocomplete starting from ./...");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 1, "there is just one file with test_interv");
mu_assert_streq(rz_pvector_at(&r->options, 0), "." RZ_SYS_DIR "unit" RZ_SYS_DIR "test_intervaltree.c", "test_intervaltree.c");
mu_assert_streq(r->end_string, "' ", "double quotes should be put at the end of the string");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_newarg(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
char *cwd = rz_sys_getdir();
rz_sys_mkdir("newarg_test");
rz_sys_chdir("newarg_test");
mu_assert_true(rz_file_touch("file0"), "");
mu_assert_true(rz_file_touch("file1"), "");
mu_assert_true(rz_file_touch("file2"), "");
const char *s = "xd ";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, buf->length, "should autocomplete starting after space");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 3, "there are 3 files in newarg_test dir");
bool found[3] = { false, false, false };
void **it;
rz_pvector_foreach (&r->options, it) {
char *f = *(char **)it;
mu_assert_true(rz_str_startswith(f, "." RZ_SYS_DIR "file"), "options start with ./file");
int v = atoi(f + strlen("./file"));
found[v] = true;
}
mu_assert_true(found[0], "file0 found");
mu_assert_true(found[1], "file1 found");
mu_assert_true(found[2], "file2 found");
rz_line_ns_completion_result_free(r);
rz_file_rm("file0");
rz_file_rm("file1");
rz_file_rm("file2");
rz_file_rm("newarg_test");
rz_sys_chdir(cwd);
free(cwd);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_fcn(void) {
RzCore *core = fake_core_new2();
mu_assert_notnull(core, "core not null");
RzLineBuffer *buf = &core->cons->line->buffer;
rz_core_analysis_all(core);
const char *s = "unittest ./file2 sym.imp.s";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("unittest ./file1 "), "should autocomplete starting after space");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 3, "there are 3 functions starting with sym.imp.s");
mu_assert_streq(rz_pvector_at(&r->options, 0), "sym.imp.strlen", "strlen");
mu_assert_streq(rz_pvector_at(&r->options, 1), "sym.imp.strcpy", "strcpy");
mu_assert_streq(rz_pvector_at(&r->options, 2), "sym.imp.strcat", "strcat");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_eval(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "xd 1 2 3 4 asm.lines.w";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("xd 1 2 3 4 "), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 config evals starting with asm.lines.w");
mu_assert_streq(rz_pvector_at(&r->options, 0), "asm.lines.wide", "asm.lines.wide found");
mu_assert_streq(rz_pvector_at(&r->options, 1), "asm.lines.width", "asm.lines.width found");
rz_line_ns_completion_result_free(r);
s = "xd 1 2 3 4 search.in=io.maps.r";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("xd 1 2 3 4 search.in="), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 4, "there are 4 options values for config eval search.in");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_seek(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "s ";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("s "), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 164, "there are 164 rznum vars on loading");
rz_line_ns_completion_result_free(r);
rz_flag_set(core->flags, "flag1", 0x1000, 1);
rz_flag_set(core->flags, "flag2", 0x2000, 1);
rz_flag_set(core->flags, "test3", 0x3000, 1);
rz_flag_set(core->flags, "test4", 0x4000, 1);
s = "s fl";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("s "), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 rznum vars starting with fl");
mu_assert_streq(rz_pvector_at(&r->options, 0), "flag1", "flag1 found");
mu_assert_streq(rz_pvector_at(&r->options, 1), "flag2", "flag2 found");
rz_line_ns_completion_result_free(r);
s = "s flag1 + tes";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("s flag1 + "), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 rznum vars starting with tes");
mu_assert_streq(rz_pvector_at(&r->options, 0), "test3", "test3 found");
mu_assert_streq(rz_pvector_at(&r->options, 1), "test4", "test4 found");
rz_line_ns_completion_result_free(r);
s = "s flag1+tes";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("s flag1+"), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 rznum vars starting with tes");
mu_assert_streq(rz_pvector_at(&r->options, 0), "test3", "test3 found");
mu_assert_streq(rz_pvector_at(&r->options, 1), "test4", "test4 found");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_global(void) {
RzCore *core = rz_core_new();
mu_assert_notnull(core, "core should not be null");
RzAnalysisVarGlobal *glob1 = rz_analysis_var_global_new("GINT", 0x1337); // untyped global
mu_assert_notnull(glob1, "glob1 null");
bool added = rz_analysis_var_global_add(core->analysis, glob1);
mu_assert_true(added, "unable to add glob1");
RzAnalysisVarGlobal *glob2 = rz_analysis_var_global_new("GCHR", 0xd3ad); // typed global
mu_assert_notnull(glob2, "glob2 null");
added = rz_analysis_var_global_add(core->analysis, glob2);
mu_assert_true(added, "unable to add glob2");
RzTypeParser *parser = rz_type_parser_new();
mu_assert_notnull(parser, "create type parser");
char *errmsg = NULL;
RzType *typ = rz_type_parse_string_single(parser, "int", &errmsg);
free(errmsg);
mu_assert_notnull(typ, "parsed type");
rz_analysis_var_global_set_type(glob2, typ);
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "avg ";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("avg "), "should autocomplete the last arg");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 global vars");
mu_assert_streq(rz_pvector_at(&r->options, 0), "GINT", "GINT found");
mu_assert_streq(rz_pvector_at(&r->options, 1), "GCHR", "GCHR found");
rz_line_ns_completion_result_free(r);
rz_type_parser_free(parser);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_tmp_operators(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "pd @";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("pd "), "should autocomplete the @ operator");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
const char *tmp_ops[] = {
"@ ",
"@!",
"@(",
"@a:",
"@b:",
"@B:",
"@e:",
"@f:",
"@F:",
"@i:",
"@k:",
"@o:",
"@r:",
"@s:",
"@v:",
"@x:",
"@@.",
"@@=",
"@@@=",
"@@",
"@@c:",
"@@@c:",
"@@C",
"@@C:",
"@@dbt",
"@@dbtb",
"@@dbts",
"@@t",
"@@b",
"@@i",
"@@ii",
"@@iS",
"@@iSS",
"@@is",
"@@iz",
"@@f",
"@@f:",
"@@F",
"@@F:",
"@@om",
"@@dm",
"@@r",
"@@s:",
};
mu_assert_eq(rz_pvector_len(&r->options), RZ_ARRAY_SIZE(tmp_ops), "there are all @/@@/@@ operators (see @?, @@?)");
int i;
for (i = 0; i < RZ_ARRAY_SIZE(tmp_ops); i++) {
char msg[100];
rz_strf(msg, "%d-th should be %s", i, tmp_ops[i]);
mu_assert_streq(rz_pvector_at(&r->options, i), tmp_ops[i], msg);
}
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_tmp_seek(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "pd @ ";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("pd @ "), "should autocomplete the @ operator");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_true(rz_pvector_len(&r->options) > 100, "there are a lot of possible values to seek to");
rz_line_ns_completion_result_free(r);
s = "pd @ st";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("pd @ "), "should autocomplete the @ operator");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 possible values to seek to starting with st");
mu_assert_streq(rz_pvector_at(&r->options, 0), "str.Hello", "hello string is there");
mu_assert_streq(rz_pvector_at(&r->options, 1), "str.r2_folks", "r2_folks string is there");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_tmp_config(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "pd @e:";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("pd @e:"), "should autocomplete the @ operator");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_true(rz_pvector_len(&r->options) > 20, "there are many possible eval vars");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_tmp_arch(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "pd @a:w";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, strlen("pd @a:"), "should autocomplete the @ operator");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 1, "there is just 1 arch starting with w: wasm");
mu_assert_streq(rz_pvector_at(&r->options, 0), "wasm", "hello string is there");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
static bool test_autocmplt_choices_cb_arg(void) {
RzCore *core = fake_core_new();
mu_assert_notnull(core, "core should be created");
RzLineBuffer *buf = &core->cons->line->buffer;
const char *s = "z ";
strcpy(buf->data, s);
buf->length = strlen(s);
buf->index = buf->length;
RzLineNSCompletionResult *r = rz_core_autocomplete_rzshell(core, buf, RZ_LINE_PROMPT_DEFAULT);
mu_assert_notnull(r, "r should not be null");
mu_assert_eq(r->start, buf->length, "should autocomplete starting after space");
mu_assert_eq(r->end, buf->length, "should autocomplete ending at end of buffer");
mu_assert_eq(rz_pvector_len(&r->options), 2, "there are 2 choices from cb");
mu_assert_streq(rz_pvector_at(&r->options, 0), "Hello", "hello choice is there");
mu_assert_streq(rz_pvector_at(&r->options, 1), "World", "world choice is there");
rz_line_ns_completion_result_free(r);
rz_core_free(core);
mu_end;
}
bool all_tests() {
mu_run_test(test_autocmplt_cmdid);
mu_run_test(test_autocmplt_newcommand);
mu_run_test(test_autocmplt_argid);
mu_run_test(test_autocmplt_quotedarg);
mu_run_test(test_autocmplt_newarg);
mu_run_test(test_autocmplt_fcn);
mu_run_test(test_autocmplt_eval);
mu_run_test(test_autocmplt_seek);
mu_run_test(test_autocmplt_global);
mu_run_test(test_autocmplt_tmp_operators);
mu_run_test(test_autocmplt_tmp_seek);
mu_run_test(test_autocmplt_tmp_config);
mu_run_test(test_autocmplt_tmp_arch);
mu_run_test(test_autocmplt_choices_cb_arg);
return tests_passed != tests_run;
}
mu_main(all_tests)