aboutsummaryrefslogtreecommitdiffstats
path: root/tests/aaf/certservice/cert-service-test.robot
diff options
context:
space:
mode:
authorAleksandra Maciaga <aleksandra.maciaga@nokia.com>2020-02-24 14:24:42 +0100
committerAleksandra Maciaga <aleksandra.maciaga@nokia.com>2020-02-25 12:39:08 +0100
commit8d762b1bbb490e70354c1f06941d4af44f7fc464 (patch)
treef2d71ea3c3e8ddc6f9840725e8aff7b9fa3bbad0 /tests/aaf/certservice/cert-service-test.robot
parent3dcf79f91db846d54ae9d4d537b7173c7bd44a5e (diff)
Add CSIT for AAF Cert Service and refactor code
Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Issue-ID: AAF-995 Change-Id: I83678b1f9aa8fad8da1d3244b19d2e20b4512f0d
Diffstat (limited to 'tests/aaf/certservice/cert-service-test.robot')
-rw-r--r--tests/aaf/certservice/cert-service-test.robot21
1 files changed, 18 insertions, 3 deletions
diff --git a/tests/aaf/certservice/cert-service-test.robot b/tests/aaf/certservice/cert-service-test.robot
index cc72eb66..aa2691a7 100644
--- a/tests/aaf/certservice/cert-service-test.robot
+++ b/tests/aaf/certservice/cert-service-test.robot
@@ -13,17 +13,32 @@ AAF Cert Service API Health Check
[Documentation] Run healthcheck
Run Healthcheck
+AAF Cert Service API Reload Configuration
+ [Tags] AAF-CERT-SERVICE
+ [Documentation] Reload configuration
+ Send Post Request And Validate Response /actuator/refresh 200
+
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
+ Send Get Request with Header And Validate Response ${CERT_PATH} ${VALID_CSR_FILE} ${VALID_PK_FILE} 200
+
+AAF Cert Service API Send Valid CSR and Valid PK to Wrong Path
+ [Tags] AAF-CERT-SERVICE
+ [Documentation] Send request to /v1/certificate/ endpoint and expect 404
+ Send Get Request with Header And Validate Response /v1/certificate/ ${VALID_CSR_FILE} ${VALID_PK_FILE} 404
+
+AAF Cert Service API Send Request without Header
+ [Tags] AAF-CERT-SERVICE
+ [Documentation] Send request to /v1/certificate/ endpoint and expect 400
+ Send Get Request And Validate Response ${CERT_PATH} 400
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
+ Send Get Request with Header 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
+ Send Get Request with Header And Validate Response ${CERT_PATH} ${VALID_CSR_FILE} ${INVALID_PK_FILE} 400 \ No newline at end of file