X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FNetconfKeywords.robot;h=5c1237084f811afe0f3ff689dfe6c09953ac3617;hb=9b627cf3dff6c022c6ae754a657c1a9b6103c801;hp=74f6b8cda962d96b844f2dc17118cdd3989be294;hpb=c8f4b9659d33c5f71d386a6c23852fa02ec92b01;p=integration%2Ftest.git diff --git a/csit/libraries/NetconfKeywords.robot b/csit/libraries/NetconfKeywords.robot index 74f6b8cda9..5c1237084f 100644 --- a/csit/libraries/NetconfKeywords.robot +++ b/csit/libraries/NetconfKeywords.robot @@ -24,6 +24,7 @@ ${DIRECTORY_WITH_DEVICE_TEMPLATES} ${CURDIR}/../variables/netconf/device ${FIRST_TESTTOOL_PORT} 17830 ${BASE_NETCONF_DEVICE_PORT} 17830 ${DEVICE_NAME_BASE} netconf-scaling-device +${TESTTOOL_DEVICE_TIMEOUT} 60s *** Keywords *** Setup_NetconfKeywords @@ -125,6 +126,11 @@ NetconfKeywords__Check_Device_Is_Up ${count}= SSHKeywords.Count_Port_Occurences ${last-port} LISTEN java BuiltIn.Should_Be_Equal_As_Integers ${count} 1 +NetconfKeywords__Wait_Device_Is_Up_And_Running + [Arguments] ${device_name} + ${number}= BuiltIn.Evaluate '${device_name}'.split('-').pop() + BuiltIn.Wait_Until_Keyword_Succeeds ${TESTTOOL_DEVICE_TIMEOUT} 1s Check_Device_Up_And_Running ${number} + Install_And_Start_Testtool [Arguments] ${device-count}=10 ${debug}=true ${schemas}=none ${tool_options}=${EMPTY} ${java_options}=${TESTTOOL_DEFAULT_JAVA_OPTIONS} [Documentation] Install and run testtool. Also arrange to collect its output into a log file. @@ -139,11 +145,10 @@ Install_And_Start_Testtool ${command} BuiltIn.Set_Variable java ${java_options} -jar ${filename} ${tool_options} --device-count ${device-count} --debug ${debug} ${schemas_option} BuiltIn.Log Running testtool: ${command} SSHLibrary.Write ${command} >testtool.log 2>&1 - # Wait for the testtool to boot up. - ${timeout}= BuiltIn.Evaluate (${device-count}/3)+5 - BuiltIn.Wait_Until_Keyword_Succeeds ${timeout}s 1s NetconfKeywords__Check_Device_Is_Up ${FIRST_TESTTOOL_PORT} # Store information needed by other keywords. BuiltIn.Set_Suite_Variable ${NetconfKeywords__testtool_device_count} ${device-count} + # Wait for the testtool to boot up. + Perform_Operation_On_Each_Device NetconfKeywords__Wait_Device_Is_Up_And_Running Check_Device_Up_And_Running [Arguments] ${device-number} @@ -167,7 +172,6 @@ NetconfKeywords__Perform_Operation_With_Checking_On_Next_Device ${ellapsed_seconds}= DateTime.Subtract_Date_From_Date ${deadline_Date} ${current_Date} BuiltIn.Run_Keyword_If ${ellapsed_seconds}<0 Fail The global time out period expired ${number}= BuiltIn.Evaluate ${current_port}-${BASE_NETCONF_DEVICE_PORT}+1 - BuiltIn.Wait_Until_Keyword_Succeeds 10s 1s NetconfKeywords.Check_Device_Up_And_Running ${number} BuiltIn.Run_Keyword ${operation} ${DEVICE_NAME_BASE}-${number} ${next}= BuiltIn.Evaluate ${current_port}+1 BuiltIn.Set_Suite_Variable ${current_port} ${next}