diff options
author | Brian Freeman <bf1936@att.com> | 2019-05-08 20:30:14 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-05-09 01:32:42 +0000 |
commit | 0d866b5b2fe1a249503a5be66eac97e4836cc374 (patch) | |
tree | 6a6b9fdf7036919591c4405d59bd270643f8dcf5 /robot | |
parent | 461aa5b33b29ca1df212ba09a51e29dfcf1fe1bc (diff) |
Fixes for New Policy API
fix private key for Wait For Server
Issue-ID: INT-1071
Change-Id: I3c6e6e59dc3c6f3fe53887f48cd20ba16b50f402
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'robot')
-rw-r--r-- | robot/resources/policy_interface.robot | 2 | ||||
-rw-r--r-- | robot/resources/stack_validation/validate_common.robot | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/robot/resources/policy_interface.robot b/robot/resources/policy_interface.robot index d4882811..c532c17a 100644 --- a/robot/resources/policy_interface.robot +++ b/robot/resources/policy_interface.robot @@ -118,7 +118,7 @@ Update vVFWCL Policy Old Validate the vFWCL Policy Old Update vVFWCL Policy - [Arguments] ${resource_id} + [Arguments] ${resource_id} Log To Console Create vFWCL Monitoring Policy Create vFirewall Monitoring Policy Sleep 5s diff --git a/robot/resources/stack_validation/validate_common.robot b/robot/resources/stack_validation/validate_common.robot index 6c97fac1..8b292131 100644 --- a/robot/resources/stack_validation/validate_common.robot +++ b/robot/resources/stack_validation/validate_common.robot @@ -21,7 +21,9 @@ Resource packet_generator_interface.robot Wait For Server [Documentation] Attempts to login to the passed server info and verify (??). Uses server info to get public ip and locate corresponding provate key file [Arguments] ${server_ip} ${timeout}=300s - ${file}= Catenate ${GLOBAL_VM_PRIVATE_KEY} + #${file}= Catenate ${GLOBAL_VM_PRIVATE_KEY} + # Preload is using onap public key + ${file}= Catenate ${GLOBAL_ONAP_PRIVATE_KEY} Wait Until Keyword Succeeds ${timeout} 5 sec Open Connection And Log In ${server_ip} root ${file} ${lines}= Grep Local File "Accepted publickey" /var/log/auth.log Log ${lines} |