You've already forked open-source-firmware-validation
mirror of
https://github.com/Dasharo/open-source-firmware-validation.git
synced 2026-03-06 14:51:55 -08:00
f976d349ce
Toe be used with: https://github.com/3mdeb/pikvm-rest-api/pull/19 Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
*** Settings ***
|
|
Documentation This suite verifies the correct operation of keywords
|
|
... reading out the boot manager when populated with multiple
|
|
... entries and must be scroleld through
|
|
|
|
Library Collections
|
|
Library OperatingSystem
|
|
Library Process
|
|
Library String
|
|
Library Telnet timeout=30 seconds connection_timeout=120 seconds
|
|
Library SSHLibrary timeout=90 seconds
|
|
Library RequestsLibrary
|
|
# TODO: maybe have a single file to include if we need to include the same
|
|
# stuff in all test cases
|
|
Resource ../variables.robot
|
|
Resource ../keywords.robot
|
|
Resource ../keys.robot
|
|
|
|
# TODO:
|
|
# - document which setup/teardown keywords to use and what are they doing
|
|
# - go threough them and make sure they are doing what the name suggest (not
|
|
# exactly the case right now)
|
|
Suite Setup Run Keyword
|
|
... Prepare Test Suite
|
|
Suite Teardown Run Keyword
|
|
... Log Out And Close Connection
|
|
|
|
|
|
*** Test Cases ***
|
|
Enter Boot Menu Tianocore
|
|
[Documentation] Test Enter Boot Menu kwd
|
|
Prepare EFI Partition With System Files
|
|
Power On
|
|
${boot_menu}= Enter Boot Menu Tianocore And Return Construction
|
|
${no_entries}= Get Length ${boot_menu}
|
|
Should Be True ${no_entries} > 11
|