X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fcop.robot;fp=resources%2Flibraries%2Frobot%2Fcop.robot;h=c958b3e2110cdde89b646ad3b914bb5a7ea9111a;hb=395ed47437010c9852d9d620f491f660a085dbfd;hp=0000000000000000000000000000000000000000;hpb=8935f5271dacc631d5b834b27b36bfad83c350c2;p=csit.git diff --git a/resources/libraries/robot/cop.robot b/resources/libraries/robot/cop.robot new file mode 100644 index 0000000000..c958b3e211 --- /dev/null +++ b/resources/libraries/robot/cop.robot @@ -0,0 +1,85 @@ +# Copyright (c) 2016 Cisco and/or its affiliates. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +*** Settings *** +| Resource | resources/libraries/robot/default.robot +| Resource | resources/libraries/robot/counters.robot +| Library | resources.libraries.python.NodePath +| Library | resources.libraries.python.Cop +| Library | resources.libraries.python.Routing +| Library | resources.libraries.python.TrafficScriptExecutor +| Library | resources.libraries.python.InterfaceUtil + +*** Keywords *** +| Setup Nodes And Variables +| | [Documentation] | Setup of test variables and bring interfaces up. +| | ... +| | ... | *Arguments:* +| | ... +| | ... | - {tg_node} : Node where to start/end. Type: dictionary +| | ... | - {dut1_node} - Next node from start. Type: dictionary +| | ... | - {dut2_node} - Third node. Type: dictionary +| | ... +| | ... | *Return:* +| | ... +| | ... | - No value returned +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Setup Nodes And Variables \| ${nodes['TG']} \ +| | ... | \| ${nodes['DUT1']} \| ${nodes['DUT2']} \| +| | ... +| | ... | _NOTE:_ This KW sets following test case variables: +| | ... +| | ... | - ${tg_if1} - Iterface of TG towards DUT (1st). +| | ... | - ${tg_if2} - Interface of TG towards DUT (2nd). +| | ... | - ${dut1_if1} - Interface of DUT towards TG (1st). +| | ... | - ${dut1_if2} - Interface of DUT towards TG (2nd). +| | ... | - ${dut2_if1} - Interface of DUT2 towards DUT (1st). +| | ... | - ${dut2_if2} - Interface of DUT2 towards TG (2nd). +| | ... | - ${tg_if1_mac} - MAC address of TG interface (1st). +| | ... | - ${tg_if2_mac} - MAC address of TG interface (2nd). +| | ... | - ${dut1_if1_mac} - MAC address of DUT1 interface (1st). +| | ... | - ${dut1_if2_mac} - MAC address of DUT1 interface (2nd). +| | ... +| | [Arguments] | ${tg_node} | ${dut1_node} | ${dut2_node} +| | Append Nodes | ${tg_node} | ${dut1_node} | ${dut2_node} | +| | ... | ${tg_node} +| | Compute Path +| | ${tg_if1} | ${tg}= | Next Interface +| | ${dut1_if1} | ${dut1}= | Next Interface +| | ${dut1_if2} | ${dut1}= | Next Interface +| | ${dut2_if1} | ${dut2}= | Next Interface +| | ${dut2_if2} | ${dut2}= | Next Interface +| | ${tg_if2} | ${tg}= | Next Interface +| | ${tg_if1_mac}= | Get interface mac | ${tg} | ${tg_if1} +| | ${tg_if2_mac}= | Get interface mac | ${tg} | ${tg_if2} +| | ${dut1_if1_mac}= | Get interface mac | ${dut1} | ${dut1_if1} +| | ${dut1_if2_mac}= | Get interface mac | ${dut1} | ${dut1_if2} +| | Set Test Variable | ${tg_if1} +| | Set Test Variable | ${tg_if2} +| | Set Test Variable | ${dut1_if1} +| | Set Test Variable | ${dut1_if2} +| | Set Test Variable | ${dut2_if1} +| | Set Test Variable | ${dut2_if2} +| | Set Test Variable | ${tg_if1_mac} +| | Set Test Variable | ${tg_if2_mac} +| | Set Test Variable | ${dut1_if1_mac} +| | Set Test Variable | ${dut1_if2_mac} +| | Set Interface State | ${tg_node} | ${tg_if1} | up +| | Set Interface State | ${tg_node} | ${tg_if2} | up +| | Set Interface State | ${dut1_node} | ${dut1_if1} | up +| | Set Interface State | ${dut1_node} | ${dut1_if2} | up +| | Set Interface State | ${dut2_node} | ${dut2_if1} | up +| | Set Interface State | ${dut2_node} | ${dut2_if2} | up +| | All Vpp Interfaces Ready Wait | ${nodes}