blob: 9fe7b6b1ebf6593b81f7a3ae8025c2c325d37b60 [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
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
George Keishing97c93942019-03-04 12:45:07 -060025 Redfish.Login
George Keishing398d9e62019-02-28 05:41:33 -060026 ${url_list}= redfish_utils.List Request /redfish/v1
George Keishing97c93942019-03-04 12:45:07 -060027 Redfish.Logout
George Keishing398d9e62019-02-28 05:41:33 -060028
29 Shell Cmd mkdir -p logs/
30
George Keishing7a85ba32019-03-15 07:06:09 -050031 Set Test Variable ${test_run_status} ${True}
32
George Keishing398d9e62019-02-28 05:41:33 -060033 :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]}