Blame view

test/command_ut.c 1.83 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
a72007d99   Simon Glass   sandbox: Add basi...
2
3
  /*
   * Copyright (c) 2012, The Chromium Authors
a72007d99   Simon Glass   sandbox: Add basi...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
   */
  
  #define DEBUG
  
  #include <common.h>
  
  static const char test_cmd[] = "setenv list 1
   setenv list ${list}2; "
  		"setenv list ${list}3\0"
  		"setenv list ${list}4";
  
  static int do_ut_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  {
  	printf("%s: Testing commands
  ", __func__);
674867288   Stephen Warren   unit-test: fix 'e...
19
  	run_command("env default -f -a", 0);
a72007d99   Simon Glass   sandbox: Add basi...
20

a72007d99   Simon Glass   sandbox: Add basi...
21
22
23
24
  	/* commands separated by 
   */
  	run_command_list("setenv list 1
   setenv list ${list}1", -1, 0);
00caae6d4   Simon Glass   env: Rename geten...
25
  	assert(!strcmp("11", env_get("list")));
a72007d99   Simon Glass   sandbox: Add basi...
26
27
28
29
30
  
  	/* command followed by 
   and nothing else */
  	run_command_list("setenv list 1${list}
  ", -1, 0);
00caae6d4   Simon Glass   env: Rename geten...
31
  	assert(!strcmp("111", env_get("list")));
a72007d99   Simon Glass   sandbox: Add basi...
32

a72007d99   Simon Glass   sandbox: Add basi...
33
34
35
  	/* 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);
00caae6d4   Simon Glass   env: Rename geten...
36
  	assert(!strcmp("123", env_get("list")));
a72007d99   Simon Glass   sandbox: Add basi...
37
38
39
40
41
42
43
44
  
  	/*
  	 * a command list where we limit execution to only the first command
  	 * using the length parameter.
  	 */
  	run_command_list("setenv list 1
   setenv list ${list}2; "
  		"setenv list ${list}3", strlen("setenv list 1"), 0);
00caae6d4   Simon Glass   env: Rename geten...
45
  	assert(!strcmp("1", env_get("list")));
a72007d99   Simon Glass   sandbox: Add basi...
46

93ce7561c   Simon Glass   Add final result ...
47
48
49
50
  	assert(run_command("false", 0) == 1);
  	assert(run_command("echo", 0) == 0);
  	assert(run_command_list("false", -1, 0) == 1);
  	assert(run_command_list("echo", -1, 0) == 0);
f1f9d4fac   Masahiro Yamada   hush: complete re...
51
  #ifdef CONFIG_HUSH_PARSER
87b6398b4   Simon Glass   cli: hush: Adjust...
52
53
54
  	run_command("setenv foo 'setenv black 1
  setenv adder 2'", 0);
  	run_command("run foo", 0);
00caae6d4   Simon Glass   env: Rename geten...
55
56
57
58
  	assert(env_get("black") != NULL);
  	assert(!strcmp("1", env_get("black")));
  	assert(env_get("adder") != NULL);
  	assert(!strcmp("2", env_get("adder")));
f2afe7019   Stephen Warren   unit-test: add lo...
59
  #endif
484408fb5   Rabin Vincent   hush: return cons...
60
61
  	assert(run_command("", 0) == 0);
  	assert(run_command(" ", 0) == 0);
2302b3ab8   Rabin Vincent   hush: make run_co...
62
  	assert(run_command("'", 0) == 1);
a72007d99   Simon Glass   sandbox: Add basi...
63
64
65
66
67
68
69
70
71
72
  	printf("%s: Everything went swimmingly
  ", __func__);
  	return 0;
  }
  
  U_BOOT_CMD(
  	ut_cmd,	5,	1,	do_ut_cmd,
  	"Very basic test of command parsers",
  	""
  );