diff options
author | Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com> | 2020-10-07 09:23:18 +0200 |
---|---|---|
committer | Marcin Przybysz <marcin.przybysz@nokia.com> | 2020-10-12 12:27:03 +0000 |
commit | 590d66fda7ae1fb5d59555bd9af4cf212c2e7856 (patch) | |
tree | f5fab0b4f5b7df42b4c3af8755471bf07ec7cf50 /robot/resources/dcae/inventory.robot | |
parent | 70902ea6a8086368524fef892ad52a951138e7c1 (diff) |
Add CMPv2 E2E test case in robot test suite
Issue-ID: INT-1731
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>
Change-Id: I79ac8cfc4755b134fa214d21cc71cc2b2067461b
Diffstat (limited to 'robot/resources/dcae/inventory.robot')
-rw-r--r-- | robot/resources/dcae/inventory.robot | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/robot/resources/dcae/inventory.robot b/robot/resources/dcae/inventory.robot new file mode 100644 index 00000000..647c3780 --- /dev/null +++ b/robot/resources/dcae/inventory.robot @@ -0,0 +1,43 @@ +*** Settings *** +Documentation The main interface for interacting with 5G Bulkpm. +Library RequestsLibrary +Library OperatingSystem +Library String +Library ONAPLibrary.Templating WITH NAME Templating +Resource ../global_properties.robot + + +*** Variables *** +${INVENTORY_SERVER} ${GLOBAL_INVENTORY_SERVER_PROTOCOL}://${GLOBAL_INVENTORY_SERVER_NAME}:${GLOBAL_INVENTORY_SERVER_PORT} +${INVENTORY_ENDPOINT} /dcae-service-types +${BLUEPRINT_TEMPLATE} ${EXECDIR}/robot/assets/cmpv2/blueprintTemplate.json +*** Keywords *** + +Load Blueprint To Inventory + [Arguments] ${blueprint_path} ${typeName} + Disable Warnings + ${blueprint}= OperatingSystem.Get File ${blueprint_path} + ${templatejson}= Load JSON From File ${BLUEPRINT_TEMPLATE} + ${templatejson}= Update Value To Json ${templatejson} blueprintTemplate ${blueprint} + ${templatejson}= Update Value To Json ${templatejson} typeName ${typeName} + ${data} Convert JSON To String ${templatejson} + ${headers}= Create Dictionary content-type=application/json + ${session}= Create Session inventory_session ${INVENTORY_SERVER} + ${resp}= Post Request inventory_session ${INVENTORY_ENDPOINT} data=${data} headers=${headers} + ${serviceTypeId}= Set Variable ${resp.json().get('typeId')} + [Return] ${serviceTypeId} + +Delete Blueprint From Inventory + [Arguments] ${serviceTypeId} + Disable Warnings + ${session}= Create Session inventory_session ${INVENTORY_SERVER} + ${resp}= Delete Request inventory_session ${INVENTORY_ENDPOINT}/${serviceTypeId} + [Return] ${resp} + +Get Blueprint From Inventory + [Arguments] ${typeName} + Disable Warnings + ${headers}= Create Dictionary content-type=application/json + ${session}= Create Session inventory_session ${INVENTORY_SERVER} + ${resp}= Get Request inventory_session ${INVENTORY_ENDPOINT}?typeName=${typeName} headers=${headers} + [Return] ${resp}
\ No newline at end of file |