blob: 9608d0473a6d6806d51931e5049d9beb338d9e42 [file] [log] [blame]
Hongjun Ni3efcd0d2019-06-10 19:43:48 +08001# Copyright (c) 2019. Vinci Consulting Corp. All Rights Reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Dave Wallace8800f732023-08-31 00:47:44 -040015from asfframework import VppAsfTestCase
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080016
17DEFAULT_VIP = "lb_vip_details(_0=978, context=12, vip=vl_api_lb_ip_addr_t(pfx=IPv6Network(u'::/0'), protocol=<vl_api_ip_proto_t.IP_API_PROTO_RESERVED: 255>, port=0), encap=<vl_api_lb_encap_type_t.LB_API_ENCAP_TYPE_GRE4: 0>, dscp=<vl_api_ip_dscp_t.IP_API_DSCP_CS0: 0>, srv_type=<vl_api_lb_srv_type_t.LB_API_SRV_TYPE_CLUSTERIP: 0>, target_port=0, flow_table_length=0)" # noqa
18
19
Dave Wallace8800f732023-08-31 00:47:44 -040020class TestLbEmptyApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020021 """TestLbEmptyApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080022
23 def test_lb_empty_vip_dump(self):
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080024 # no records should normally return [], but
25 # lb initializes with a default VIP
26 rv = self.vapi.lb_vip_dump()
27 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020028 self.assertEqual(rv, [], "Expected: [] Received: %r." % rv)
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080029
30 def test_lb_empty_as_dump(self):
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080031 # no records should return []
32 rv = self.vapi.lb_as_dump()
33 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020034 self.assertEqual(rv, [], "Expected: [] Received: %r." % rv)
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080035
36
Dave Wallace8800f732023-08-31 00:47:44 -040037class TestLbApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020038 """TestLbApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080039
40 def test_lb_vip_dump(self):
41 # add some vips
42 # rv = self.vapi.lb_add_del_vip(pfx=ipaddress.IPv4Network(u'1.2.3.0/24'), # noqa
43 # protocol=17,
44 # encap=0)
45 # print(rv)
46 self.vapi.cli("lb vip 2001::/16 encap gre6")
47 rv = self.vapi.lb_vip_dump()
48 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020049 self.assertEqual(
50 str(rv[-1].vip.pfx),
51 "2001::/16",
52 "Expected: 2001::/16 Received: %r." % rv[-1].vip.pfx,
53 )
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080054
55 self.vapi.cli("lb vip 2001::/16 del")
56
57
Dave Wallace8800f732023-08-31 00:47:44 -040058class TestLbAsApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020059 """TestLbAsApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080060
61 def test_lb_as_dump(self):
62 # add some vips
63 self.vapi.cli("lb vip 2001::/16 encap gre6")
64 self.vapi.cli("lb as 2001::/16 2000::1")
65 # add some as's for the vips
66 # rv = self.vapi.lb_add_del_as(
67 # pfx=ipaddress.IPv4Network(u"10.0.0.0/24"),
68 # as_address=ipaddress.IPv4Address(u"192.168.1.1"))
69
70 # print(rv)
71 rv = self.vapi.lb_as_dump()
72 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020073 self.assertEqual(
74 str(rv[0].vip.pfx),
75 "2001::/16",
76 'Expected: "2001::/16" Received: %r.' % rv[0].vip.pfx,
77 )
78 self.assertEqual(
79 str(rv[0].app_srv),
80 "2000::1",
81 'Expected: "2000::1" Received: %r.' % rv[0].app_srv,
82 )