mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-27 07:51:38 +00:00

* Use f'' strings instead of .format(). * Correct sequence of imports. * Remove a superfluous import. * Add missing documentation. * Replace yield by return. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
43 lines
1.8 KiB
Python
43 lines
1.8 KiB
Python
# SPDX-License-Identifier: GPL-2.0+
|
|
""" Unit test for UEFI bootmanager
|
|
"""
|
|
|
|
import pytest
|
|
|
|
@pytest.mark.boardspec('sandbox')
|
|
@pytest.mark.buildconfigspec('cmd_efidebug')
|
|
@pytest.mark.buildconfigspec('cmd_bootefi_bootmgr')
|
|
def test_efi_bootmgr(u_boot_console, efi_bootmgr_data):
|
|
""" Unit test for UEFI bootmanager
|
|
The efidebug command is used to set up UEFI load options.
|
|
The bootefi bootmgr loads initrddump.efi as a payload.
|
|
The crc32 of the loaded initrd.img is checked
|
|
|
|
Args:
|
|
u_boot_console -- U-Boot console
|
|
efi_bootmgr_data -- Path to the disk image used for testing.
|
|
"""
|
|
u_boot_console.run_command(cmd = f'host bind 0 {efi_bootmgr_data}')
|
|
|
|
u_boot_console.run_command(cmd = 'efidebug boot add ' \
|
|
'-b 0001 label-1 host 0:1 initrddump.efi ' \
|
|
'-i host 0:1 initrd-1.img -s nocolor')
|
|
u_boot_console.run_command(cmd = 'efidebug boot dump')
|
|
u_boot_console.run_command(cmd = 'efidebug boot order 0001')
|
|
u_boot_console.run_command(cmd = 'bootefi bootmgr')
|
|
response = u_boot_console.run_command(cmd = 'load', wait_for_echo=False)
|
|
assert 'crc32: 0x181464af' in response
|
|
u_boot_console.run_command(cmd = 'exit', wait_for_echo=False)
|
|
|
|
u_boot_console.run_command(cmd = 'efidebug boot add ' \
|
|
'-B 0002 label-2 host 0:1 initrddump.efi ' \
|
|
'-I host 0:1 initrd-2.img -s nocolor')
|
|
u_boot_console.run_command(cmd = 'efidebug boot dump')
|
|
u_boot_console.run_command(cmd = 'efidebug boot order 0002')
|
|
u_boot_console.run_command(cmd = 'bootefi bootmgr')
|
|
response = u_boot_console.run_command(cmd = 'load', wait_for_echo=False)
|
|
assert 'crc32: 0x811d3515' in response
|
|
u_boot_console.run_command(cmd = 'exit', wait_for_echo=False)
|
|
|
|
u_boot_console.run_command(cmd = 'efidebug boot rm 0001')
|
|
u_boot_console.run_command(cmd = 'efidebug boot rm 0002')
|