diff options
author | Aleksandra Maciaga <aleksandra.maciaga@nokia.com> | 2020-02-24 14:24:42 +0100 |
---|---|---|
committer | Aleksandra Maciaga <aleksandra.maciaga@nokia.com> | 2020-02-25 12:39:08 +0100 |
commit | 8d762b1bbb490e70354c1f06941d4af44f7fc464 (patch) | |
tree | f2d71ea3c3e8ddc6f9840725e8aff7b9fa3bbad0 /tests/aaf/certservice/resources | |
parent | 3dcf79f91db846d54ae9d4d537b7173c7bd44a5e (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/resources')
-rw-r--r-- | tests/aaf/certservice/resources/cert-service-keywords.robot | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/tests/aaf/certservice/resources/cert-service-keywords.robot b/tests/aaf/certservice/resources/cert-service-keywords.robot index caec55aa..b40da524 100644 --- a/tests/aaf/certservice/resources/cert-service-keywords.robot +++ b/tests/aaf/certservice/resources/cert-service-keywords.robot @@ -19,18 +19,37 @@ Run Healthcheck Should Be Equal As Strings ${resp.status_code} 200 Validate Recieved Response ${resp} status UP -Send Request And Validate Response +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} + +Send Get Request And Validate Response + [Documentation] Send request to passed url and validate received response + [Arguments] ${path} ${resp_code} + ${resp}= Get Request ${http_session} ${path} + Should Be Equal As Strings ${resp.status_code} ${resp_code} + +Send Get Request with Header And Validate Response [Documentation] Send request to passed url and validate received response [Arguments] ${path} ${csr_file} ${pk_file} ${resp_code} + ${headers}= Create Header with CSR and PK ${csr_file} ${pk_file} + ${resp}= Get Request ${http_session} ${path} headers=${headers} + Should Be Equal As Strings ${resp.status_code} ${resp_code} + +Create Header with CSR and PK + [Documentation] Create header with CSR and PK + [Arguments] ${csr_file} ${pk_file} + [Return] ${headers} ${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 +Send Post Request And Validate Response + [Documentation] Send request to passed url and validate received response + [Arguments] ${path} ${resp_code} + ${resp}= Post Request ${http_session} ${path} + Should Be Equal As Strings ${resp.status_code} ${resp_code} +
\ No newline at end of file |