diff options
author | RamaPrasad Amaranarayana (ra5425) <ra5425@att.com> | 2018-09-19 17:40:40 -0400 |
---|---|---|
committer | RamaPrasad Amaranarayana (ra5425) <ra5425@att.com> | 2018-09-19 17:40:40 -0400 |
commit | fbe4bb98345727d190cefcfb3ec54ad9075fba9d (patch) | |
tree | f2e0c091a4c132c89dafb061c81eeebfb0e9a773 /cmso-robot/robot/testsuites/CheckLog.robot | |
parent | b031d50f82f8ca5b7fd0609a92c719f43a9f518d (diff) |
Change Management Schedule Optimization
Adding Robot Test Scripts for Change Management Schedule Optimization
Change-Id: Id5edf9d3fb3c2390791362692c8b25f7607045c6
Issue-ID: OPTFRA-352
Signed-off-by: RamaPrasad Amaranarayana (ra5425) <ra5425@att.com>
Diffstat (limited to 'cmso-robot/robot/testsuites/CheckLog.robot')
-rw-r--r-- | cmso-robot/robot/testsuites/CheckLog.robot | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/cmso-robot/robot/testsuites/CheckLog.robot b/cmso-robot/robot/testsuites/CheckLog.robot new file mode 100644 index 0000000..13d7b1c --- /dev/null +++ b/cmso-robot/robot/testsuites/CheckLog.robot @@ -0,0 +1,39 @@ +*** Settings *** +Documentation Creates VID VNF Instance + +Library StringTemplater +Library UUID + +Resource ../resources/test_templates/check_logs.robot + +# Test Setup +# Test Teardown +*** Variable*** +${user_name}= cr057g +${password}= cr057g +${template_folder}= robot/assets/templates/changemanagement +${fail_template_folder}= robot/assets/templates/FailureCasesChangeManagement +*** Test Cases *** + +Check Audit Logs + Check Audit Logs ${user_name} ${password} OneVnfImmediateReplaceVNFInfra.json.template ${template_folder} + +Check Debug Logs + Check Debug Logs ${user_name} ${password} OneVnfImmediateReplaceVNFInfra.json.template ${template_folder} + +Check Metric Logs + Check Metric Logs ${user_name} ${password} OneVnfImmediateReplaceVNFInfra.json.template ${template_folder} + +Check Error Logs + Check Error Logs ${user_name} ${password} OneVnfOneChangeWindowEmptyScheduleID.json.template ${fail_template_folder} + [Tags] + + + + + + + + + + |