Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | |
| 3 | Documentation Module to test PLDM FRU (Field Replaceable Unit) commands. |
| 4 | |
| 5 | Library ../lib/pldm_utils.py |
| 6 | Variables ../data/pldm_variables.py |
| 7 | Resource ../lib/openbmc_ffdc.robot |
| 8 | |
| 9 | Test Setup Printn |
| 10 | Test Teardown FFDC On Test Case Fail |
| 11 | |
| 12 | *** Test Cases *** |
| 13 | |
| 14 | Verify GetFruRecordTableMetadata |
George Keishing | c7ff1cd | 2020-02-27 07:04:58 -0600 | [diff] [blame] | 15 | [Documentation] Verify get fru record table meta data response message. |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 16 | [Tags] Verify_GetFruRecordTableMetadata |
| 17 | |
| 18 | # pldm_output: |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 19 | # [frudatamajorversion]: 1 |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 20 | # [frudataminorversion]: 0 |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 21 | # [frutablemaximumsize]: 4294967295 |
Sridevi Ramesh | 8bb2f5e | 2020-02-27 07:19:39 -0600 | [diff] [blame] | 22 | # [frutablelength]: 60 |
| 23 | # [total_number_of_record_set_identifiers_in_table]: 1 |
| 24 | # [total_number_of_records_in_table]: 1 |
Sridevi Ramesh | fe52e40 | 2020-02-05 00:15:24 -0600 | [diff] [blame] | 25 | |
| 26 | ${pldm_output}= Pldmtool fru GetFruRecordTableMetadata |
| 27 | Rprint Vars pldm_output |
Sridevi Ramesh | 8bb2f5e | 2020-02-27 07:19:39 -0600 | [diff] [blame] | 28 | |
| 29 | Valid Value pldm_output['frudatamajorversion'] ['1'] |
| 30 | Valid Value pldm_output['frudataminorversion'] ['0'] |
| 31 | Valid Value pldm_output['frutablemaximumsize'] ['4294967295'] |
| 32 | Valid Range ${pldm_output['frutablelength']} 1 |
| 33 | Valid Range ${pldm_output['total_number_of_records_in_table']} 1 |
| 34 | Valid Range ${pldm_output['total_number_of_record_set_identifiers_in_table']} 1 |