| *** Settings *** |
| |
| Documentation Test dump functionality of OpenBMC. |
| |
| Resource ../lib/openbmc_ffdc.robot |
| Resource ../lib/rest_client.robot |
| Resource ../lib/dump_utils.robot |
| Resource ../lib/boot_utils.robot |
| Resource ../lib/utils.robot |
| Library ../lib/bmc_ssh_utils.py |
| |
| Test Setup Open Connection And Log In |
| Test Teardown Test Teardown Execution |
| |
| *** Test Cases *** |
| |
| Pre Dump BMC Performance Test |
| [Documentation] Check performance of memory, CPU & file system of BMC. |
| [Tags] Pre_Dump_BMC_Performance_Test |
| |
| Open Connection And Log In |
| Check BMC Performance |
| |
| |
| Verify User Initiated BMC Dump When Powered Off |
| [Documentation] Create user initiated BMC dump at host off state and |
| ... verify dump entry for it. |
| [Tags] Verify_User_Initiated_BMC_Dump_When_Powered_Off |
| |
| REST Power Off stack_mode=skip quiet=1 |
| ${dump_id}= Create User Initiated Dump |
| Check Existence of BMC Dump file ${dump_id} |
| |
| Verify Dump Persistency On Service Restart |
| [Documentation] Create user dump, restart BMC service and verify dump |
| ... persistency. |
| [Tags] Verify_Dump_Persistency_On_Service_Restart |
| |
| Delete All BMC Dump |
| ${dump_id}= Create User Initiated Dump |
| BMC Execute Command |
| ... systemctl restart xyz.openbmc_project.Dump.Manager.service |
| Sleep 10s reason=Wait for BMC dump service to restart properly. |
| |
| ${resp}= OpenBMC Get Request ${DUMP_ENTRY_URI}/list |
| Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| Check Existence of BMC Dump file ${dump_id} |
| |
| |
| Verify Dump Persistency On Reset |
| [Documentation] Create user dump, reset BMC and verify dump persistency. |
| [Tags] Verify_Dump_Persistency_On_Reset |
| |
| Delete All BMC Dump |
| ${dump_id}= Create User Initiated Dump |
| OBMC Reboot (off) |
| ${resp}= OpenBMC Get Request ${DUMP_ENTRY_URI}/list |
| Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| Check Existence of BMC Dump file ${dump_id} |
| |
| |
| Delete User Initiated BMC Dump And Verify |
| [Documentation] Delete user initiated dump and verify. |
| [Tags] Delete_User_Initiated_Dump_And_Verify |
| |
| ${dump_id}= Create User Initiated Dump |
| Check Existence of BMC Dump file ${dump_id} |
| |
| Delete BMC Dump ${dump_id} |
| |
| |
| Verify User Initiated Dump Size |
| [Documentation] Verify user Initiated BMC dump size is under 200k. |
| [Tags] Verify_User_Initiated_Dump_Size |
| |
| ${dump_id}= Create User Initiated Dump |
| |
| ${dump_size}= Read Attribute ${DUMP_ENTRY_URI}/${dump_id} Size |
| # Max size for dump is 200k = 200x1024 |
| Should Be True 0 < ${dump_size} < 204800 |
| Check Existence of BMC Dump file ${dump_id} |
| |
| |
| Create Two User Initiated Dump And Delete One |
| [Documentation] Create two dumps and delete the first. |
| [Tags] Create_Two_User_Initiated_Dump_And_Delete_One |
| |
| ${dump_id_1}= Create User Initiated Dump |
| ${dump_id_2}= Create User Initiated Dump |
| |
| Delete BMC Dump ${dump_id_1} |
| |
| ${resp}= OpenBMC Get Request ${DUMP_ENTRY_URI}/${dump_id_1} |
| Should Be Equal As Strings ${resp.status_code} ${HTTP_NOT_FOUND} |
| |
| ${resp}= OpenBMC Get Request ${DUMP_ENTRY_URI}/${dump_id_2} |
| Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| Check Existence of BMC Dump file ${dump_id_2} |
| |
| |
| Create And Delete BMC Dump Multiple Times |
| [Documentation] Create and delete BMC dump multiple times. |
| [Tags] Create_And_Delete_BMC_Dump_Multiple_Times |
| |
| :FOR ${INDEX} IN RANGE 1 5 |
| \ ${dump_id}= Create User Initiated Dump |
| \ Delete BMC Dump ${dump_id} |
| |
| |
| Delete All BMC Dumps And Verify |
| [Documentation] Delete all BMC dumps and verify. |
| [Tags] Delete_All_BMC_Dumps_And_Verify |
| |
| # Create some dump. |
| Create User Initiated Dump |
| Create User Initiated Dump |
| |
| Delete All BMC Dump |
| ${resp}= OpenBMC Get Request ${DUMP_ENTRY_URI}/list |
| Should Be Equal As Strings ${resp.status_code} ${HTTP_NOT_FOUND} |
| |
| |
| Verify User Initiated BMC Dump When Host Booted |
| [Documentation] Create user initiated BMC dump at host booted state and |
| ... verify dump entry for it. |
| [Tags] Verify_User_Initiated_BMC_Dump_When_Host_Booted |
| |
| REST Power On stack_mode=skip quiet=1 |
| Create User Initiated Dump |
| |
| |
| Verify Core Dump Size |
| [Documentation] Verify BMC core dump size is under 200k. |
| [Tags] Verify_Core_Dump_Size |
| |
| Delete All Dumps |
| Trigger Core Dump |
| Wait Until Keyword Succeeds 2 min 10 sec Get Dump Entries |
| |
| ${dump_entries}= Get URL List ${DUMP_ENTRY_URI} |
| ${dump_size}= Read Attribute ${dump_entries[0]} Size |
| |
| # Max size for dump is 200k = 200x1024 |
| Should Be True 0 < ${dump_size} < 204800 msg=Size of dump is incorrect. |
| |
| |
| Post Dump BMC Performance Test |
| [Documentation] Check performance of memory, CPU & file system of BMC. |
| [Tags] Post_Dump_BMC_Performance_Test |
| |
| Open Connection And Log In |
| Check BMC Performance |
| |
| Post Dump Core Dump Check |
| [Documentation] Check core dump existence on BMC after code update. |
| [Tags] Post_Dump_Core_Dump_Check |
| |
| Check For Core Dumps |
| |
| |
| *** Keywords *** |
| |
| Test Teardown Execution |
| [Documentation] Do the post test teardown. |
| |
| Wait Until Keyword Succeeds 3 min 15 sec Verify No Dump In Progress |
| FFDC On Test Case Fail |
| Delete All BMC Dump |
| Close All Connections |