aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/aai/resources/suite1/pserver.robot
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2017-09-07 22:09:25 -0400
committerVenkata Harish K Kajur <vk250x@att.com>2017-09-08 14:10:10 -0400
commit96f120c2828f5d2c92596a18854eff39890ea134 (patch)
tree647329ea401f051e24903cd34e09961ea859af8e /test/csit/tests/aai/resources/suite1/pserver.robot
parentf8c2ff82f783f0becdae3d541954eb0d3f8f2339 (diff)
Setup pserver suite for resources
Setup the testing of the resources to verify that resources docker starts up properly and runs Issue-ID: AAI-155 Change-Id: Ic61b0e17b24fd9710fd076ccdc64a1adee747459 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'test/csit/tests/aai/resources/suite1/pserver.robot')
-rw-r--r--test/csit/tests/aai/resources/suite1/pserver.robot66
1 files changed, 66 insertions, 0 deletions
diff --git a/test/csit/tests/aai/resources/suite1/pserver.robot b/test/csit/tests/aai/resources/suite1/pserver.robot
new file mode 100644
index 000000000..5a1d9d3ba
--- /dev/null
+++ b/test/csit/tests/aai/resources/suite1/pserver.robot
@@ -0,0 +1,66 @@
+*** Settings ***
+Library OperatingSystem
+Library RequestsLibrary
+Library requests
+Library Collections
+
+*** Variables ***
+${TARGETURL} https://${HOST_IP}:8443/v11/cloud-infrastructure/pservers/pserver/pserver-test1
+${PSERVERDATA} {"hostname": "pserver-test1"}
+
+*** Test Cases ***
+
+Run AAI Put Pserver
+ [Documentation] Create an index and verify success
+ ${resp}= PutWithCert ${TARGETURL} ${PSERVERDATA}
+ Should Be Equal As Strings ${resp.status_code} 201
+
+Run AAI Get Pserver
+ [Documentation] Get the document that was just created
+ ${resp} GetWithCert ${TARGETURL}
+ ${content}= Evaluate $resp.json()
+ Should Be Equal As Strings ${resp.status_code} 200
+ ${resource_version}= Evaluate $resp.json()['resource-version']
+
+Run AAI Delete Pserver
+ [Documentation] Delete the index
+ ${resp}= DeleteWithCert ${TARGETURL}?resource-version=${resource_version}
+ Should Be Equal As Strings ${resp.status_code} 204
+
+*** Keywords ***
+PutWithCert
+ [Arguments] ${url} ${data}
+ ${auth}= Create List AAI AAI
+ ${uuid}= Generate UUID
+ ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${uuid} X-FromAppId=integration-aai
+ ${certinfo}= Evaluate ('${CURDIR}/aai.crt', '${CURDIR}/aai.key')
+ ${resp}= Evaluate requests.put('${url}', data='${data}', auth=${auth}, headers=${headers}, cert=${certinfo}, verify=False) requests
+ [return] ${resp}
+
+PostWithCert
+ [Arguments] ${url} ${data}
+ ${auth}= Create List AAI AAI
+ ${uuid}= Generate UUID
+ ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${uuid} X-FromAppId=integration-aai
+ ${certinfo}= Evaluate ('${CURDIR}/aai.crt', '${CURDIR}/aai.key')
+ ${resp}= Evaluate requests.post('${url}', data='${data}', auth=${auth}, headers=${headers}, cert=${certinfo}, verify=False) requests
+ [return] ${resp}
+
+GetWithCert
+ [Arguments] ${url}
+ ${auth}= Create List AAI AAI
+ ${uuid}= Generate UUID
+ ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${uuid} X-FromAppId=integration-aai
+ ${certinfo}= Evaluate ('${CURDIR}/aai.crt', '${CURDIR}/aai.key')
+ ${resp}= Evaluate requests.get('${url}', auth=${auth}, headers=${headers}, cert=${certinfo}, verify=False) requests
+ [return] ${resp}
+
+DeleteWithCert
+ [Arguments] ${url}
+ ${auth}= Create List AAI AAI
+ ${uuid}= Generate UUID
+ ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${uuid} X-FromAppId=integration-aai
+ ${certinfo}= Evaluate ('${CURDIR}/aai.crt', '${CURDIR}/aai.key')
+ ${resp}= Evaluate requests.delete('${url}', auth=${auth}, headers=${headers}, cert=${certinfo}, verify=False) requests
+ [return] ${resp}
+