sharath | b0c1f13 | 2019-04-09 19:52:09 +0530 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Testing DCAE Restconf Listener with various event feeds from VoLTE, vDNS, vFW and cCPE use scenarios |
| 3 | Library RequestsLibrary |
| 4 | Library OperatingSystem |
| 5 | Library Collections |
| 6 | Library DcaeLibrary |
| 7 | Resource ./resources/dcae_keywords.robot |
| 8 | Resource ../../common.robot |
| 9 | Test Setup Init RCC |
| 10 | Suite Setup Run keywords Create rcc sessions Create rcc header |
| 11 | Suite Teardown teardown rcc |
| 12 | |
| 13 | *** Variables *** |
| 14 | ${RCC_URL_HTTPS} https://%{RCC_IP}:8443 |
| 15 | ${RCC_URL} http://%{RCC_IP}:8080 |
| 16 | |
| 17 | *** Test Cases *** |
| 18 | Restconf Collector Health Check |
| 19 | [Tags] DCAE-RCC-R1 |
| 20 | [Documentation] Restconf Collector Health Check |
| 21 | ${headers}= Create Dictionary Accept=*/* |
| 22 | ${resp}= Get Request ${suite_dcae_rcc_url_session} /healthcheck headers=${headers} |
| 23 | Should Be Equal As Strings ${resp.status_code} 200 |