blob: fdba6ae6ac2356e169c6d4d6609a1f21a43cdfdf [file] [log] [blame]
George Keishing398d9e62019-02-28 05:41:33 -06001*** 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
ganesanbbca06d02023-04-15 10:52:51 +000017${branch_name} main
18
George Keishing398d9e62019-02-28 05:41:33 -060019*** Test Case ***
20
21Test BMC Redfish Using Redfish JsonSchema ResponseValidator
22 [Documentation] Check OpenBMC conformance with JsonSchema files at the DMTF site.
23 [Tags] Test_BMC_Redfish_Using_Redfish_JsonSchema_ResponseValidator
24
ganesanbbca06d02023-04-15 10:52:51 +000025 Download DMTF Tool ${rsv_dir_path} ${rsv_github_url} ${branch_name}
George Keishing398d9e62019-02-28 05:41:33 -060026
George Keishing97c93942019-03-04 12:45:07 -060027 Redfish.Login
George Keishing398d9e62019-02-28 05:41:33 -060028 ${url_list}= redfish_utils.List Request /redfish/v1
George Keishing97c93942019-03-04 12:45:07 -060029 Redfish.Logout
George Keishing398d9e62019-02-28 05:41:33 -060030
31 Shell Cmd mkdir -p logs/
32
George Keishing7a85ba32019-03-15 07:06:09 -050033 Set Test Variable ${test_run_status} ${True}
34
Sushma M Md27fc312020-06-19 08:26:50 -050035 FOR ${url} IN @{url_list}
George Keishing899ae012022-03-25 10:16:41 -050036 ${rc} ${output}= Run DMTF Tool ${rsv_dir_path} ${command_string} -i ${url}
Sushma M Md27fc312020-06-19 08:26:50 -050037 ${status}= Run Keyword And Return Status Redfish JsonSchema ResponseValidator Result ${output}
38 Run Keyword If ${status} == ${False} Set Test Variable ${test_run_status} ${status}
39 Save Logs For Debugging ${status} ${url}
40 END
George Keishing398d9e62019-02-28 05:41:33 -060041
42 Run Keyword If ${test_run_status} == ${False}
43 ... Fail Redfish-JsonSchema-ResponseValidator detected errors.
44
45
46*** Keywords ***
47
48Save Logs For Debugging
49 [Documentation] Save validate_errs on errors.
50 [Arguments] ${status} ${url}
51
52 # Description of arguments:
53 # status True/False.
54 # url Redfish resource path (e.g. "/redfish/v1/AccountService").
55
56 ${validate_errs}= Shell Cmd cat validate_errs
57 Log ${validate_errs}
58
ganesanb4d430282023-04-27 14:33:23 +000059 # URL /redfish/v1/Managers/${MANAGER_ID} strip the last ending string and save off
George Keishing398d9e62019-02-28 05:41:33 -060060 # the logs for debugging "validate_errs_AccountService" and move to logs/.
61 Run Keyword If ${status} == ${False}
62 ... Shell Cmd mv validate_errs logs/validate_errs_${url.rsplit("/")[-1]}