CSIT-23 Add ARP request test.
[csit.git] / resources / libraries / robot / traffic.robot
index fc1fa36..c90067a 100644 (file)
 | | ...
 | | ... | *Arguments:*
 | | ...
-| | ... | _NOTE:_ Arguments are based on example:
+| | ... | _NOTE:_ Arguments are based on topology:
 | | ...             | TG(if1)->(if1)DUT(if2)->TG(if2)
 | | ...
-| | ... | - {tg_node} : Node to execute scripts on (TG). Type: dictionary
-| | ... | - {src_ip} - IP of source interface (TG-if1). Type: int
-| | ... | - {dst_ip} - IP of destination interface (TG-if2). Type: int
-| | ... | - {tx_src_port} - Interface of TG-if1. Type: string
-| | ... | - {tx_src_mac} - MAC address of TG-if1. Type: string
-| | ... | - {tx_dst_mac} - MAC address of DUT-if1. Type: string
-| | ... | - {rx_port} - Interface of TG-if1. Type: string
-| | ... | - {rx_src_mac} - MAC address of DUT1-if2. Type: string
-| | ... | - {rx_dst_mac} - MAC address of TG-if2. Type: string
+| | ... | - tg_node - Node to execute scripts on (TG). Type: dictionary
+| | ... | - src_ip - IP of source interface (TG-if1). Type: int
+| | ... | - dst_ip - IP of destination interface (TG-if2). Type: int
+| | ... | - tx_src_port - Interface of TG-if1. Type: string
+| | ... | - tx_src_mac - MAC address of TG-if1. Type: string
+| | ... | - tx_dst_mac - MAC address of DUT-if1. Type: string
+| | ... | - rx_port - Interface of TG-if1. Type: string
+| | ... | - rx_src_mac - MAC address of DUT1-if2. Type: string
+| | ... | - rx_dst_mac - MAC address of TG-if2. Type: string
 | | ...
 | | ... | *Return:*
 | | ... | - No value returned
 | | ...
 | | ... | *Arguments:*
 | | ...
-| | ... | _NOTE:_ Arguments are based on example:
+| | ... | _NOTE:_ Arguments are based on topology:
 | | ...             | TG(if1)->(if1)DUT(if2)->TG(if2)
 | | ...
-| | ... | - {tg_node} : Node to execute scripts on (TG). Type: dictionary
-| | ... | - {src_ip} - IP of source interface (TG-if1). Type: int
-| | ... | - {dst_ip} - IP of destination interface (TG-if2). Type: int
-| | ... | - {tx_src_port} - Interface of TG-if1. Type: string
-| | ... | - {tx_src_mac} - MAC address of TG-if1. Type: string
-| | ... | - {tx_dst_mac} - MAC address of DUT-if1. Type: string
-| | ... | - {rx_port} - Interface of TG-if1. Type: string
-| | ... | - {rx_src_mac} - MAC address of DUT1-if2. Type: string
-| | ... | - {rx_dst_mac} - MAC address of TG-if2. Type: string
+| | ... | - tg_node - Node to execute scripts on (TG). Type: dictionary
+| | ... | - src_ip - IP of source interface (TG-if1). Type: int
+| | ... | - dst_ip - IP of destination interface (TG-if2). Type: int
+| | ... | - tx_src_port - Interface of TG-if1. Type: string
+| | ... | - tx_src_mac - MAC address of TG-if1. Type: string
+| | ... | - tx_dst_mac - MAC address of DUT-if1. Type: string
+| | ... | - rx_port - Interface of TG-if1. Type: string
+| | ... | - rx_src_mac - MAC address of DUT1-if2. Type: string
+| | ... | - rx_dst_mac - MAC address of TG-if2. Type: string
 | | ...
 | | ... | *Return:*
 | | ... | - No value returned
 | | Run Keyword And Expect Error | ICMP echo Rx timeout |
 | | ... | Run Traffic Script On Node | send_icmp_check_headers.py
 | | ... | ${tg_node} | ${args}
+
+| Send Packet And Check ARP Request
+| | [Documentation] | Send IP packet from tx_port and check if ARP Request
+| | ...             | packet is received on rx_port.
+| | ...
+| | ... | *Arguments:*
+| | ...
+| | ... | _NOTE:_ Arguments are based on topology:
+| | ...             | TG(if1)->(if1)DUT(if2)->TG(if2)
+| | ...
+| | ... | - tg_node - Node to execute scripts on (TG). Type: dictionary
+| | ... | - tx_src_ip - Source IP address of transferred packet (TG-if1).
+| | ... |               Type: string
+| | ... | - tx_dst_ip - Destination IP address of transferred packet (TG-if2).
+| | ... |               Type: string
+| | ... | - tx_port - Interface from which the IP packet is sent (TG-if1).
+| | ... |             Type: string
+| | ... | - tx_dst_mac - Destination MAC address of IP packet (DUT-if1).
+| | ... |                Type: string
+| | ... | - rx_port - Interface where the IP packet is received (TG-if2).
+| | ... |             Type: string
+| | ... | - rx_src_mac - Source MAC address of ARP packet (DUT-if2).
+| | ... |                Type: string
+| | ... | - rx_arp_src_ip - Source IP address of ARP packet (DUT-if2).
+| | ... |                   Type: string
+| | ... | - rx_arp_dst_ip - Destination IP address of ARP packet. Type: string
+| | ...
+| | ... | *Return:*
+| | ... | - No value returned
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Send Packet And Check ARP Packet \| ${nodes['TG']} \| 16.0.0.1 \
+| | ... | \| 32.0.0.1 \| eth2 \| 08:00:27:cc:4f:54 \
+| | ... | \| eth4 \| 08:00:27:5b:49:dd \| 08:00:27:54:71:02 \|
+| | ...
+| | [Arguments] | ${tg_node} | ${tx_src_ip} | ${tx_dst_ip} | ${tx_port}
+| | ... | ${tx_dst_mac} | ${rx_port} | ${rx_dst_mac} | ${rx_arp_src_ip}
+| | ... | ${rx_arp_dst_ip}
+| | ${args}= | Catenate
+| | ... | --tx_dst_mac | ${tx_dst_mac} | --rx_dst_mac | ${rx_dst_mac}
+| | ... | --tx_src_ip | ${tx_src_ip} | --tx_dst_ip | ${tx_dst_ip}
+| | ... | --tx_if | ${tx_port} | --rx_if | ${rx_port}
+| | ... | --rx_arp_src_ip ${rx_arp_src_ip} | --rx_arp_dst_ip ${rx_arp_dst_ip}
+| | Run Traffic Script On Node | send_icmp_check_arp.py | ${tg_node} | ${args}