1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2012, The Chromium Authors
*/
#define DEBUG
#include <command.h>
#include <env.h>
#include <log.h>
#include <string.h>
#include <linux/errno.h>
#include <test/cmd.h>
#include <test/ut.h>
static const char test_cmd[] = "setenv list 1\n setenv list ${list}2; "
"setenv list ${list}3\0"
"setenv list ${list}4";
static int command_test(struct unit_test_state *uts)
{
char long_str[CONFIG_SYS_CBSIZE + 42];
printf("%s: Testing commands\n", __func__);
run_command("env default -f -a", 0);
/* commands separated by \n */
run_command_list("setenv list 1\n setenv list ${list}1", -1, 0);
ut_assert(!strcmp("11", env_get("list")));
/* command followed by \n and nothing else */
run_command_list("setenv list 1${list}\n", -1, 0);
ut_assert(!strcmp("111", env_get("list")));
/* a command string with \0 in it. Stuff after \0 should be ignored */
run_command("setenv list", 0);
run_command_list(test_cmd, sizeof(test_cmd), 0);
ut_assert(!strcmp("123", env_get("list")));
/*
* a command list where we limit execution to only the first command
* using the length parameter.
*/
run_command_list("setenv list 1\n setenv list ${list}2; "
"setenv list ${list}3", strlen("setenv list 1"), 0);
ut_assert(!strcmp("1", env_get("list")));
ut_asserteq(1, run_command("false", 0));
ut_assertok(run_command("echo", 0));
ut_asserteq(1, run_command_list("false", -1, 0));
ut_assertok(run_command_list("echo", -1, 0));
#ifdef CONFIG_HUSH_PARSER
run_command("setenv foo 'setenv black 1\nsetenv adder 2'", 0);
run_command("run foo", 0);
ut_assertnonnull(env_get("black"));
ut_asserteq(0, strcmp("1", env_get("black")));
ut_assertnonnull(env_get("adder"));
ut_asserteq(0, strcmp("2", env_get("adder")));
#endif
ut_assertok(run_command("", 0));
ut_assertok(run_command(" ", 0));
ut_asserteq(1, run_command("'", 0));
/* Variadic function test-cases */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-zero-length"
ut_assertok(run_commandf(""));
#pragma GCC diagnostic pop
ut_assertok(run_commandf(" "));
ut_asserteq(1, run_commandf("'"));
ut_assertok(run_commandf("env %s %s", "delete -f", "list"));
/*
* Expected: "## Error: "list" not defined"
* (disabled to avoid pytest bailing out)
*
* ut_asserteq(1, run_commandf("printenv list"));
*/
memset(long_str, 'x', sizeof(long_str));
ut_asserteq(-ENOSPC, run_commandf("Truncation case: %s", long_str));
if (IS_ENABLED(CONFIG_HUSH_PARSER)) {
ut_assertok(run_commandf("env %s %s %s %s", "delete -f",
"adder", "black", "foo"));
ut_assertok(run_commandf(
"setenv foo 'setenv %s 1\nsetenv %s 2'",
"black", "adder"));
ut_assertok(run_command("run foo", 0));
ut_assertnonnull(env_get("black"));
ut_asserteq(0, strcmp("1", env_get("black")));
ut_assertnonnull(env_get("adder"));
ut_asserteq(0, strcmp("2", env_get("adder")));
}
/* Clean up before exit */
ut_assertok(run_command("env default -f -a", 0));
/* put back the FDT environment */
ut_assertok(env_set("from_fdt", "yes"));
printf("%s: Everything went swimmingly\n", __func__);
return 0;
}
CMD_TEST(command_test, 0);
|