blob: 5f25f0b0aacdd4011cea0d9647b89181421ca02a (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
*** 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
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
[Documentation] Send request to passed url
[Arguments] ${path} ${csr_file} ${pk_file}
[Return] ${resp}
${headers}= Create Header with CSR and PK ${csr_file} ${pk_file}
${resp}= Get Request ${http_session} ${path} headers=${headers}
Send Get Request with Header And Expect Success
[Documentation] Send request to passed url and validate received response
[Arguments] ${path} ${csr_file} ${pk_file}
${resp}= Send Get Request with Header ${path} ${csr_file} ${pk_file}
Should Be Equal As Strings ${resp.status_code} 200
Check Message Recieved On Success ${resp.content}
Check Message Recieved On Success
[Documentation] Check if correct messsage has been sent on successful request
[Arguments] ${content}
${resp_content}= Parse Json ${content}
Dictionary Should Contain Key ${resp_content} certificateChain
@{list}= Get From Dictionary ${resp_content} certificateChain
List Should Contain Certificates @{list}
Dictionary Should Contain Key ${resp_content} trustedCertificates
List Should Contain Certificates
[Documentation] Verify if list contains certificates
[Arguments] @{list}
:FOR ${content} IN @{list}
\ Should Contain ${content} BEGIN CERTIFICATE
\ Should Contain ${content} END CERTIFICATE
Send Get Request with Header And Expect Error
[Documentation] Send request to passed url and validate received response
[Arguments] ${path} ${csr_file} ${pk_file} ${resp_code}
${resp}= Send Get Request with Header ${path} ${csr_file} ${pk_file}
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}
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}
|