45 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.9 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')
 | |
| @pytest.mark.singlethread
 | |
| 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')
 |