blob: cc72eb66e2e896e041a8d9fa670b13bd2a6825c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|