* Add `rz_goto_if_reached()` to RZ_CHECKS_LEVEL 3 * Fix rz_return(_val)_if_reached() for RZ_CHECKS_LEVEL 0 * Add `rz_goto_if_reached()` to RZ_CHECKS_LEVEL 0 * Set default log level to WARN
134 lines
4.4 KiB
C
134 lines
4.4 KiB
C
// SPDX-FileCopyrightText: 2021 ret2libc <sirmy15@gmail.com>
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
#include <rz_core.h>
|
|
#include "minunit.h"
|
|
|
|
static const RzCmdDescArg string_args[] = {
|
|
{ .name = "s", .type = RZ_CMD_ARG_TYPE_STRING },
|
|
{ 0 },
|
|
};
|
|
static const RzCmdDescHelp string_help = {
|
|
.summary = "string help",
|
|
.args = string_args,
|
|
};
|
|
static const RzCmdDescArg cmd_args[] = {
|
|
{ .name = "c", .type = RZ_CMD_ARG_TYPE_CMD },
|
|
{ 0 },
|
|
};
|
|
static const RzCmdDescHelp cmd_help = {
|
|
.summary = "cmd help",
|
|
.args = cmd_args,
|
|
};
|
|
static const RzCmdDescArg cmd_last_args[] = {
|
|
{ .name = "c", .type = RZ_CMD_ARG_TYPE_CMD, .flags = RZ_CMD_ARG_FLAG_LAST },
|
|
{ 0 },
|
|
};
|
|
static const RzCmdDescHelp cmd_last_help = {
|
|
.summary = "cmd_last help",
|
|
.args = cmd_last_args,
|
|
};
|
|
static const RzCmdDescArg cmd_last_opt_args[] = {
|
|
{ .name = "c1", .type = RZ_CMD_ARG_TYPE_CMD },
|
|
{ .name = "c2", .type = RZ_CMD_ARG_TYPE_CMD, .flags = RZ_CMD_ARG_FLAG_LAST, .optional = true },
|
|
{ 0 },
|
|
};
|
|
static const RzCmdDescHelp cmd_last_opt_help = {
|
|
.summary = "cmd_last help",
|
|
.args = cmd_last_opt_args,
|
|
};
|
|
|
|
static RzCmdStatus string_handler(RzCore *core, int argc, const char **argv) {
|
|
return argc == 2 ? RZ_CMD_STATUS_OK : RZ_CMD_STATUS_ERROR;
|
|
}
|
|
|
|
static RzCmdStatus cmd_handler(RzCore *core, int argc, const char **argv) {
|
|
return argc == 2 ? RZ_CMD_STATUS_OK : RZ_CMD_STATUS_ERROR;
|
|
}
|
|
|
|
static RzCmdStatus cmd_last_handler(RzCore *core, int argc, const char **argv) {
|
|
return argc == 2 ? RZ_CMD_STATUS_OK : RZ_CMD_STATUS_ERROR;
|
|
}
|
|
|
|
static RzCmdStatus cmd_last_with_at_handler(RzCore *core, int argc, const char **argv) {
|
|
mu_assert_eq(argc, 2, "just one arg");
|
|
mu_assert_streq(argv[1], "string hello \\@ 0xdeadbeef", "the command should be passed as argument");
|
|
return RZ_CMD_STATUS_OK;
|
|
}
|
|
|
|
static RzCmdStatus cmd_last_opt_handler(RzCore *core, int argc, const char **argv) {
|
|
if (argc >= 2) {
|
|
mu_assert_streq(argv[1], "string 'hello everybody'", "first cmd, non optional, should be string");
|
|
}
|
|
if (argc == 3) {
|
|
mu_assert_streq(argv[2], "cmd string\\ hello", "second cmd, optional, should be cmd");
|
|
RzCmdStatus s = rz_core_cmd0_rzshell(core, argv[2]);
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "cmd_last second arg should be executed well");
|
|
}
|
|
return RZ_CMD_STATUS_OK;
|
|
}
|
|
|
|
static RzCmd *old_rcmd = NULL;
|
|
|
|
static RzCore *fake_core_new(void) {
|
|
RzCore *core = rz_core_new();
|
|
old_rcmd = core->rcmd;
|
|
core->rcmd = rz_core_cmd_new(core, true);
|
|
RzCmdDesc *root = rz_cmd_get_root(core->rcmd);
|
|
rz_cmd_desc_argv_new(core->rcmd, root, "string", string_handler, &string_help);
|
|
rz_cmd_desc_argv_new(core->rcmd, root, "cmd", cmd_handler, &cmd_help);
|
|
rz_cmd_desc_argv_new(core->rcmd, root, "cmd_last", cmd_last_handler, &cmd_last_help);
|
|
rz_cmd_desc_argv_new(core->rcmd, root, "cmd_last_with_at", cmd_last_with_at_handler, &cmd_last_help);
|
|
rz_cmd_desc_argv_new(core->rcmd, root, "cmd_last_opt", cmd_last_opt_handler, &cmd_last_opt_help);
|
|
return core;
|
|
}
|
|
|
|
static void fake_core_free(RzCore *core) {
|
|
rz_cmd_free(core->rcmd);
|
|
core->rcmd = old_rcmd;
|
|
rz_core_free(core);
|
|
}
|
|
|
|
static bool test_arg_cmd(void) {
|
|
RzCore *core = fake_core_new();
|
|
RzCmdStatus s = rz_core_cmd0_rzshell(core, "cmd \"string hello\"");
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "argument cmd is passed");
|
|
fake_core_free(core);
|
|
mu_end;
|
|
}
|
|
|
|
static bool test_arg_cmd_last(void) {
|
|
RzCore *core = fake_core_new();
|
|
RzCmdStatus s = rz_core_cmd0_rzshell(core, "cmd_last string hello");
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "argument cmd is passed as a single arg");
|
|
fake_core_free(core);
|
|
mu_end;
|
|
}
|
|
|
|
static bool test_arg_cmd_last_with_at(void) {
|
|
RzCore *core = fake_core_new();
|
|
RzCmdStatus s = rz_core_cmd0_rzshell(core, "cmd_last_with_at string hello \\@ 0xdeadbeef");
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "argument cmd is passed as a single arg");
|
|
fake_core_free(core);
|
|
mu_end;
|
|
}
|
|
|
|
static bool test_arg_cmd_last_opt(void) {
|
|
RzCore *core = fake_core_new();
|
|
RzCmdStatus s = rz_core_cmd0_rzshell(core, "cmd_last_opt \"string 'hello everybody'\" cmd 'string hello'");
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "argument cmd is passed as a single arg");
|
|
s = rz_core_cmd0_rzshell(core, "cmd_last_opt \"string 'hello everybody'\"");
|
|
mu_assert_eq(s, RZ_CMD_STATUS_OK, "argument cmd is passed as a single arg");
|
|
fake_core_free(core);
|
|
mu_end;
|
|
}
|
|
|
|
int all_tests() {
|
|
mu_run_test(test_arg_cmd);
|
|
mu_run_test(test_arg_cmd_last);
|
|
mu_run_test(test_arg_cmd_last_with_at);
|
|
mu_run_test(test_arg_cmd_last_opt);
|
|
return tests_passed != tests_run;
|
|
}
|
|
|
|
mu_main(all_tests)
|