blob: 68a3f892f6babebd8ad4a6dccb1f021be7d34c0a [file] [log] [blame]
Stephen Warren9367d4d2016-01-15 11:15:28 -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 Warren9367d4d2016-01-15 11:15:28 -07003
4# Test basic shell functionality, such as commands separate by semi-colons.
5
Michal Simeke710ab72017-05-15 14:29:02 +02006import pytest
7
8pytestmark = pytest.mark.buildconfigspec('cmd_echo')
9
Stephen Warren9367d4d2016-01-15 11:15:28 -070010def test_shell_execute(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -070011 """Test any shell command."""
Stephen Warren9367d4d2016-01-15 11:15:28 -070012
13 response = u_boot_console.run_command('echo hello')
14 assert response.strip() == 'hello'
15
16def test_shell_semicolon_two(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -070017 """Test two shell commands separate by a semi-colon."""
Stephen Warren9367d4d2016-01-15 11:15:28 -070018
19 cmd = 'echo hello; echo world'
20 response = u_boot_console.run_command(cmd)
21 # This validation method ignores the exact whitespace between the strings
22 assert response.index('hello') < response.index('world')
23
24def test_shell_semicolon_three(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -070025 """Test three shell commands separate by a semi-colon, with variable
26 expansion dependencies between them."""
Stephen Warren9367d4d2016-01-15 11:15:28 -070027
28 cmd = 'setenv list 1; setenv list ${list}2; setenv list ${list}3; ' + \
29 'echo ${list}'
30 response = u_boot_console.run_command(cmd)
31 assert response.strip() == '123'
32 u_boot_console.run_command('setenv list')
33
34def test_shell_run(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -070035 """Test the "run" shell command."""
Stephen Warren9367d4d2016-01-15 11:15:28 -070036
Heinrich Schuchardt6fdee942020-08-05 18:31:42 +020037 u_boot_console.run_command('setenv foo \'setenv monty 1; setenv python 2\'')
Stephen Warren9367d4d2016-01-15 11:15:28 -070038 u_boot_console.run_command('run foo')
Heinrich Schuchardt6fdee942020-08-05 18:31:42 +020039 response = u_boot_console.run_command('echo ${monty}')
Stephen Warren9367d4d2016-01-15 11:15:28 -070040 assert response.strip() == '1'
Heinrich Schuchardt6fdee942020-08-05 18:31:42 +020041 response = u_boot_console.run_command('echo ${python}')
Stephen Warren9367d4d2016-01-15 11:15:28 -070042 assert response.strip() == '2'
43 u_boot_console.run_command('setenv foo')
44 u_boot_console.run_command('setenv monty')
45 u_boot_console.run_command('setenv python')