1*** Settings *** 2Documentation Test BMC using https://github.com/DMTF/Redfish-JsonSchema-ResponseValidator 3... DMTF tool. 4 5Library OperatingSystem 6Resource ../../lib/dmtf_tools_utils.robot 7Resource ../../lib/bmc_redfish_resource.robot 8 9*** Variables *** 10 11${DEFAULT_PYTHON} python3 12${rsv_dir_path} Redfish-JsonSchema-ResponseValidator 13${rsv_github_url} https://github.com/DMTF/Redfish-JsonSchema-ResponseValidator.git 14${command_string} ${DEFAULT_PYTHON} ${rsv_dir_path}${/}Redfish-JsonSchema-ResponseValidator.py 15... -r https://${OPENBMC_HOST} -u ${OPENBMC_USERNAME} -p ${OPENBMC_PASSWORD} -S -v 16 17*** Test Case *** 18 19Test BMC Redfish Using Redfish JsonSchema ResponseValidator 20 [Documentation] Check OpenBMC conformance with JsonSchema files at the DMTF site. 21 [Tags] Test_BMC_Redfish_Using_Redfish_JsonSchema_ResponseValidator 22 23 Download DMTF Tool ${rsv_dir_path} ${rsv_github_url} 24 25 Redfish.Login 26 ${url_list}= redfish_utils.List Request /redfish/v1 27 Redfish.Logout 28 29 Shell Cmd mkdir -p logs/ 30 31 Set Test Variable ${test_run_status} ${True} 32 33 :FOR ${url} IN @{url_list} 34 \ ${output}= Run DMTF Tool ${rsv_dir_path} ${command_string} -i ${url} 35 \ ${status}= Run Keyword And Return Status Redfish JsonSchema ResponseValidator Result ${output} 36 \ Run Keyword If ${status} == ${False} Set Test Variable ${test_run_status} ${status} 37 \ Save Logs For Debugging ${status} ${url} 38 39 Run Keyword If ${test_run_status} == ${False} 40 ... Fail Redfish-JsonSchema-ResponseValidator detected errors. 41 42 43*** Keywords *** 44 45Save Logs For Debugging 46 [Documentation] Save validate_errs on errors. 47 [Arguments] ${status} ${url} 48 49 # Description of arguments: 50 # status True/False. 51 # url Redfish resource path (e.g. "/redfish/v1/AccountService"). 52 53 ${validate_errs}= Shell Cmd cat validate_errs 54 Log ${validate_errs} 55 56 # URL /redfish/v1/Managers/bmc strip the last ending string and save off 57 # the logs for debugging "validate_errs_AccountService" and move to logs/. 58 Run Keyword If ${status} == ${False} 59 ... Shell Cmd mv validate_errs logs/validate_errs_${url.rsplit("/")[-1]} 60