blob: 9e4096699b25905154b9a2297a8ff4a4c9f132a4 [file] [log] [blame]
George Keishinga47c5d32017-01-09 09:03:17 -06001*** Settings ***
2Documentation Set metadata for test suite.
3
4Library SSHLibrary
5Resource ../lib/connection_client.robot
6Resource ../lib/rest_client.robot
George Keishing847a7bf2017-02-09 11:39:47 -06007Resource ../lib/utils.robot
Sweta Potthuricd966342017-09-06 03:41:32 -05008Resource ../lib/code_update_utils.robot
George Keishinga47c5d32017-01-09 09:03:17 -06009
10Suite Setup System Driver Data
11
12*** Variables ***
13
14${DRIVER_CMD} cat /etc/os-release | grep ^VERSION_ID=
15
16*** Keyword ***
17
18System Driver Data
George Keishingfb762032017-11-14 11:18:21 -060019 [Documentation] System driver information and enable defaults settings.
Vijay1a52c992017-09-19 08:37:26 -050020 Run Keyword And Ignore Error Clear System Entry From Knownhosts
George Keishing847a7bf2017-02-09 11:39:47 -060021 Open Connection And Log In
22 Run Keyword And Ignore Error Log BMC Driver Details
23 Run Keyword And Ignore Error Log PNOR Driver Details
24 Run Keyword And Ignore Error Log BMC Model
George Keishing7a520222017-02-27 09:44:30 -060025 Run Keyword And Ignore Error Enable Core Dump On BMC
George Keishingef74a8c2017-10-20 10:23:52 -050026 Run Keyword And Ignore Error Set Boot Defaults
George Keishingad55a672017-12-12 12:30:44 -060027 Set BMC Power Policy ${ALWAYS_POWER_OFF}
George Keishing3e28ea32017-12-19 03:13:52 -060028 Run Keyword If ${FIELD_MODE} == ${True}
29 ... Enable Field Mode And Verify Unmount
George Keishing201d8262017-12-19 09:12:25 -060030 Run Keyword And Ignore Error Clear BMC Gard Record
George Keishingef74a8c2017-10-20 10:23:52 -050031
32Set Boot Defaults
33 Set Control Boot Mode ${CONTROL_HOST_URI}/boot ${BOOT_MODE_REGULAR}
34 Set Control Boot Mode
35 ... ${CONTROL_HOST_URI}/boot/one_time ${BOOT_MODE_REGULAR}
George Keishinga47c5d32017-01-09 09:03:17 -060036
George Keishing847a7bf2017-02-09 11:39:47 -060037Log BMC Driver Details
George Keishinga47c5d32017-01-09 09:03:17 -060038 [Documentation] Get BMC driver details and log.
39
George Keishinga47c5d32017-01-09 09:03:17 -060040 ${output} ${stderr}= Execute Command ${DRIVER_CMD}
41 ... return_stderr=True
42 Should Be Empty ${stderr}
43 Log ${output}
44 [Return] ${output}
45
George Keishing847a7bf2017-02-09 11:39:47 -060046Log PNOR Driver Details
George Keishinga47c5d32017-01-09 09:03:17 -060047 [Documentation] Get PNOR driver details and log.
George Keishing90ab1772017-02-24 05:40:55 -060048 # Until the new REST interface is available using pflash to
49 # capture the PNOR details.
Sweta Potthuricd966342017-09-06 03:41:32 -050050 ${software}= Get Host Software Objects Details
51 Log ${software}
George Keishing847a7bf2017-02-09 11:39:47 -060052
53Log BMC Model
54 [Documentation] Fetch BMC Model name from system and log.
55 ${bmc_model}= Get BMC System Model
56 Log BMC Model=${bmc_model}