CSIT-227, CSIT-240 IPv4/IPv6 Multipath routing tests
[csit.git] / resources / libraries / python / Routing.py
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Routing utilities library."""
15
16 from resources.libraries.python.VatExecutor import VatTerminal
17 from resources.libraries.python.topology import Topology
18 from resources.libraries.python.ssh import exec_cmd_no_error
19
20
21 class Routing(object):
22     """Routing utilities."""
23
24     # pylint: disable=too-many-arguments
25     @staticmethod
26     def vpp_route_add(node, network, prefix_len, gateway=None,
27                       interface=None, use_sw_index=True, resolve_attempts=10,
28                       count=1, vrf=None, lookup_vrf=None, multipath=False,
29                       weight=None):
30         """Add route to the VPP node.
31
32         :param node: Node to add route on.
33         :param network: Route destination network address.
34         :param prefix_len: Route destination network prefix length.
35         :param gateway: Route gateway address.
36         :param interface: Route interface.
37         :param vrf: VRF table ID (Optional).
38         :param use_sw_index: Use sw_if_index in VAT command.
39         :param resolve_attempts: Resolve attempts IP route add parameter.
40         :param count: number of IP addresses to add starting from network IP
41         with same prefix (increment is 1). If None, then is not used.
42         :param lookup_vrf: VRF table ID for lookup.
43         :param multipath: Enable multipath routing.
44         :param weight: Weight value for unequal cost multipath routing.
45         :type node: dict
46         :type network: str
47         :type prefix_len: int
48         :type gateway: str
49         :type interface: str
50         :type use_sw_index: bool
51         :type resolve_attempts: int
52         :type count: int
53         :type vrf: int
54         :type lookup_vrf: int
55         :type multipath: bool
56         :type weight: int
57         """
58         if use_sw_index:
59             int_cmd = ('sw_if_index {}'.
60                        format(Topology.get_interface_sw_index(node, interface)))
61         else:
62             int_cmd = interface
63
64         rap = 'resolve-attempts {}'.format(resolve_attempts) \
65             if resolve_attempts else ''
66
67         via = 'via {}'.format(gateway) if gateway else ''
68
69         cnt = 'count {}'.format(count) \
70             if count else ''
71
72         vrf = 'vrf {}'.format(vrf) if vrf else ''
73
74         lookup_vrf = 'lookup-in-vrf {}'.format(lookup_vrf) if lookup_vrf else ''
75
76         multipath = 'multipath' if multipath else ''
77
78         weight = 'weight {}'.format(weight) if weight else ''
79
80         with VatTerminal(node, json_param=False) as vat:
81             vat.vat_terminal_exec_cmd_from_template('add_route.vat',
82                                                     network=network,
83                                                     prefix_length=prefix_len,
84                                                     via=via,
85                                                     vrf=vrf,
86                                                     interface=int_cmd,
87                                                     resolve_attempts=rap,
88                                                     count=cnt,
89                                                     lookup_vrf=lookup_vrf,
90                                                     multipath=multipath,
91                                                     weight=weight)
92
93     @staticmethod
94     def add_fib_table(node, network, prefix_len, fib_id, place):
95         """Create new FIB table according to ID.
96
97         :param node: Node to add FIB on.
98         :param network: IP address to add to the FIB table.
99         :param prefix_len: IP address prefix length.
100         :param fib_id: FIB table ID.
101         :param place: Possible variants are local, drop.
102         :type node: dict
103         :type network: str
104         :type prefix_len: int
105         :type fib_id: int
106         :type place: str
107         """
108         with VatTerminal(node) as vat:
109             vat.vat_terminal_exec_cmd_from_template('add_fib_table.vat',
110                                                     network=network,
111                                                     prefix_length=prefix_len,
112                                                     fib_number=fib_id,
113                                                     where=place)
114
115     @staticmethod
116     def add_route(node, ip_addr, prefix, gateway, namespace=None):
117         """Add route in namespace.
118
119         :param node: Node where to execute command.
120         :param ip_addr: Route destination IP address.
121         :param prefix: IP prefix.
122         :param namespace: Execute command in namespace. Optional.
123         :param gateway: Gateway address.
124         :type node: dict
125         :type ip_addr: str
126         :type prefix: int
127         :type gateway: str
128         :type namespace: str
129         """
130         if namespace is not None:
131             cmd = 'ip netns exec {} ip route add {}/{} via {}'.format(
132                 namespace, ip_addr, prefix, gateway)
133         else:
134             cmd = 'ip route add {}/{} via {}'.format(ip_addr, prefix, gateway)
135         exec_cmd_no_error(node, cmd, sudo=True)