blob: 54eb559ea14d7f5fbb4118c897cd56af9071755d [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 Keishingfb762032017-11-14 11:18:21 -060027 Enable Field Mode And Verify Unmount
George Keishingef74a8c2017-10-20 10:23:52 -050028
29Set Boot Defaults
30 Set Control Boot Mode ${CONTROL_HOST_URI}/boot ${BOOT_MODE_REGULAR}
31 Set Control Boot Mode
32 ... ${CONTROL_HOST_URI}/boot/one_time ${BOOT_MODE_REGULAR}
George Keishinga47c5d32017-01-09 09:03:17 -060033
George Keishing847a7bf2017-02-09 11:39:47 -060034Log BMC Driver Details
George Keishinga47c5d32017-01-09 09:03:17 -060035 [Documentation] Get BMC driver details and log.
36
George Keishinga47c5d32017-01-09 09:03:17 -060037 ${output} ${stderr}= Execute Command ${DRIVER_CMD}
38 ... return_stderr=True
39 Should Be Empty ${stderr}
40 Log ${output}
41 [Return] ${output}
42
George Keishing847a7bf2017-02-09 11:39:47 -060043Log PNOR Driver Details
George Keishinga47c5d32017-01-09 09:03:17 -060044 [Documentation] Get PNOR driver details and log.
George Keishing90ab1772017-02-24 05:40:55 -060045 # Until the new REST interface is available using pflash to
46 # capture the PNOR details.
Sweta Potthuricd966342017-09-06 03:41:32 -050047 ${software}= Get Host Software Objects Details
48 Log ${software}
George Keishing847a7bf2017-02-09 11:39:47 -060049
50Log BMC Model
51 [Documentation] Fetch BMC Model name from system and log.
52 ${bmc_model}= Get BMC System Model
53 Log BMC Model=${bmc_model}