diff options
author | Zdeno Olsovsky <zolsovsk@cisco.com> | 2016-06-01 13:41:09 +0200 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2016-06-16 11:05:03 +0000 |
commit | 8be64446049878a0fb4a91a3a8b0481e75b20205 (patch) | |
tree | a45b8570f15d0594d49820c771a5a774133422ab /resources/libraries/robot/traffic.robot | |
parent | 8e014c373bdcd281475d83669122ba5eeefb96c1 (diff) |
Router Advertisement Tests
-JIRA: CSIT-30
Change-Id: Iedb403d555284d36a81cc490a79e56b019ebeed0
Signed-off-by: Zdeno Olsovsky <zolsovsk@cisco.com>
Diffstat (limited to 'resources/libraries/robot/traffic.robot')
-rw-r--r-- | resources/libraries/robot/traffic.robot | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/resources/libraries/robot/traffic.robot b/resources/libraries/robot/traffic.robot index 7dba5efbe3..eb7dd7c6e1 100644 --- a/resources/libraries/robot/traffic.robot +++ b/resources/libraries/robot/traffic.robot @@ -239,3 +239,26 @@ | | Run Keyword And Expect Error | TCP/UDP Rx timeout | | ... | Run Traffic Script On Node | send_tcp_udp.py | | ... | ${tg_node} | ${args} + +| Receive And Check Router Advertisement Packet +| | [Documentation] | Wait until RA packet is received and then check +| | ... | specific packet fields whether they are correct. +| | ... +| | ... | *Arguments:* +| | ... +| | ... | - node - Node where to check for RA packet. Type: dictionary +| | ... | - rx_port - Interface where the packet is received. Type: string +| | ... | - src_mac - MAC address of source interface from which the link-local +| | ... | IPv6 address is constructed and checked. Type: string +| | ... +| | ... | *Return:* +| | ... | - No value returned +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Receive And Check Router Advertisement Packet \ +| | ... | \| ${nodes['DUT1']} \| eth2 \| 08:00:27:cc:4f:54 \| +| | ... +| | [Arguments] | ${node} | ${rx_port} | ${src_mac} +| | ${args}= | Catenate | --rx_if | ${rx_port} | --src_mac | ${src_mac} +| | Run Traffic Script On Node | check_ra_packet.py | ${node} | ${args} |