X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Ftagging.robot;h=7d1d2feb813d5db1b803c0d0b57d8ac777adefc6;hp=e0f26a5938818ad13a4420f13af493216b76a7cd;hb=f58467f6bb90c5954bdf0de1f132c48d227710f8;hpb=d407c074289e530f62db02ca57c0af921af069cc diff --git a/resources/libraries/robot/tagging.robot b/resources/libraries/robot/tagging.robot index e0f26a5938..7d1d2feb81 100644 --- a/resources/libraries/robot/tagging.robot +++ b/resources/libraries/robot/tagging.robot @@ -21,56 +21,6 @@ *** 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} @@ -107,7 +57,43 @@ | | 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.*