Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 3 | |
| 4 | # Test operation of the "if" shell command. |
| 5 | |
| 6 | import os |
| 7 | import os.path |
| 8 | import pytest |
| 9 | |
Michal Simek | a4eb5f1 | 2019-10-10 13:00:38 +0200 | [diff] [blame^] | 10 | # 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 Simek | 0976652 | 2017-05-18 09:23:14 +0200 | [diff] [blame] | 14 | pytestmark = pytest.mark.buildconfigspec('hush_parser') |
| 15 | |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 16 | # The list of "if test" conditions to test. |
| 17 | subtests = ( |
| 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 Simek | a4eb5f1 | 2019-10-10 13:00:38 +0200 | [diff] [blame^] | 59 | # 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 Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 86 | ('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 | |
| 129 | def exec_hush_if(u_boot_console, expr, result): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 130 | """Execute a shell "if" command, and validate its result.""" |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 131 | |
Stephen Warren | 7646624 | 2016-02-15 17:40:34 -0700 | [diff] [blame] | 132 | 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 Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 140 | 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 Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 144 | def test_hush_if_test_setup(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 145 | """Set up environment variables used during the "if" tests.""" |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 146 | |
| 147 | u_boot_console.run_command('setenv ut_var_nonexistent') |
| 148 | u_boot_console.run_command('setenv ut_var_exists 1') |
| 149 | |
Michal Simek | 240a036 | 2017-05-18 09:23:15 +0200 | [diff] [blame] | 150 | @pytest.mark.buildconfigspec('cmd_echo') |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 151 | @pytest.mark.parametrize('expr,result', subtests) |
| 152 | def test_hush_if_test(u_boot_console, expr, result): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 153 | """Test a single "if test" condition.""" |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 154 | |
| 155 | exec_hush_if(u_boot_console, expr, result) |
| 156 | |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 157 | def test_hush_if_test_teardown(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 158 | """Clean up environment variables used during the "if" tests.""" |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 159 | |
| 160 | u_boot_console.run_command('setenv ut_var_exists') |
| 161 | |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 162 | # We might test this on real filesystems via UMS, DFU, 'save', etc. |
| 163 | # Of those, only UMS currently allows file removal though. |
Michal Simek | 240a036 | 2017-05-18 09:23:15 +0200 | [diff] [blame] | 164 | @pytest.mark.buildconfigspec('cmd_echo') |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 165 | @pytest.mark.boardspec('sandbox') |
| 166 | def test_hush_if_test_host_file_exists(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 167 | """Test the "if test -e" shell command.""" |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 168 | |
| 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 Burton | 92f0ac4 | 2017-09-14 14:34:49 -0700 | [diff] [blame] | 182 | with open(test_file, 'wb'): |
Stephen Warren | 47a2ca7 | 2016-01-15 11:15:29 -0700 | [diff] [blame] | 183 | 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) |