Heinrich Schuchardt | d828a05 | 2017-09-15 10:06:12 +0200 | [diff] [blame] | 1 | # Copyright (c) 2017, Heinrich Schuchardt <xypron.glpk@gmx.de> |
| 2 | # |
| 3 | # SPDX-License-Identifier: GPL-2.0 |
| 4 | |
| 5 | # Test efi API implementation |
| 6 | |
| 7 | import pytest |
| 8 | import u_boot_utils |
| 9 | |
| 10 | @pytest.mark.buildconfigspec('cmd_bootefi_selftest') |
| 11 | def test_efi_selftest(u_boot_console): |
| 12 | """ |
| 13 | Run bootefi selftest |
| 14 | """ |
| 15 | |
Heinrich Schuchardt | 1dc0a1b | 2017-10-18 18:13:17 +0200 | [diff] [blame] | 16 | u_boot_console.run_command(cmd='setenv efi_selftest') |
Heinrich Schuchardt | d828a05 | 2017-09-15 10:06:12 +0200 | [diff] [blame] | 17 | u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False) |
| 18 | m = u_boot_console.p.expect(['Summary: 0 failures', 'Press any key']) |
| 19 | if m != 0: |
| 20 | raise Exception('Failures occured during the EFI selftest') |
| 21 | u_boot_console.run_command(cmd='', wait_for_echo=False, wait_for_prompt=False); |
| 22 | m = u_boot_console.p.expect(['resetting', 'U-Boot']) |
| 23 | if m != 0: |
| 24 | raise Exception('Reset failed during the EFI selftest') |
| 25 | u_boot_console.restart_uboot(); |
Heinrich Schuchardt | 1dc0a1b | 2017-10-18 18:13:17 +0200 | [diff] [blame] | 26 | |
| 27 | @pytest.mark.buildconfigspec('cmd_bootefi_selftest') |
| 28 | def test_efi_selftest_watchdog_reboot(u_boot_console): |
| 29 | u_boot_console.run_command(cmd='setenv efi_selftest list') |
| 30 | output = u_boot_console.run_command('bootefi selftest') |
| 31 | assert '\'watchdog reboot\'' in output |
| 32 | u_boot_console.run_command(cmd='setenv efi_selftest watchdog reboot') |
| 33 | u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False) |
| 34 | m = u_boot_console.p.expect(['resetting', 'U-Boot']) |
| 35 | if m != 0: |
| 36 | raise Exception('Reset failed in \'watchdog reboot\' test') |
| 37 | u_boot_console.restart_uboot(); |