blob: 747d52d935a4142af1f816f4473a3c343ede1105 [file] [log] [blame]
Heinrich Schuchardtd828a052017-09-15 10:06:12 +02001# SPDX-License-Identifier: GPL-2.0
Tom Rini10e47792018-05-06 17:58:06 -04002# Copyright (c) 2017, Heinrich Schuchardt <xypron.glpk@gmx.de>
Heinrich Schuchardtd828a052017-09-15 10:06:12 +02003
4# Test efi API implementation
5
6import pytest
7import u_boot_utils
8
9@pytest.mark.buildconfigspec('cmd_bootefi_selftest')
10def test_efi_selftest(u_boot_console):
11 """
12 Run bootefi selftest
13 """
14
Heinrich Schuchardt1dc0a1b2017-10-18 18:13:17 +020015 u_boot_console.run_command(cmd='setenv efi_selftest')
Heinrich Schuchardtd828a052017-09-15 10:06:12 +020016 u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False)
17 m = u_boot_console.p.expect(['Summary: 0 failures', 'Press any key'])
18 if m != 0:
19 raise Exception('Failures occured during the EFI selftest')
20 u_boot_console.run_command(cmd='', wait_for_echo=False, wait_for_prompt=False);
21 m = u_boot_console.p.expect(['resetting', 'U-Boot'])
22 if m != 0:
23 raise Exception('Reset failed during the EFI selftest')
24 u_boot_console.restart_uboot();
Heinrich Schuchardt1dc0a1b2017-10-18 18:13:17 +020025
26@pytest.mark.buildconfigspec('cmd_bootefi_selftest')
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010027@pytest.mark.buildconfigspec('of_control')
28def test_efi_selftest_device_tree(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 '\'device tree\'' in output
32 u_boot_console.run_command(cmd='setenv efi_selftest device tree')
33 u_boot_console.run_command(cmd='setenv -f serial# Testing DT')
34 u_boot_console.run_command(cmd='bootefi selftest ${fdtcontroladdr}', wait_for_prompt=False)
35 m = u_boot_console.p.expect(['serial-number: Testing DT', 'U-Boot'])
36 if m != 0:
37 raise Exception('Reset failed in \'device tree\' test')
38 u_boot_console.restart_uboot();
39
40@pytest.mark.buildconfigspec('cmd_bootefi_selftest')
Heinrich Schuchardt1dc0a1b2017-10-18 18:13:17 +020041def test_efi_selftest_watchdog_reboot(u_boot_console):
42 u_boot_console.run_command(cmd='setenv efi_selftest list')
43 output = u_boot_console.run_command('bootefi selftest')
44 assert '\'watchdog reboot\'' in output
45 u_boot_console.run_command(cmd='setenv efi_selftest watchdog reboot')
46 u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False)
47 m = u_boot_console.p.expect(['resetting', 'U-Boot'])
48 if m != 0:
49 raise Exception('Reset failed in \'watchdog reboot\' test')
50 u_boot_console.restart_uboot();