summaryrefslogtreecommitdiffstats
path: root/tests/sdc-dcae-d/dcaed/json_templater.robot
diff options
context:
space:
mode:
authorkaihlavi <l.kaihlavirt@partner.samsung.com>2019-07-31 19:54:49 +0300
committerkaihlavi <l.kaihlavirt@partner.samsung.com>2019-08-01 14:48:20 +0300
commit22bc923a68f695bddb839c25e83c6dd5babf2e29 (patch)
tree9dcfded625ee792b4847f2f60e4721cab8886cff /tests/sdc-dcae-d/dcaed/json_templater.robot
parent683cc9123e5b5d1c6b7b66dbaa2cd2da0455ab9b (diff)
Replace json_templater usage
Remove project-specific json_templater.robot file and adjust the tests to use ONAPLibrary.Templating instead following the example here: https://gerrit.onap.org/r/#/c/integration/csit/+/90264/ Issue-ID: TEST-181 Signed-off-by: kaihlavi <l.kaihlavirt@partner.samsung.com> Change-Id: I29edbbbb054f100fdb92981cc4c1e44402d7cad7
Diffstat (limited to 'tests/sdc-dcae-d/dcaed/json_templater.robot')
-rw-r--r--tests/sdc-dcae-d/dcaed/json_templater.robot20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/sdc-dcae-d/dcaed/json_templater.robot b/tests/sdc-dcae-d/dcaed/json_templater.robot
deleted file mode 100644
index 33e8baa4..00000000
--- a/tests/sdc-dcae-d/dcaed/json_templater.robot
+++ /dev/null
@@ -1,20 +0,0 @@
-*** Settings ***
-Documentation This resource is filling out json string templates and returning the json back
-Library RequestsLibrary
-Library ONAPLibrary.TemplatingKeywords
-Library OperatingSystem
-
-*** Keywords ***
-Fill JSON Template
- [Documentation] Runs substitution on template to return a filled in json
- [Arguments] ${json} ${arguments}
- ${returned_string}= Template String ${json} ${arguments}
- ${returned_json}= To Json ${returned_string}
- [Return] ${returned_json}
-
-Fill JSON Template File
- [Documentation] Runs substitution on template to return a filled in json
- [Arguments] ${json_file} ${arguments}
- ${json}= OperatingSystem.Get File ${json_file}
- ${returned_json}= Fill JSON Template ${json} ${arguments}
- [Return] ${returned_json}