Move CSIT to integration/csit repo
[integration/csit.git] / tests / sdnc / healthcheck / test1.robot
diff --git a/tests/sdnc/healthcheck/test1.robot b/tests/sdnc/healthcheck/test1.robot
new file mode 100644 (file)
index 0000000..c002a18
--- /dev/null
@@ -0,0 +1,44 @@
+*** Settings ***
+Library     Collections
+Library     RequestsLibrary
+Library     OperatingSystem
+Library     json
+Library     String
+
+*** Variables ***
+${SDN_APIDOCS_URI}    /apidoc/apis
+${SDN_HEALTHCHECK_OPERATION_PATH}    /operations/SLI-API:healthcheck
+${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH}  /operations/VNF-API:preload-vnf-topology-operation
+
+*** Test Cases ***
+
+Healthcheck API
+    Create Session   sdnc  http://localhost:8282/restconf
+    ${data}=    Get File     ${CURDIR}${/}data${/}data.json
+    &{headers}=  Create Dictionary    Authorization=Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==    Content-Type=application/json    Accept=application/json
+    ${resp}=    Post Request    sdnc    ${SDN_HEALTHCHECK_OPERATION_PATH}    data=${data}    headers=${headers}
+    Should Be Equal As Strings    ${resp.status_code}    200
+    Should Be Equal As Strings  ${resp.json()['output']['response-code']}   200
+
+Check SLI-API
+    Create Session   sdnc  http://localhost:8282
+    &{headers}=  Create Dictionary    Authorization=Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==    Content-Type=application/json    Accept=application/json
+    ${resp}=    Get Request    sdnc    ${SDN_APIDOCS_URI}    headers=${headers}
+    Log    ${resp.text}
+    Should Contain    ${resp.text}    SLI-API
+
+Check VNF-API
+    Create Session   sdnc  http://localhost:8282
+    &{headers}=  Create Dictionary    Authorization=Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==    Content-Type=application/json    Accept=application/json
+    ${resp}=    Get Request    sdnc    ${SDN_APIDOCS_URI}    headers=${headers}
+    Log    ${resp.text}
+    Should Contain    ${resp.text}    VNF-API
+
+Test Preload
+    Create Session   sdnc  http://localhost:8282/restconf
+    ${data}=    Get File     ${CURDIR}${/}data${/}preload.json
+    &{headers}=  Create Dictionary    Authorization=Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==    Content-Type=application/json    Accept=application/json
+    ${resp}=    Post Request    sdnc    ${PRELOAD_VNF_TOPOLOGY_OPERATION_PATH}    data=${data}    headers=${headers}
+    Log    ${resp.text}
+    Should Be Equal As Strings    ${resp.status_code}    200
+    Should Be Equal As Strings  ${resp.json()['output']['response-code']}   200