Replace 'Trigger Warm Reset' with 'obmc reboot (off)'as it is in org.

Renaming test_warm_reset.robot to test_bmc_reboot.robot.

Resolves openbmc/openbmc-test-automation#953

Change-Id: I43b1073e175f3a3188f9a2a27a1cd921a42b0fbd
Signed-off-by: Sweta Potthuri <spotthur@in.ibm.com>
diff --git a/tests/test_bmc_reboot.robot b/tests/test_bmc_reboot.robot
new file mode 100644
index 0000000..87c05d5
--- /dev/null
+++ b/tests/test_bmc_reboot.robot
@@ -0,0 +1,32 @@
+*** Settings ***
+Documentation           This suite is for testing OCC: Power capping setting
+
+Resource                ../lib/rest_client.robot
+Resource                ../lib/utils.robot
+Resource                ../lib/connection_client.robot
+Resource                ../lib/openbmc_ffdc.robot
+Resource                ../lib/boot_utils.robot
+Resource                ../lib/bmc_ssh_utils.py
+
+Force Tags  bmcreboot
+
+Suite Setup             Open Connection And Log In
+Suite Teardown          Close All Connections
+Test Teardown           FFDC On Test Case Fail
+
+*** Variables ***
+${SYSTEM_SHUTDOWN_TIME}    ${5}
+
+*** Test Cases ***
+
+Test BMC Reboot via REST
+    [Documentation]   This test case is to verify bmc reboot using REST.
+    [Tags]  Test_BMC_Reboot_via_REST
+
+    ${test_file_path}=  Set Variable  /tmp/before_bmcreboot
+    BMC Execute Command  touch ${test_file_path}
+
+    REST OBMC Reboot (off)  stack_mode=normal
+
+    BMC Execute Command  if [ -f ${test_file_path} ] ; then false ; fi
+