blob: d117921a6ac7c024691fe7d5c8c94f3d28140775 [file] [log] [blame]
Stephen Warren47a2ca72016-01-15 11:15:29 -07001# SPDX-License-Identifier: GPL-2.0
Tom Rini10e47792018-05-06 17:58:06 -04002# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warren47a2ca72016-01-15 11:15:29 -07003
4# Test operation of the "if" shell command.
5
6import os
7import os.path
8import pytest
9
Michal Simeka4eb5f12019-10-10 13:00:38 +020010# TODO: These tests should be converted to a C test.
11# For more information please take a look at the thread
12# https://lists.denx.de/pipermail/u-boot/2019-October/388732.html
13
Michal Simek09766522017-05-18 09:23:14 +020014pytestmark = pytest.mark.buildconfigspec('hush_parser')
15
Stephen Warren47a2ca72016-01-15 11:15:29 -070016# The list of "if test" conditions to test.
17subtests = (
18 # Base if functionality.
19
20 ('true', True),
21 ('false', False),
22
23 # Basic operators.
24
25 ('test aaa = aaa', True),
26 ('test aaa = bbb', False),
27
28 ('test aaa != bbb', True),
29 ('test aaa != aaa', False),
30
31 ('test aaa < bbb', True),
32 ('test bbb < aaa', False),
33
34 ('test bbb > aaa', True),
35 ('test aaa > bbb', False),
36
37 ('test 123 -eq 123', True),
38 ('test 123 -eq 456', False),
39
40 ('test 123 -ne 456', True),
41 ('test 123 -ne 123', False),
42
43 ('test 123 -lt 456', True),
44 ('test 123 -lt 123', False),
45 ('test 456 -lt 123', False),
46
47 ('test 123 -le 456', True),
48 ('test 123 -le 123', True),
49 ('test 456 -le 123', False),
50
51 ('test 456 -gt 123', True),
52 ('test 123 -gt 123', False),
53 ('test 123 -gt 456', False),
54
55 ('test 456 -ge 123', True),
56 ('test 123 -ge 123', True),
57 ('test 123 -ge 456', False),
58
Michal Simeka4eb5f12019-10-10 13:00:38 +020059 # Octal tests
60
61 ('test 010 -eq 010', True),
62 ('test 010 -eq 011', False),
63
64 ('test 010 -ne 011', True),
65 ('test 010 -ne 010', False),
66
67 # Hexadecimal tests
68
69 ('test 0x2000000 -gt 0x2000001', False),
70 ('test 0x2000000 -gt 0x2000000', False),
71 ('test 0x2000000 -gt 0x1ffffff', True),
72
73 # Mixed tests
74
75 ('test 010 -eq 10', False),
76 ('test 010 -ne 10', True),
77 ('test 0xa -eq 10', True),
78 ('test 0xa -eq 012', True),
79
80 ('test 2000000 -gt 0x1ffffff', False),
81 ('test 0x2000000 -gt 1ffffff', True),
82 ('test 0x2000000 -lt 1ffffff', False),
83 ('test 0x2000000 -eq 2000000', False),
84 ('test 0x2000000 -ne 2000000', True),
85
Stephen Warren47a2ca72016-01-15 11:15:29 -070086 ('test -z ""', True),
87 ('test -z "aaa"', False),
88
89 ('test -n "aaa"', True),
90 ('test -n ""', False),
91
92 # Inversion of simple tests.
93
94 ('test ! aaa = aaa', False),
95 ('test ! aaa = bbb', True),
96 ('test ! ! aaa = aaa', True),
97 ('test ! ! aaa = bbb', False),
98
99 # Binary operators.
100
101 ('test aaa != aaa -o bbb != bbb', False),
102 ('test aaa != aaa -o bbb = bbb', True),
103 ('test aaa = aaa -o bbb != bbb', True),
104 ('test aaa = aaa -o bbb = bbb', True),
105
106 ('test aaa != aaa -a bbb != bbb', False),
107 ('test aaa != aaa -a bbb = bbb', False),
108 ('test aaa = aaa -a bbb != bbb', False),
109 ('test aaa = aaa -a bbb = bbb', True),
110
111 # Inversion within binary operators.
112
113 ('test ! aaa != aaa -o ! bbb != bbb', True),
114 ('test ! aaa != aaa -o ! bbb = bbb', True),
115 ('test ! aaa = aaa -o ! bbb != bbb', True),
116 ('test ! aaa = aaa -o ! bbb = bbb', False),
117
118 ('test ! ! aaa != aaa -o ! ! bbb != bbb', False),
119 ('test ! ! aaa != aaa -o ! ! bbb = bbb', True),
120 ('test ! ! aaa = aaa -o ! ! bbb != bbb', True),
121 ('test ! ! aaa = aaa -o ! ! bbb = bbb', True),
122
123 # -z operator.
124
125 ('test -z "$ut_var_nonexistent"', True),
126 ('test -z "$ut_var_exists"', False),
127)
128
129def exec_hush_if(u_boot_console, expr, result):
Stephen Warren75e731e2016-01-26 13:41:30 -0700130 """Execute a shell "if" command, and validate its result."""
Stephen Warren47a2ca72016-01-15 11:15:29 -0700131
Stephen Warren76466242016-02-15 17:40:34 -0700132 config = u_boot_console.config.buildconfig
133 maxargs = int(config.get('config_sys_maxargs', '0'))
134 args = len(expr.split(' ')) - 1
135 if args > maxargs:
136 u_boot_console.log.warning('CONFIG_SYS_MAXARGS too low; need ' +
137 str(args))
138 pytest.skip()
139
Stephen Warren47a2ca72016-01-15 11:15:29 -0700140 cmd = 'if ' + expr + '; then echo true; else echo false; fi'
141 response = u_boot_console.run_command(cmd)
142 assert response.strip() == str(result).lower()
143
Stephen Warren47a2ca72016-01-15 11:15:29 -0700144def test_hush_if_test_setup(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -0700145 """Set up environment variables used during the "if" tests."""
Stephen Warren47a2ca72016-01-15 11:15:29 -0700146
147 u_boot_console.run_command('setenv ut_var_nonexistent')
148 u_boot_console.run_command('setenv ut_var_exists 1')
149
Michal Simek240a0362017-05-18 09:23:15 +0200150@pytest.mark.buildconfigspec('cmd_echo')
Stephen Warren47a2ca72016-01-15 11:15:29 -0700151@pytest.mark.parametrize('expr,result', subtests)
152def test_hush_if_test(u_boot_console, expr, result):
Stephen Warren75e731e2016-01-26 13:41:30 -0700153 """Test a single "if test" condition."""
Stephen Warren47a2ca72016-01-15 11:15:29 -0700154
155 exec_hush_if(u_boot_console, expr, result)
156
Stephen Warren47a2ca72016-01-15 11:15:29 -0700157def test_hush_if_test_teardown(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -0700158 """Clean up environment variables used during the "if" tests."""
Stephen Warren47a2ca72016-01-15 11:15:29 -0700159
160 u_boot_console.run_command('setenv ut_var_exists')
161
Stephen Warren47a2ca72016-01-15 11:15:29 -0700162# We might test this on real filesystems via UMS, DFU, 'save', etc.
163# Of those, only UMS currently allows file removal though.
Michal Simek240a0362017-05-18 09:23:15 +0200164@pytest.mark.buildconfigspec('cmd_echo')
Stephen Warren47a2ca72016-01-15 11:15:29 -0700165@pytest.mark.boardspec('sandbox')
166def test_hush_if_test_host_file_exists(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -0700167 """Test the "if test -e" shell command."""
Stephen Warren47a2ca72016-01-15 11:15:29 -0700168
169 test_file = u_boot_console.config.result_dir + \
170 '/creating_this_file_breaks_u_boot_tests'
171
172 try:
173 os.unlink(test_file)
174 except:
175 pass
176 assert not os.path.exists(test_file)
177
178 expr = 'test -e hostfs - ' + test_file
179 exec_hush_if(u_boot_console, expr, False)
180
181 try:
Paul Burton92f0ac42017-09-14 14:34:49 -0700182 with open(test_file, 'wb'):
Stephen Warren47a2ca72016-01-15 11:15:29 -0700183 pass
184 assert os.path.exists(test_file)
185
186 expr = 'test -e hostfs - ' + test_file
187 exec_hush_if(u_boot_console, expr, True)
188 finally:
189 os.unlink(test_file)
190
191 expr = 'test -e hostfs - ' + test_file
192 exec_hush_if(u_boot_console, expr, False)