Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 1 | *** Settings *** |
| 2 | |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 3 | Documentation AAF Cert Service API test case scenarios |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 4 | Library RequestsLibrary |
| 5 | Resource ./resources/cert-service-keywords.robot |
| 6 | |
| 7 | Suite Setup Create sessions |
| 8 | |
| 9 | *** Test Cases *** |
| 10 | |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 11 | Health Check |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 12 | [Tags] AAF-CERT-SERVICE |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 13 | [Documentation] Service is up and running |
Aleksandra Maciaga | f630068 | 2020-03-04 17:11:30 +0100 | [diff] [blame] | 14 | Run health check |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 15 | |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 16 | Reload Configuration |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 17 | [Tags] AAF-CERT-SERVICE |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 18 | [Documentation] Configuration was changed |
Aleksandra Maciaga | f630068 | 2020-03-04 17:11:30 +0100 | [diff] [blame] | 19 | Send Get Request And Validate Response /reload 200 |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 20 | |
Michal Banka | 93cf4f5 | 2020-03-09 12:14:45 +0100 | [diff] [blame] | 21 | Check if application is ready |
| 22 | [Tags] AAF-CERT-SERVICE |
| 23 | [Documentation] Send request to /ready endpoint and expect 200 |
| 24 | Send Get Request And Validate Response /ready 200 |
| 25 | |
Aleksandra Maciaga | f630068 | 2020-03-04 17:11:30 +0100 | [diff] [blame] | 26 | Generate Certificate In RA Mode For CA Name |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 27 | [Tags] AAF-CERT-SERVICE |
kjaniak | 25fac3a | 2020-03-18 13:01:36 +0100 | [diff] [blame] | 28 | [Documentation] Send request to ${CERT_SERVICE_ENDPOINT}${RA_CA_NAME} endpoint and expect 200 |
| 29 | Send Get Request with Header And Expect Success ${CERT_SERVICE_ENDPOINT}${RA_CA_NAME} ${VALID_RA_CSR_FILE} ${VALID_RA_PK_FILE} |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 30 | |
Aleksandra Maciaga | f630068 | 2020-03-04 17:11:30 +0100 | [diff] [blame] | 31 | Report Not Found Error When Path To Service Is Not Valid |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 32 | [Tags] AAF-CERT-SERVICE |
kjaniak | 25fac3a | 2020-03-18 13:01:36 +0100 | [diff] [blame] | 33 | [Documentation] Send request to ${CERT_SERVICE_ENDPOINT} endpoint and expect 404 |
| 34 | Send Get Request with Header And Expect Error ${CERT_SERVICE_ENDPOINT} ${VALID_CLIENT_CSR_FILE} ${VALID_CLIENT_PK_FILE} 404 |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 35 | |
Aleksandra Maciaga | f630068 | 2020-03-04 17:11:30 +0100 | [diff] [blame] | 36 | Report Bad Request Error When Header Is Missing In Request |
Aleksandra Maciaga | 8d762b1 | 2020-02-24 14:24:42 +0100 | [diff] [blame] | 37 | [Tags] AAF-CERT-SERVICE |
kjaniak | 25fac3a | 2020-03-18 13:01:36 +0100 | [diff] [blame] | 38 | [Documentation] Send request without header to ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} endpoint and expect 400 |
| 39 | Send Get Request And Validate Response ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} 400 |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 40 | |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 41 | Report Bad Request Error When CSR Is Not Valid |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 42 | [Tags] AAF-CERT-SERVICE |
kjaniak | 25fac3a | 2020-03-18 13:01:36 +0100 | [diff] [blame] | 43 | [Documentation] Send request to ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} endpoint and expect 400 |
| 44 | Send Get Request with Header And Expect Error ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} ${INVALID_CSR_FILE} ${VALID_CLIENT_PK_FILE} 400 |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 45 | |
Aleksandra Maciaga | 93f9ea4 | 2020-03-03 13:38:58 +0100 | [diff] [blame] | 46 | Report Bad Request Error When PK Is Not Valid |
Aleksandra Maciaga | 6def597 | 2020-02-20 09:42:03 +0100 | [diff] [blame] | 47 | [Tags] AAF-CERT-SERVICE |
kjaniak | 25fac3a | 2020-03-18 13:01:36 +0100 | [diff] [blame] | 48 | [Documentation] Send request to ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} endpoint and expect 400 |
| 49 | Send Get Request with Header And Expect Error ${CERT_SERVICE_ENDPOINT}${CLIENT_CA_NAME} ${VALID_CLIENT_CSR_FILE} ${INVALID_PK_FILE} 400 |
Tomasz Wrobel | 75573b0 | 2020-03-05 16:43:50 +0100 | [diff] [blame] | 50 | |
Tomasz Wrobel | 6ed06d5 | 2020-03-11 15:31:10 +0100 | [diff] [blame] | 51 | Cert Service Client successfully creates keystore and truststore |
Tomasz Wrobel | 75573b0 | 2020-03-05 16:43:50 +0100 | [diff] [blame] | 52 | [Tags] AAF-CERT-SERVICE |
| 53 | [Documentation] Run with correct env and expected exit code 0 |
Tomasz Wrobel | 6ed06d5 | 2020-03-11 15:31:10 +0100 | [diff] [blame] | 54 | Run Cert Service Client And Validate JKS File Creation And Client Exit Code ${VALID_ENV_FILE} 0 |
Tomasz Wrobel | 75573b0 | 2020-03-05 16:43:50 +0100 | [diff] [blame] | 55 | |
Joanna Jeremicz | 9c14f19 | 2020-03-19 14:51:51 +0100 | [diff] [blame^] | 56 | Cert Service Client successfully creates keystore and truststore with expected data |
| 57 | [Tags] AAF-CERT-SERVICE |
| 58 | [Documentation] Run with correct env and JKS files created with correct data |
| 59 | Run Cert Service Client And Validate JKS Files Contain Expected Data ${VALID_ENV_FILE} 0 |
| 60 | |
Tomasz Wrobel | 6ed06d5 | 2020-03-11 15:31:10 +0100 | [diff] [blame] | 61 | Run Cert Service Client Container And Validate Exit Code And API Response |
Tomasz Wrobel | 75573b0 | 2020-03-05 16:43:50 +0100 | [diff] [blame] | 62 | [Tags] AAF-CERT-SERVICE |
| 63 | [Documentation] Run with invalid CaName env and expected exit code 5 |
Tomasz Wrobel | 6ed06d5 | 2020-03-11 15:31:10 +0100 | [diff] [blame] | 64 | Run Cert Service Client And Validate Http Response Code And Client Exit Code ${INVALID_ENV_FILE} 404 5 |
Tomasz Wrobel | 75573b0 | 2020-03-05 16:43:50 +0100 | [diff] [blame] | 65 | |