Add CSIT tests for AAF Cert Service
[integration/csit.git] / tests / aaf / certservice / cert-service-test.robot
diff --git a/tests/aaf/certservice/cert-service-test.robot b/tests/aaf/certservice/cert-service-test.robot
new file mode 100644 (file)
index 0000000..cc72eb6
--- /dev/null
@@ -0,0 +1,29 @@
+*** Settings ***
+
+Documentation     Run healthcheck
+Library              RequestsLibrary
+Resource          ./resources/cert-service-keywords.robot
+
+Suite Setup       Create sessions
+
+*** Test Cases ***
+
+AAF Cert Service API Health Check
+    [Tags]      AAF-CERT-SERVICE
+    [Documentation]   Run healthcheck
+    Run Healthcheck
+
+AAF Cert Service API Send Valid CSR and Valid PK
+    [Tags]      AAF-CERT-SERVICE
+    [Documentation]  Send request to /v1/certificate/test endpoint and expect 200
+    Send Request And Validate Response  ${CERT_PATH}  ${VALID_CSR_FILE}  ${VALID_PK_FILE}  200
+
+AAF Cert Service API Send Invalid CSR and Valid PK
+    [Tags]      AAF-CERT-SERVICE
+    [Documentation]  Send request to /v1/certificate/test endpoint and expect 400
+    Send Request And Validate Response  ${CERT_PATH}  ${INVALID_CSR_FILE}  ${VALID_PK_FILE}  400
+
+AAF Cert Service API Send Valid CSR and Invalid PK
+    [Tags]      AAF-CERT-SERVICE
+    [Documentation]  Send request to /v1/certificate/test endpoint and expect 400
+    Send Request And Validate Response  ${CERT_PATH}  ${VALID_CSR_FILE}  ${INVALID_PK_FILE}  400
\ No newline at end of file