diff options
author | Aleksandra Maciaga <aleksandra.maciaga@nokia.com> | 2020-02-20 09:42:03 +0100 |
---|---|---|
committer | Aleksandra Maciaga <aleksandra.maciaga@nokia.com> | 2020-02-20 09:42:03 +0100 |
commit | 6def59774b60d05c2d5a4b9729b97b2f0f28f9e1 (patch) | |
tree | 01e93ba62f69714f428f32b70c12f02705ef1bfe /tests/aaf/certservice/resources | |
parent | b3b620885747a9147e3575f8567904575500f88e (diff) |
Add CSIT tests for AAF Cert Service
Issue-ID: AAF-995
Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com>
Change-Id: Iaf96cfb08ba9f83b1ebb5f382a530fcec9333a84
Diffstat (limited to 'tests/aaf/certservice/resources')
-rw-r--r-- | tests/aaf/certservice/resources/cert-service-keywords.robot | 36 | ||||
-rw-r--r-- | tests/aaf/certservice/resources/cert-service-properties.robot | 9 |
2 files changed, 45 insertions, 0 deletions
diff --git a/tests/aaf/certservice/resources/cert-service-keywords.robot b/tests/aaf/certservice/resources/cert-service-keywords.robot new file mode 100644 index 00000000..caec55aa --- /dev/null +++ b/tests/aaf/certservice/resources/cert-service-keywords.robot @@ -0,0 +1,36 @@ +*** Settings *** + +Library RequestsLibrary +Library HttpLibrary.HTTP +Library Collections +Resource ../../../common.robot +Resource ./cert-service-properties.robot + +*** Keywords *** + +Create sessions + [Documentation] Create all required sessions + Create Session aaf_cert_service_url ${AAFCERT_URL} + Set Suite Variable ${http_session} aaf_cert_service_url + +Run Healthcheck + [Documentation] Run Healthcheck + ${resp}= Get Request ${http_session} /actuator/health + Should Be Equal As Strings ${resp.status_code} 200 + Validate Recieved Response ${resp} status UP + +Send Request And Validate Response + [Documentation] Send request to passed url and validate received response + [Arguments] ${path} ${csr_file} ${pk_file} ${resp_code} + ${csr}= Get Data From File ${csr_file} + ${pk}= Get Data From File ${pk_file} + ${headers}= Create Dictionary CSR=${csr} PK=${pk} + ${resp}= Get Request ${http_session} ${path} headers=${headers} + Should Be Equal As Strings ${resp.status_code} ${resp_code} + +Validate Recieved Response + [Documentation] Validare message that has been received + [Arguments] ${resp} ${key} ${expected_value} + ${json}= Parse Json ${resp.content} + ${value}= get from dictionary ${json} ${key} + Should Be Equal As Strings ${value} ${expected_value}
\ No newline at end of file diff --git a/tests/aaf/certservice/resources/cert-service-properties.robot b/tests/aaf/certservice/resources/cert-service-properties.robot new file mode 100644 index 00000000..e911133d --- /dev/null +++ b/tests/aaf/certservice/resources/cert-service-properties.robot @@ -0,0 +1,9 @@ +*** Variables *** + +${AAFCERT_URL} http://%{AAFCERT_IP}:8080 +${CAName} test +${CERT_PATH} /v1/certificate/${CAName} +${VALID_CSR_FILE} %{WORKSPACE}/tests/aaf/certservice/assets/valid.csr +${VALID_PK_FILE} %{WORKSPACE}/tests/aaf/certservice/assets/valid.key +${INVALID_CSR_FILE} %{WORKSPACE}/tests/aaf/certservice/assets/invalid.csr +${INVALID_PK_FILE} %{WORKSPACE}/tests/aaf/certservice/assets/invalid.key |