diff options
author | sv764t <sv764t@att.com> | 2018-10-25 01:42:52 -0400 |
---|---|---|
committer | vrvarma <vv8305@att.com> | 2018-11-01 19:46:14 -0400 |
commit | 8bf49988b7d6af5fdb48b5d2c1f830fbe318e83a (patch) | |
tree | 4f802e46be137517205641fed2cb151636d1e1c4 /tests/optf-cmso/cmso/resources/json_templater.robot | |
parent | 96028b74964d833bfb82322b8f5cc10d29b3da9b (diff) |
Change Management Schedule Optimization
Adding scripts and robot test suites for cmso as per CSIT procedure
Fixing the start up scripts to use docker
Removing .pyc files
Fix copyright headers for the shell scripts
Change-Id: I61492abd5d5060b5a773dec74320f2ecfc0fcbf5
Issue-ID: OPTFRA-382
Signed-off-by: sv764t <sv764t@att.com>
Signed-off-by: vrvarma <vv8305@att.com>
Diffstat (limited to 'tests/optf-cmso/cmso/resources/json_templater.robot')
-rw-r--r-- | tests/optf-cmso/cmso/resources/json_templater.robot | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/optf-cmso/cmso/resources/json_templater.robot b/tests/optf-cmso/cmso/resources/json_templater.robot new file mode 100644 index 00000000..ebbbf43d --- /dev/null +++ b/tests/optf-cmso/cmso/resources/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 StringTemplater +Library ../attlibs/StringTemplater.py +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} |