X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Ftagging.robot;h=1e481a2e5ddc98a9fdeba63643ea51d21023f6d1;hp=e0f26a5938818ad13a4420f13af493216b76a7cd;hb=21702fb09c470511cc3ed7b34ca5ab0f8d30b68f;hpb=d407c074289e530f62db02ca57c0af921af069cc diff --git a/resources/libraries/robot/tagging.robot b/resources/libraries/robot/tagging.robot index e0f26a5938..1e481a2e5d 100644 --- a/resources/libraries/robot/tagging.robot +++ b/resources/libraries/robot/tagging.robot @@ -21,83 +21,35 @@ *** Keywords *** -| Node path computed for 3-node topology -| | [Arguments] | ${TG} | ${DUT1} | ${DUT2} | ${TG} -| | [Documentation] | *Create interface variables for 3-node topology.* -| | ... -| | ... | *Arguments:* -| | ... | - ${TG} - Node attached to the path. Type: dictionary -| | ... | - ${DUT1} - Node attached to the path. Type: dictionary -| | ... | - ${DUT2} - Node attached to the path. Type: dictionary -| | ... -| | ... | _Set testcase variables for nodes and interfaces._ -| | ... | - ${tg} - Variable for node in path. Type: dictionary -| | ... | - ${dut1} - Variable for node in path. Type: dictionary -| | ... | - ${dut2} - Variable for node in path. Type: dictionary -| | ... | - ${tg_if1} - First interface of TG node. Type: str -| | ... | - ${tg_if2} - Second interface of TG node. Type: str -| | ... | - ${dut1_if1} - First interface of first DUT node. Type: str -| | ... | - ${dut1_if2} - Second interface of first DUT node. Type: str -| | ... | - ${dut2_if1} - First interface of second DUT node. Type: str -| | ... | - ${dut2_if2} - Second interface of second DUT node. Type: str -| | ... -| | Append Nodes | ${TG} | ${DUT1} | ${DUT2} | ${TG} -| | 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 -| | Set Test Variable | ${tg} -| | Set Test Variable | ${tg_if1} -| | Set Test Variable | ${tg_if2} -| | Set Test Variable | ${dut1} -| | Set Test Variable | ${dut1_if1} -| | Set Test Variable | ${dut1_if2} -| | Set Test Variable | ${dut2} -| | Set Test Variable | ${dut2_if1} -| | Set Test Variable | ${dut2_if2} - -| Interfaces in path are up -| | [Documentation] | *Set UP state on interfaces in path on nodes.* -| | ... -| | Set Interface State | ${tg} | ${tg_if1} | up -| | Set Interface State | ${tg} | ${tg_if2} | up -| | Set Interface State | ${dut1} | ${dut1_if1} | up -| | Set Interface State | ${dut1} | ${dut1_if2} | up -| | Set Interface State | ${dut2} | ${dut2_if1} | up -| | Set Interface State | ${dut2} | ${dut2_if2} | up -| | Vpp Node Interfaces Ready Wait | ${dut1} -| | Vpp Node Interfaces Ready Wait | ${dut2} - | VLAN subinterfaces initialized on 3-node topology | | [Arguments] | ${DUT1} | ${INT1} | ${DUT2} | ${INT2} | ${SUB_ID} | | ... | ${OUTER_VLAN_ID} | ${INNER_VLAN_ID} | ${TYPE_SUBIF} | | [Documentation] | *Create two subinterfaces on DUTs.* | | ... | | ... | *Arguments:* -| | ... | - ${DUT1} - Node to add sub-interface. -| | ... | - ${INT1} - Interface name on which create sub-interface. -| | ... | - ${DUT2} - Node to add sub-interface. -| | ... | - ${INT2} - Interface name on which create sub-interface. -| | ... | - ${SUB_ID} - ID of the sub-interface to be created. -| | ... | - ${OUTER_VLAN_ID} - Outer VLAN ID. -| | ... | - ${INNER_VLAN_ID} - Inner VLAN ID. -| | ... | - ${TYPE_SUBIF} - Type of sub-interface. +| | ... | - DUT1 - Node to add sub-interface. +| | ... | - INT1 - Interface name on which create sub-interface. +| | ... | - DUT2 - Node to add sub-interface. +| | ... | - INT2 - Interface name on which create sub-interface. +| | ... | - SUB_ID - ID of the sub-interface to be created. +| | ... | - OUTER_VLAN_ID - Outer VLAN ID. +| | ... | - INNER_VLAN_ID - Inner VLAN ID. +| | ... | - TYPE_SUBIF - Type of sub-interface. | | ... | | ... | _Set testcase variables with name and index of created interfaces:_ -| | ... | - ${subif_name_1} -| | ... | - ${subif_index_1} -| | ... | - ${subif_name_2} -| | ... | - ${subif_index_2} +| | ... | - subif_name_1 +| | ... | - subif_index_1 +| | ... | - subif_name_2 +| | ... | - subif_index_2 | | ... +| | ${INT1_name}= | Get interface name | ${DUT1} | ${INT1} | | ${subif_name_1} | ${subif_index_1}= | Create subinterface | ${DUT1} -| | ... | ${INT1} | ${SUB_ID} +| | ... | ${INT1_name} | ${SUB_ID} | | ... | ${OUTER_VLAN_ID} | ${INNER_VLAN_ID} | | ... | ${TYPE_SUBIF} +| | ${INT2_name}= | Get interface name | ${DUT2} | ${INT2} | | ${subif_name_2} | ${subif_index_2}= | Create subinterface | ${DUT2} -| | ... | ${INT2} | ${SUB_ID} +| | ... | ${INT2_name} | ${SUB_ID} | | ... | ${OUTER_VLAN_ID} | ${INNER_VLAN_ID} | | ... | ${TYPE_SUBIF} | | Set Interface State | ${DUT1} | ${subif_index_1} | up @@ -107,20 +59,56 @@ | | Set Test Variable | ${subif_name_2} | | Set Test Variable | ${subif_index_2} -| L2 tag rewrite pop 2 tags setup on interfaces +| VLAN dot1q subinterfaces initialized on 3-node topology +| | [Arguments] | ${DUT1} | ${INT1} | ${DUT2} | ${INT2} | ${SUB_ID} +| | [Documentation] | *Create two dot1q subinterfaces on DUTs.* +| | ... +| | ... | *Arguments:* +| | ... | - DUT1 - Node to add sub-interface. +| | ... | - INT1 - Interface name on which create VLAN sub-interface. +| | ... | - DUT2 - Node to add sub-interface. +| | ... | - INT2 - Interface name on which create VLAN sub-interface. +| | ... | - SUB_ID - ID of the sub-interface to be created. +| | ... +| | ... | _Set testcase variables with name and index of created interfaces:_ +| | ... | - subif_name_1 +| | ... | - subif_index_1 +| | ... | - subif_name_2 +| | ... | - subif_index_2 +| | ... +| | ... | *Example:* +| | ... +| | ... | \| VLAN dot1q subinterfaces initialized on 3-node topology \ +| | ... | \| ${nodes['DUT1']} \| ${dut1_if2} \| ${nodes['DUT2']} \ +| | ... | \| ${dut1_if2} \| 10 \| +| | ... +| | ${INT1_NAME}= | Get interface name | ${DUT1} | ${INT1} +| | ${INT2_NAME}= | Get interface name | ${DUT2} | ${INT2} +| | ${subif_name_1} | ${subif_index_1}= | Create Vlan Subinterface +| | | ... | ${DUT1} | ${INT1_NAME} | ${SUB_ID} +| | ${subif_name_2} | ${subif_index_2}= | Create Vlan Subinterface +| | | ... | ${DUT2} | ${INT2_NAME} | ${SUB_ID} +| | Set Interface State | ${DUT1} | ${subif_index_1} | up +| | Set Interface State | ${DUT2} | ${subif_index_2} | up +| | Set Test Variable | ${subif_name_1} +| | Set Test Variable | ${subif_index_1} +| | Set Test Variable | ${subif_name_2} +| | Set Test Variable | ${subif_index_2} + +| L2 tag rewrite method setup on interfaces | | [Arguments] | ${DUT1} | ${SUB_INT1} | ${DUT2} | ${SUB_INT2} | | ... | ${TAG_REWRITE_METHOD} | | [Documentation] | *Setup tag rewrite on sub-interfaces on DUTs.* | | ... | | ... | *Arguments:* -| | ... | - ${DUT1} - Node to rewrite tags. -| | ... | - ${SUB_INT1} - Interface on which rewrite tags. -| | ... | - ${DUT2} - Node to rewrite tags. -| | ... | - ${SUB_INT2} - Interface on which rewrite tags. -| | ... | - ${TAG_REWRITE_METHOD} - Method of tag rewrite. -| | ... -| | L2 tag rewrite | ${DUT1} | ${SUB_INT1} | ${TAG_REWRITE_METHOD} -| | L2 tag rewrite | ${DUT2} | ${SUB_INT2} | ${TAG_REWRITE_METHOD} +| | ... | - DUT1 - Node to rewrite tags. +| | ... | - SUB_INT1 - Interface on which rewrite tags. +| | ... | - DUT2 - Node to rewrite tags. +| | ... | - SUB_INT2 - Interface on which rewrite tags. +| | ... | - TAG_REWRITE_METHOD - Method of tag rewrite. +| | ... +| | L2 Vlan tag rewrite | ${DUT1} | ${SUB_INT1} | ${TAG_REWRITE_METHOD} +| | L2 Vlan tag rewrite | ${DUT2} | ${SUB_INT2} | ${TAG_REWRITE_METHOD} | Interfaces and VLAN sub-interfaces inter-connected using L2-xconnect | | [Arguments] | ${DUT1} | ${INT1} | ${SUB_INT1} @@ -129,12 +117,103 @@ | | ... | L2-xconnect on DUTs.* | | ... | | ... | *Arguments:* -| | ... | - ${DUT1} - Node to add bidirectional cross-connect. -| | ... | - ${INT1} - Interface to add to the cross-connect. -| | ... | - ${SUB_INT1} - Sub-interface to add to the cross-connect. -| | ... | - ${DUT2} - Node to add bidirectional cross-connect. -| | ... | - ${INT2} - Interface to add to the cross-connect. -| | ... | - ${SUB_INT2} - Sub-interface to add to the cross-connect. +| | ... | - DUT1 - Node to add bidirectional cross-connect. +| | ... | - INT1 - Interface to add to the cross-connect. +| | ... | - SUB_INT1 - Sub-interface to add to the cross-connect. +| | ... | - DUT2 - Node to add bidirectional cross-connect. +| | ... | - INT2 - Interface to add to the cross-connect. +| | ... | - SUB_INT2 - Sub-interface to add to the cross-connect. | | ... | | L2 setup xconnect on DUT | ${DUT1} | ${INT1} | ${SUB_INT1} | | L2 setup xconnect on DUT | ${DUT2} | ${INT2} | ${SUB_INT2} + +| Vlan Subinterface Created +| | [Documentation] | Create VLAN sub-interface on DUT and set admin status up. +| | ... +| | ... | *Arguments:* +| | ... | - dut_node - Node to add VLAN sub-intreface. Type: dictionary +| | ... | - interface - Interface to create VLAN sub-interface. Type: string +| | ... | - vlan_id - VLAN ID. Type: integer +| | ... +| | ... | *Return:* +| | ... | - vlan_name - VLAN sub-interface name. Type: string +| | ... | - vlan_index - VLAN sub-interface SW index. Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Vlan Subinterface Created \| ${nodes['DUT1']} \| port3 \| 100 \| +| | ... +| | [Arguments] | ${dut_node} | ${interface} | ${vlan_id} +| | [Return] | ${vlan_name} | ${vlan_index} +| | ${interface_name}= | Get interface name | ${dut_node} | ${interface} +| | ${vlan_name} | ${vlan_index}= | Create Vlan Subinterface +| | ... | ${dut_node} | ${interface_name} | ${vlan_id} +| | Set Interface State | ${dut_node} | ${vlan_index} | up + +| Tagged Subinterface Created +| | [Documentation] | Create tagged sub-interface on DUT. Type of tagged \ +| | ... | sub-intreface depends on type_subif value: +| | ... | - one_tag -> VLAN +| | ... | - two_tags -> QinQ VLAN +| | ... | - two_tags dot1ad - DOT1AD +| | ... +| | ... | *Arguments:* +| | ... | - dut_node - Node to add VLAN sub-intreface. Type: dictionary +| | ... | - interface - Interface to create tagged sub-interface. Type: string +| | ... | - subif_id - Sub-interface ID. Type: integer +| | ... | - outer_vlan_id - VLAN (outer) ID (Optional). Type: integer +| | ... | - inner_vlan_id - VLAN inner ID (Optional). Type: integer +| | ... | - type_subif - Sub-interface type (Optional). Type: string +| | ... +| | ... | *Return:* +| | ... | - subif_name - Sub-interface name. Type: string +| | ... | - subif_index - Sub-interface SW index. Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Tagged Subinterface Created \| ${nodes['DUT1']} \| port1 \| 10 \ +| | ... | \| outer_vlan_id=100 \| inner_vlan_id=200 \ +| | ... | \| type_subif=two_tags dot1ad \| +| | ... +| | [Arguments] | ${dut_node} | ${interface} | ${subif_id} +| | ... | ${outer_vlan_id}=${None} | ${inner_vlan_id}=${None} +| | ... | ${type_subif}=${None} +| | [Return] | ${subif_name} | ${subif_index} +| | ${interface_name}= | Get interface name | ${dut_node} | ${interface} +| | ${subif_name} | ${subif_index}= | Create Subinterface +| | ... | ${dut_node} | ${interface_name} | ${subif_id} +| | ... | outer_vlan_id=${outer_vlan_id} | inner_vlan_id=${inner_vlan_id} +| | ... | type_subif=${type_subif} + +| L2 Tag Rewrite Method Is Set On Interface +| | [Documentation] | Set L2 tag rewrite on (sub-)interface on DUT +| | ... +| | ... | *Arguments:* +| | ... | - dut_node - Node to set L2 tag rewrite method. Type: dictionary +| | ... | - interface - (Sub-)interface name or SW index to set L2 tag rewrite +| | ... | method. Type: string or integer +| | ... | - tag_rewrite_method - Tag rewrite method. Type: string +| | ... | - push_dot1q - True to push tags as Dot1q, False to push tags as +| | ... | Dot1ad (Optional). Type: boolean +| | ... | - tag1_id - VLAN tag1 ID (Optional). Type: integer +| | ... | - tag2_id - VLAN tag2 ID (Optional). Type: integer +| | ... +| | ... | *Return:* +| | ... +| | ... | - No value returned +| | ... +| | ... | *Example:* +| | ... +| | ... | \| L2 Tag Rewrite Method Is Set On Interface \| ${nodes['DUT1']} \ +| | ... | \| 9 \| pop-1 \| +| | ... | \| L2 Tag Rewrite Method Is Set On Interface \| ${nodes['DUT2']} \ +| | ... | \| 10 \| translate-1-2 \| push_dot1q=${False} \| tag1_id=10 \ +| | ... | \| tag1_id=20 \| +| | ... +| | [Arguments] | ${dut_node} | ${interface} | ${tag_rewrite_method} +| | ... | ${push_dot1q}=${True} | ${tag1_id}=${None} | ${tag2_id}=${None} +| | ${result}= | Evaluate | isinstance($interface, int) +| | ${interface_name}= | Run Keyword If | ${result} | Set Variable | ${interface} +| | ... | ELSE | Get interface name | ${dut_node} | ${interface} +| | L2 Vlan Tag Rewrite | ${dut_node} | ${interface_name} | ${tag_rewrite_method} +| | ... | push_dot1q=${push_dot1q} | tag1_id=${tag1_id} | tag2_id=${tag2_id}