xref: /openbmc/openbmc-test-automation/ipmi/test_ipmi_fru_device.robot (revision ff3879e015e38f8161b5ad019f2eee569ba992f0)
1*** Settings ***
2Documentation  Test IPMI FRU data.
3
4Resource               ../lib/ipmi_client.robot
5
6*** Variables ***
7
8${FRU_NAME}       dimm01 dimm02 cpu0 cpu1  motherboard
9
10*** Test Cases ***
11
12Test FRU Device Name
13    [Documentation]  Search FRU for device name
14    [Tags]  Test_FRU_Device_Name
15
16    ${output}=  Run External IPMI Standard Command  fru
17    Should Contain  ${output}  ${FRU_NAME}  msg=Fail: Given FRU device ${FRU_NAME} not found
18