Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 1 | # 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 | |
Pratikshya Prasai | 657bdf7 | 2022-08-18 11:09:38 -0400 | [diff] [blame^] | 15 | import asfframework |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 16 | import ipaddress |
| 17 | |
| 18 | DEFAULT_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 |
| 19 | |
| 20 | |
Pratikshya Prasai | 657bdf7 | 2022-08-18 11:09:38 -0400 | [diff] [blame^] | 21 | class TestLbEmptyApi(asfframework.VppTestCase): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 22 | """TestLbEmptyApi""" |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 23 | |
| 24 | def test_lb_empty_vip_dump(self): |
| 25 | |
| 26 | # no records should normally return [], but |
| 27 | # lb initializes with a default VIP |
| 28 | rv = self.vapi.lb_vip_dump() |
| 29 | # print(rv) |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 30 | self.assertEqual(rv, [], "Expected: [] Received: %r." % rv) |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 31 | |
| 32 | def test_lb_empty_as_dump(self): |
| 33 | |
| 34 | # no records should return [] |
| 35 | rv = self.vapi.lb_as_dump() |
| 36 | # print(rv) |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 37 | self.assertEqual(rv, [], "Expected: [] Received: %r." % rv) |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 38 | |
| 39 | |
Pratikshya Prasai | 657bdf7 | 2022-08-18 11:09:38 -0400 | [diff] [blame^] | 40 | class TestLbApi(asfframework.VppTestCase): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 41 | """TestLbApi""" |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 42 | |
| 43 | def test_lb_vip_dump(self): |
| 44 | # add some vips |
| 45 | # rv = self.vapi.lb_add_del_vip(pfx=ipaddress.IPv4Network(u'1.2.3.0/24'), # noqa |
| 46 | # protocol=17, |
| 47 | # encap=0) |
| 48 | # print(rv) |
| 49 | self.vapi.cli("lb vip 2001::/16 encap gre6") |
| 50 | rv = self.vapi.lb_vip_dump() |
| 51 | # print(rv) |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 52 | self.assertEqual( |
| 53 | str(rv[-1].vip.pfx), |
| 54 | "2001::/16", |
| 55 | "Expected: 2001::/16 Received: %r." % rv[-1].vip.pfx, |
| 56 | ) |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 57 | |
| 58 | self.vapi.cli("lb vip 2001::/16 del") |
| 59 | |
| 60 | |
Pratikshya Prasai | 657bdf7 | 2022-08-18 11:09:38 -0400 | [diff] [blame^] | 61 | class TestLbAsApi(asfframework.VppTestCase): |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 62 | """TestLbAsApi""" |
Hongjun Ni | 3efcd0d | 2019-06-10 19:43:48 +0800 | [diff] [blame] | 63 | |
| 64 | def test_lb_as_dump(self): |
| 65 | # add some vips |
| 66 | self.vapi.cli("lb vip 2001::/16 encap gre6") |
| 67 | self.vapi.cli("lb as 2001::/16 2000::1") |
| 68 | # add some as's for the vips |
| 69 | # rv = self.vapi.lb_add_del_as( |
| 70 | # pfx=ipaddress.IPv4Network(u"10.0.0.0/24"), |
| 71 | # as_address=ipaddress.IPv4Address(u"192.168.1.1")) |
| 72 | |
| 73 | # print(rv) |
| 74 | rv = self.vapi.lb_as_dump() |
| 75 | # print(rv) |
Klement Sekera | d9b0c6f | 2022-04-26 19:02:15 +0200 | [diff] [blame] | 76 | self.assertEqual( |
| 77 | str(rv[0].vip.pfx), |
| 78 | "2001::/16", |
| 79 | 'Expected: "2001::/16" Received: %r.' % rv[0].vip.pfx, |
| 80 | ) |
| 81 | self.assertEqual( |
| 82 | str(rv[0].app_srv), |
| 83 | "2000::1", |
| 84 | 'Expected: "2000::1" Received: %r.' % rv[0].app_srv, |
| 85 | ) |