obmc_boot_test.py RESTORE_LAST_STATE and PDU validation.
- Added code to 'Set BMC Power Policy RESTORE_LAST_STATE' at the
beginning of each test run.
- Added code to validate PDU parameters if any boot tests are
specified that require them.
Change-Id: If0f1b4a6bdfeee06530de9d660cb174e313c23a9
Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/data/boot_lists/PDU_reboot b/data/boot_lists/PDU_reboot
new file mode 100755
index 0000000..5480d6a
--- /dev/null
+++ b/data/boot_lists/PDU_reboot
@@ -0,0 +1,6 @@
+APOR
+APOR (mfg)
+PDU AC Cycle (run)
+PDU AC Cycle (run) (mfg)
+PDU AC Cycle (off)
+PDU AC Cycle (off) (mfg)
diff --git a/lib/obmc_boot_test.py b/lib/obmc_boot_test.py
index 969e23b..8f76776 100755
--- a/lib/obmc_boot_test.py
+++ b/lib/obmc_boot_test.py
@@ -206,6 +206,11 @@
grp.rqprint_pgm_header()
+ cmd_buf = ["Set BMC Power Policy", "RESTORE_LAST_STATE"]
+ grp.rpissuing_keyword(cmd_buf, test_mode)
+ if not test_mode:
+ BuiltIn().run_keyword(*cmd_buf)
+
initial_plug_in_setup()
plug_in_setup()
@@ -269,6 +274,16 @@
valid_boot_list(boot_list, valid_boot_types)
valid_boot_list(boot_stack, valid_boot_types)
+ selected_PDU_boots = list(set(boot_list + boot_stack) &
+ set(boot_lists['PDU_reboot']))
+
+ if len(selected_PDU_boots) > 0 and pdu_host == "":
+ error_message = "You have selected the following boots which" +\
+ " require a PDU host but no value for pdu_host:\n"
+ error_message += gp.sprint_var(selected_PDU_boots)
+ error_message += gp.sprint_var(pdu_host, 2)
+ BuiltIn().fail(gp.sprint_error(error_message))
+
return
###############################################################################