diff options
author | Mariusz Wagner <mariusz.wagner@nokia.com> | 2019-03-13 14:50:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-13 14:50:29 +0000 |
commit | 0b23a1e44f8b9f5b449cdca9f63568b222418f58 (patch) | |
tree | 90e230b12c64c669730cfb7ce6847bda206e7c2c | |
parent | e23d2dc74252850fe449cf3c33aa99634d3a8454 (diff) | |
parent | a86c81d47dc27e992f05c6941c895fbc6ed63496 (diff) |
Merge "CSIT tests for policy/distribution statistics"
-rw-r--r-- | tests/policy/distribution/distribution-test.robot | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/policy/distribution/distribution-test.robot b/tests/policy/distribution/distribution-test.robot index 2ee11806..34dd169c 100644 --- a/tests/policy/distribution/distribution-test.robot +++ b/tests/policy/distribution/distribution-test.robot @@ -15,3 +15,13 @@ Healthcheck Log Received response from policy ${resp.text} Should Be Equal As Strings ${resp.status_code} 200 Should Be Equal As Strings ${resp.json()['code']} 200 +Statistics + [Documentation] Runs Policy Distribution Statistics + ${auth}= Create List healthcheck zb!XztG34 + Log Creating session https://${POLICY_DISTRIBUTION_IP}:6969 + ${session}= Create Session policy https://${POLICY_DISTRIBUTION_IP}:6969 auth=${auth} + ${headers}= Create Dictionary Accept=application/json Content-Type=application/json + ${resp}= Get Request policy /statistics headers=${headers} + Log Received response from policy ${resp.text} + Should Be Equal As Strings ${resp.status_code} 200 + Should Be Equal As Strings ${resp.json()['code']} 200 |