aboutsummaryrefslogtreecommitdiffstats
path: root/tests/aaf/certservice/cert-service-test.robot
diff options
context:
space:
mode:
authorMarcin Przybysz <marcin.przybysz@nokia.com>2020-02-20 12:33:54 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-20 12:33:54 +0000
commit3dcf79f91db846d54ae9d4d537b7173c7bd44a5e (patch)
treee8e42d9b7978735c3843a5cf6eaa90b2055d7e02 /tests/aaf/certservice/cert-service-test.robot
parent855e78e9e4f14659509c92b3e265388211510851 (diff)
parent6def59774b60d05c2d5a4b9729b97b2f0f28f9e1 (diff)
Merge "Add CSIT tests for AAF Cert Service"
Diffstat (limited to 'tests/aaf/certservice/cert-service-test.robot')
-rw-r--r--tests/aaf/certservice/cert-service-test.robot29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/aaf/certservice/cert-service-test.robot b/tests/aaf/certservice/cert-service-test.robot
new file mode 100644
index 00000000..cc72eb66
--- /dev/null
+++ b/tests/aaf/certservice/cert-service-test.robot
@@ -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