Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -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 | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 3 | |
| 4 | # Test basic shell functionality, such as commands separate by semi-colons. |
| 5 | |
Michal Simek | e710ab7 | 2017-05-15 14:29:02 +0200 | [diff] [blame] | 6 | import pytest |
| 7 | |
| 8 | pytestmark = pytest.mark.buildconfigspec('cmd_echo') |
| 9 | |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 10 | def test_shell_execute(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 11 | """Test any shell command.""" |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 12 | |
| 13 | response = u_boot_console.run_command('echo hello') |
| 14 | assert response.strip() == 'hello' |
| 15 | |
| 16 | def test_shell_semicolon_two(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 17 | """Test two shell commands separate by a semi-colon.""" |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 18 | |
| 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 | |
| 24 | def test_shell_semicolon_three(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 25 | """Test three shell commands separate by a semi-colon, with variable |
| 26 | expansion dependencies between them.""" |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 27 | |
| 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 | |
| 34 | def test_shell_run(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 35 | """Test the "run" shell command.""" |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 36 | |
Heinrich Schuchardt | 6fdee94 | 2020-08-05 18:31:42 +0200 | [diff] [blame] | 37 | u_boot_console.run_command('setenv foo \'setenv monty 1; setenv python 2\'') |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 38 | u_boot_console.run_command('run foo') |
Heinrich Schuchardt | 6fdee94 | 2020-08-05 18:31:42 +0200 | [diff] [blame] | 39 | response = u_boot_console.run_command('echo ${monty}') |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 40 | assert response.strip() == '1' |
Heinrich Schuchardt | 6fdee94 | 2020-08-05 18:31:42 +0200 | [diff] [blame] | 41 | response = u_boot_console.run_command('echo ${python}') |
Stephen Warren | 9367d4d | 2016-01-15 11:15:28 -0700 | [diff] [blame] | 42 | 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') |