aboutsummaryrefslogtreecommitdiffstats
path: root/csit/tests/cps-data
diff options
context:
space:
mode:
authorToine Siebelink <toine.siebelink@est.tech>2023-12-13 09:56:49 +0000
committerGerrit Code Review <gerrit@onap.org>2023-12-13 09:56:49 +0000
commit7e94b26a666907cc97d692b8dda8364bb0a0ef45 (patch)
tree6ca90a5d54d5a53c16ab32a6f097d412dac2c0c1 /csit/tests/cps-data
parenta72a36a338b8c6901e02742af8766baea57b0428 (diff)
parent14d37304d8b83efc099ba19d6f3e7d5d53fead29 (diff)
Merge "Clean up CSIT Test"
Diffstat (limited to 'csit/tests/cps-data')
-rw-r--r--csit/tests/cps-data/cps-data.robot7
1 files changed, 3 insertions, 4 deletions
diff --git a/csit/tests/cps-data/cps-data.robot b/csit/tests/cps-data/cps-data.robot
index bcab3a679b..f506b28011 100644
--- a/csit/tests/cps-data/cps-data.robot
+++ b/csit/tests/cps-data/cps-data.robot
@@ -38,7 +38,7 @@ ${anchorName} CSIT-Anchor
Create Data Node
${uri}= Set Variable ${basePath}/v1/dataspaces/${dataspaceName}/anchors/${anchorName}/nodes
${headers} Create Dictionary Content-Type=application/json Authorization=${auth}
- ${jsonData}= Get Binary File ${DATADIR}${/}test-tree.json
+ ${jsonData}= Get Binary File ${DATADIR_CPS_CORE}${/}test-tree.json
${response}= POST On Session CPS_URL ${uri} headers=${headers} data=${jsonData}
Should Be Equal As Strings ${response.status_code} 201
@@ -46,7 +46,7 @@ Patch Data Node
${uri}= Set Variable ${basePath}/v1/dataspaces/${dataspaceName}/anchors/${anchorName}/nodes
${params}= Create Dictionary xpath=/test-tree/branch[@name='Right']
${headers} Create Dictionary Content-Type=application/json Authorization=${auth}
- ${jsonData}= Get Binary File ${DATADIR}${/}testTreePatchExample.json
+ ${jsonData}= Get Binary File ${DATADIR_CPS_CORE}${/}testTreePatchExample.json
${response}= PATCH On Session CPS_URL ${uri} params=${params} headers=${headers} data=${jsonData}
Should Be Equal As Strings ${response.status_code} 200
@@ -69,7 +69,6 @@ Get Data Node by XPath
${params}= Create Dictionary xpath=/test-tree/branch[@name='LEFT/left']/nest
${headers}= Create Dictionary Authorization=${auth}
${response}= Get On Session CPS_URL ${uri} params=${params} headers=${headers} expected_status=200
- ${responseJson}= Set Variable ${response.json()['tree:nest']}
- Should Be Equal As Strings ${responseJson['name']} SMALL/small
+ Should Be Equal As Strings ${response.json()['tree:nest']['name']} SMALL/small