blob: 031479eb7f49dad6659baf333f909822be8cf426 [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
Dmitry Valter34fa0ce2024-03-11 10:38:46 +000016from config import config
17
18import unittest
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080019
20DEFAULT_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
21
22
Dmitry Valter34fa0ce2024-03-11 10:38:46 +000023@unittest.skipIf("lb" in config.excluded_plugins, "Exclude LB plugin tests")
Dave Wallace8800f732023-08-31 00:47:44 -040024class TestLbEmptyApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020025 """TestLbEmptyApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080026
27 def test_lb_empty_vip_dump(self):
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080028 # no records should normally return [], but
29 # lb initializes with a default VIP
30 rv = self.vapi.lb_vip_dump()
31 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020032 self.assertEqual(rv, [], "Expected: [] Received: %r." % rv)
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080033
34 def test_lb_empty_as_dump(self):
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080035 # no records should return []
36 rv = self.vapi.lb_as_dump()
37 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020038 self.assertEqual(rv, [], "Expected: [] Received: %r." % rv)
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080039
40
Dmitry Valter34fa0ce2024-03-11 10:38:46 +000041@unittest.skipIf("lb" in config.excluded_plugins, "Exclude LB plugin tests")
Dave Wallace8800f732023-08-31 00:47:44 -040042class TestLbApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020043 """TestLbApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080044
45 def test_lb_vip_dump(self):
46 # add some vips
47 # rv = self.vapi.lb_add_del_vip(pfx=ipaddress.IPv4Network(u'1.2.3.0/24'), # noqa
48 # protocol=17,
49 # encap=0)
50 # print(rv)
51 self.vapi.cli("lb vip 2001::/16 encap gre6")
52 rv = self.vapi.lb_vip_dump()
53 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020054 self.assertEqual(
55 str(rv[-1].vip.pfx),
56 "2001::/16",
57 "Expected: 2001::/16 Received: %r." % rv[-1].vip.pfx,
58 )
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080059
60 self.vapi.cli("lb vip 2001::/16 del")
61
62
Dmitry Valter34fa0ce2024-03-11 10:38:46 +000063@unittest.skipIf("lb" in config.excluded_plugins, "Exclude LB plugin tests")
Dave Wallace8800f732023-08-31 00:47:44 -040064class TestLbAsApi(VppAsfTestCase):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020065 """TestLbAsApi"""
Hongjun Ni3efcd0d2019-06-10 19:43:48 +080066
67 def test_lb_as_dump(self):
68 # add some vips
69 self.vapi.cli("lb vip 2001::/16 encap gre6")
70 self.vapi.cli("lb as 2001::/16 2000::1")
71 # add some as's for the vips
72 # rv = self.vapi.lb_add_del_as(
73 # pfx=ipaddress.IPv4Network(u"10.0.0.0/24"),
74 # as_address=ipaddress.IPv4Address(u"192.168.1.1"))
75
76 # print(rv)
77 rv = self.vapi.lb_as_dump()
78 # print(rv)
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020079 self.assertEqual(
80 str(rv[0].vip.pfx),
81 "2001::/16",
82 'Expected: "2001::/16" Received: %r.' % rv[0].vip.pfx,
83 )
84 self.assertEqual(
85 str(rv[0].app_srv),
86 "2000::1",
87 'Expected: "2000::1" Received: %r.' % rv[0].app_srv,
88 )