aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/policy/suite1/json_templater.robot
diff options
context:
space:
mode:
authorma987d <ma987d@att.com>2017-09-28 16:33:03 -0500
committerma987d <ma987d@att.com>2017-09-29 18:03:47 -0500
commite38164bcd2a6d4e14c980fed52c510c8b6759f94 (patch)
tree2e8a695df90dd7b562d661ab0a30cb0bbabac0ae /test/csit/tests/policy/suite1/json_templater.robot
parent35921f6c42432336777607d1b2ff53191adaf420 (diff)
Policy CSIT test files with latest changes
Issue-Id: POLICY-77 Signed-off-by: ma987d <ma987d@att.com> Change-Id: I6704704b676c0c99817a61ca614e49ba980d79bd
Diffstat (limited to 'test/csit/tests/policy/suite1/json_templater.robot')
-rw-r--r--test/csit/tests/policy/suite1/json_templater.robot21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/csit/tests/policy/suite1/json_templater.robot b/test/csit/tests/policy/suite1/json_templater.robot
new file mode 100644
index 000000000..a1cc7e35d
--- /dev/null
+++ b/test/csit/tests/policy/suite1/json_templater.robot
@@ -0,0 +1,21 @@
+*** Settings ***
+Documentation This resource is filling out json string templates and returning the json back
+Library RequestsLibrary
+Library eteutils/StringTemplater.py
+Library OperatingSystem
+Resource global_properties.robot
+
+*** 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} \ No newline at end of file