blob: 0c2e572156c6d577778caac1a05a48d05f1089ce [file] [log] [blame]
*** Settings ***
Documentation This testsuite is for testing boot policy function.
Resource ../lib/rest_client.robot
Resource ../lib/ipmi_client.robot
Resource ../lib/utils.robot
Resource ../lib/openbmc_ffdc.robot
Resource ../lib/state_manager.robot
Resource ../lib/boot_utils.robot
Suite Setup Test Suite Setup
Test Setup Test Init Setup
Test Teardown FFDC On Test Case Fail
Suite Teardown Restore Boot Settings
Force Tags boot_policy_test
*** Variables ***
${stack_mode} skip
${HOST_SETTINGS} ${SETTINGS_URI}host0
*** Test Cases ***
Set Boot Policy To ONETIME via REST
[Documentation] Set boot policy to ONETIME using REST URI and verify
... using ipmitool.
[Tags] Set_Boot_Policy_To_ONETIME_via_REST
Set Boot Policy ONETIME
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} ONETIME
${output}= Run IPMI Standard Command chassis bootparam get 5
Should Contain ${output} Options apply to only next boot
Set Boot Policy To PERMANENT via REST
[Documentation] Set boot policy to PERMANENT via REST URI and verify
... using ipmitool.
[Tags] Set_Boot_Policy_To_PERMANENT_via_REST
Set Boot Policy PERMANENT
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} PERMANENT
${output}= Run IPMI Standard Command chassis bootparam get 5
Should Contain ${output} Options apply to all future boots
Set Boot Policy To ONETIME via IPMITOOL
[Documentation] Set boot policy to ONETIME via ipmitool and verify
... using REST URI.
[Tags] Set_Boot_Policy_To_ONETIME_via_IPMITOOL
Run IPMI command 0x0 0x8 0x05 0x80 0x00 0x00 0x00 0x00
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} ONETIME
${output}= Run IPMI Standard Command chassis bootparam get 5
Should Contain ${output} Options apply to only next boot
Set Boot Policy To PERMANENT via IPMITOOL
[Documentation] Set boot policy to PERMANENT via ipmitool and verify
... using REST URI.
[Tags] Set_Boot_Policy_To_PERMANENT_via_IPMITOOL
Run IPMI command 0x0 0x8 0x05 0xC0 0x00 0x00 0x00 0x00
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} PERMANENT
${output}= Run IPMI Standard Command chassis bootparam get 5
Should Contain ${output} Options apply to all future boots
Test Boot Order via REST
[Documentation] Set boot policy to PERMANENT and boot device to CDROM
... and verify that the order doesn't change post power on.
[Tags] chassisboot Test_Boot_Order_via_REST
Initiate Power Off
Set Boot Policy PERMANENT
Set Boot Device CDROM
Initiate Host Boot
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} PERMANENT
${flag}= Read Attribute ${HOST_SETTINGS} boot_flags
Should Be Equal ${flag} CDROM
Persist ONETIME Boot Policy After Reset
[Documentation] Verify ONETIME boot policy order does not change
... on warm reset.
[Tags] chassisboot Persist_ONETIME_Boot_Policy_After_Reset
Initiate Host Boot
Set Boot Policy ONETIME
Set Boot Device Network
Trigger Warm Reset
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} ONETIME
${flag}= Read Attribute ${HOST_SETTINGS} boot_flags
Should Be Equal ${flag} Network
Persist PERMANENT Boot Policy After Reset
[Documentation] Verify PERMANENT boot policy order does not change
... on warm reset.
[Tags] chassisboot Persist_PERMANENT_Boot_Policy_After_Reset
Initiate Host Boot
Set Boot Policy PERMANENT
Set Boot Device CDROM
Trigger Warm Reset
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Be Equal ${boot} PERMANENT
${flag}= Read Attribute ${HOST_SETTINGS} boot_flags
Should Be Equal ${flag} CDROM
Set Boot Policy To Invalid Value
[Documentation] This testcase verify that the boot policy doesn't get
... updated with invalid policy supplied by user.
[Tags] Set_Boot_Policy_To_Invalid_Value
Run Keyword and Ignore Error Set Boot Policy abc
${boot}= Read Attribute ${HOST_SETTINGS} boot_policy
Should Not Be Equal ${boot} abc
Verify Boot Mode Persistency After BMC Reboot
[Documentation] Verify boot mode persistency after BMC reboot.
[Tags] Verify_Boot_Mode_Persistency_After_BMC_Reboot
[Teardown] Run Keywords Restore Bootmode Setting
... AND FFDC On Test Case Fail
# Record initial bootmode setting.
${boot_mode}= Read Attribute
... ${CONTROL_HOST_URI}/boot_mode BootMode
Set Suite Variable ${initial_boot_mode} ${boot_mode}
# Set bootmode to non default value.
Set Boot Mode xyz.openbmc_project.Control.Boot.Mode.Modes.Safe
Initiate BMC Reboot
Wait Until Keyword Succeeds 10 min 10 sec Is BMC Ready
${boot_mode_after}= Read Attribute
... ${CONTROL_HOST_URI}/boot_mode BootMode
Should Be Equal As Strings
... ${boot_mode_after} xyz.openbmc_project.Control.Boot.Mode.Modes.Safe
*** Keywords ***
Set Boot Mode
[Arguments] ${args}
${bootmode}= Set Variable ${args}
${valueDict}= Create Dictionary data=${bootmode}
Write Attribute ${CONTROL_HOST_URI}/boot_mode BootMode data=${valueDict}
Set Boot Policy
[Arguments] ${args}
${bootpolicy}= Set Variable ${args}
${valueDict}= create dictionary data=${bootpolicy}
Write Attribute ${HOST_SETTINGS} boot_policy data=${valueDict}
Set Boot Device
[Arguments] ${args}
${bootDevice} = Set Variable ${args}
${valueDict} = create dictionary data=${bootDevice}
Write Attribute ${HOST_SETTINGS} boot_flags data=${valueDict}
Restore Boot Settings
[Documentation] Restore default settings.
Set Boot Policy ONETIME
Set Boot Device Default
Close All Connections
Test Init Setup
[Documentation] Do the initial test setup.
Open Connection And Log In
Initialize DBUS cmd "boot_flags"
Test Suite Setup
[Documentation] Do the initial suite setup.
#Boot Host.
REST Power On
Restore Bootmode Setting
[Documentation] Restore initial bootmode setting.
Set Boot Mode ${initial_boot_mode}