aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/robot/iacl.robot
blob: 659edb8c30146aab05ef486d2e13bfce292ebfbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# 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 ***
| Documentation | Keywords for iACL tests
| Resource | resources/libraries/robot/default.robot
| Library | resources.libraries.python.InterfaceUtil
| Library | resources.libraries.python.NodePath

*** Keywords ***
| Node path computed for 3-node topology
| | [Arguments] | ${tg_node} | ${dut1_node} | ${dut2_node} | ${tg_node}
| | [Documentation] | *Create interface variables for 3-node topology.*
| | ...
| | ... | *Arguments:*
| | ... | - ${tg_node} - Node attached to the path. Type: dictionary
| | ... | - ${dut1_node} - Node attached to the path. Type: dictionary
| | ... | - ${dut2_node} - Node attached to the path. Type: dictionary
| | ...
| | ... | _Set testcase variables for nodes and interfaces._
| | ... | - ${tg_node} - Variable for node in path. Type: dictionary
| | ... | - ${dut1_node} - Variable for node in path. Type: dictionary
| | ... | - ${dut2_node} - 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
| | ... | - ${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).
| | ...
| | Append Nodes | ${tg_node} | ${dut1_node} | ${dut2_node} | ${tg_node}
| | Compute Path
| | ${tg_if1} | ${tg_node}= | Next Interface
| | ${dut1_if1} | ${dut1_node}= | Next Interface
| | ${dut1_if2} | ${dut1_node}= | Next Interface
| | ${dut2_if1} | ${dut2_node}= | Next Interface
| | ${dut2_if2} | ${dut2_node}= | Next Interface
| | ${tg_if2} | ${tg_node}= | Next Interface
| | ${tg_if1_mac}= | Get interface mac | ${tg_node} | ${tg_if1}
| | ${tg_if2_mac}= | Get interface mac | ${tg_node} | ${tg_if2}
| | ${dut1_if1_mac}= | Get interface mac | ${dut1_node} | ${dut1_if1}
| | ${dut1_if2_mac}= | Get interface mac | ${dut1_node} | ${dut1_if2}
| | Set Test Variable | ${tg_node}
| | Set Test Variable | ${tg_if1}
| | Set Test Variable | ${tg_if2}
| | Set Test Variable | ${dut1_node}
| | Set Test Variable | ${dut1_if1}
| | Set Test Variable | ${dut1_if2}
| | Set Test Variable | ${dut2_node}
| | 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}

| Interfaces in path are up
| | [Documentation] | *Set UP state on interfaces in path on nodes.*
| | ...
| | 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
| | Vpp Node Interfaces Ready Wait | ${dut1_node}
| | Vpp Node Interfaces Ready Wait | ${dut2_node}

| IPv4 Addresses set on the node interfaces
| | [Arguments] | ${dut_node} | ${int1} | ${ip_addr1} | ${int2} | ${ip_addr2}
| | ...         | ${prefix_length}
| | [Documentation] | Setup IPv4 adresses on the node interfaces
| | ...
| | ... | *Arguments*
| | ... | - ${dut_node} - VPP node.
| | ... | - ${int1} - First node interface.
| | ... | - ${ip_addr1} - First IP address.
| | ... | - ${int2} - Second node interface.
| | ... | - ${ip_addr2} - Second IP address.
| | ... | - ${prefix_length} - IP prefix length.
| | ...
| | ... | *Example*
| | ... | \| IPv4 Addresses set on the node interfaces \
| | ... | \| ${dut1_node} \| ${dut1_if1} \| ${dut1_if1_ip} \
| | ... | \| ${dut1_if2} \| ${dut1_if2_ip} \| ${prefix_length} \|
| | ...
| | Set Interface Address | ${dut_node} | ${int1} | ${ip_addr1}
| | ...                   | ${prefix_length}
| | Set Interface Address | ${dut_node} | ${int2} | ${ip_addr2}
| | ...                   | ${prefix_length}

| IPv6 Addresses set on the node interfaces
| | [Arguments] | ${dut_node} | ${int1} | ${ip_addr1} | ${int2} | ${ip_addr2}
| | ...         | ${prefix_length}
| | [Documentation] | Setup IPv6 adresses on the node interfaces
| | ...
| | ... | *Arguments*
| | ... | - ${dut_node} - VPP node.
| | ... | - ${int1} - First node interface.
| | ... | - ${ip_addr1} - First IP address.
| | ... | - ${int2} - Second node interface.
| | ... | - ${ip_addr2} - Second IP address.
| | ... | - ${prefix_length} - IP prefix length.
| | ...
| | ... | *Example*
| | ... | \| IPv6 Addresses set on the node interfaces \
| | ... | \| ${dut1_node} \| ${dut1_if1} \| ${dut1_if1_ip} \
| | ... | \| ${dut1_if2} \| ${dut1_if2_ip} \| ${prefix_length} \|
| | ...
| | Vpp Set If Ipv6 Addr | ${dut_node} | ${int1} | ${ip_addr1} | ${prefix_length}
| | Vpp Set If Ipv6 Addr | ${dut_node} | ${int2} | ${ip_addr2} | ${prefix_length}