Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This testsuite is for testing SSL connection to OpenBMC |
| 3 | Suite Teardown Delete All Sessions |
| 4 | |
| 5 | Resource ../../lib/rest_client.robot |
| 6 | Resource ../../lib/resource.txt |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 7 | Resource ../../lib/openbmc_ffdc.robot |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 8 | Test Teardown FFDC On Test Case Fail |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 9 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 10 | *** Test Cases *** |
| 11 | Test SSL Connection |
| 12 | [Documentation] This testcase is for testing the SSL connection to the |
| 13 | ... OpenBMC machine. |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 14 | [Tags] Test_SSL_Connection |
George Keishing | 00ea802 | 2016-11-15 00:21:21 -0600 | [diff] [blame] | 15 | Initialize OpenBMC |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | |
| 17 | Test non-SSL Connection to port 80 |
| 18 | [Documentation] This testcase is for test to check OpenBMC machine |
| 19 | ... will not accepts the non-secure connection that is with http to |
| 20 | ... port 80 and expect a connection error |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 21 | [Tags] Test_non_SSL_Connection_to_port_80 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 22 | Create Session openbmc http://${OPENBMC_HOST}/ timeout=3 |
George Keishing | 410b629 | 2016-07-05 10:40:16 -0500 | [diff] [blame] | 23 | Run Keyword And Expect Error ConnectionError* Get Request openbmc /list |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 24 | |
| 25 | Test non-SSL Connection to port 443 |
George Keishing | 4758156 | 2017-01-12 09:12:40 -0600 | [diff] [blame] | 26 | [Documentation] Test that OpenBmc does not accept the non-secure |
| 27 | ... connection with http to port 443 and expect connection error. |
George Keishing | cac24c7 | 2016-09-23 04:44:19 -0500 | [diff] [blame] | 28 | [Tags] Test_non_SSL_Connection_to_port_443 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 29 | Create Session openbmc http://${OPENBMC_HOST}:443/ |
George Keishing | 4758156 | 2017-01-12 09:12:40 -0600 | [diff] [blame] | 30 | Run Keyword And Expect Error ConnectionError* Get Request openbmc /list |