blob: 8decac52b9d9800f2ca7323259c21329ae8cf13d [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Florin Coras3ea6ce22017-12-11 09:09:05 -08002
3import unittest
4
5from framework import VppTestCase, VppTestRunner
Florin Corasb795bd02017-12-14 11:30:48 -08006from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
Florin Coras3ea6ce22017-12-11 09:09:05 -08007
8
9class TestTCP(VppTestCase):
10 """ TCP Test Case """
11
12 @classmethod
13 def setUpClass(cls):
14 super(TestTCP, cls).setUpClass()
15
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -070016 @classmethod
17 def tearDownClass(cls):
18 super(TestTCP, cls).tearDownClass()
19
Florin Coras3ea6ce22017-12-11 09:09:05 -080020 def setUp(self):
21 super(TestTCP, self).setUp()
22 self.vapi.session_enable_disable(is_enabled=1)
Klement Sekerab9ef2732018-06-24 22:49:33 +020023 self.create_loopback_interfaces(2)
Florin Corasb795bd02017-12-14 11:30:48 -080024
25 table_id = 0
26
27 for i in self.lo_interfaces:
28 i.admin_up()
29
30 if table_id != 0:
31 tbl = VppIpTable(self, table_id)
32 tbl.add_vpp_config()
33
34 i.set_table_ip4(table_id)
35 i.config_ip4()
36 table_id += 1
37
38 # Configure namespaces
Paul Vinciguerra22ab6f72019-03-07 17:55:33 -080039 self.vapi.app_namespace_add_del(namespace_id=b"0",
Ole Troane1ade682019-03-04 23:55:43 +010040 sw_if_index=self.loop0.sw_if_index)
Paul Vinciguerra22ab6f72019-03-07 17:55:33 -080041 self.vapi.app_namespace_add_del(namespace_id=b"1",
Ole Troane1ade682019-03-04 23:55:43 +010042 sw_if_index=self.loop1.sw_if_index)
Florin Coras3ea6ce22017-12-11 09:09:05 -080043
44 def tearDown(self):
Florin Corasb795bd02017-12-14 11:30:48 -080045 for i in self.lo_interfaces:
46 i.unconfig_ip4()
47 i.set_table_ip4(0)
48 i.admin_down()
49 self.vapi.session_enable_disable(is_enabled=0)
Florin Coras3ea6ce22017-12-11 09:09:05 -080050 super(TestTCP, self).tearDown()
51
Florin Corasb795bd02017-12-14 11:30:48 -080052 def test_tcp_transfer(self):
Florin Coras4399c2e2018-01-25 06:34:42 -080053 """ TCP echo client/server transfer """
Florin Corasb795bd02017-12-14 11:30:48 -080054
55 # Add inter-table routes
56 ip_t01 = VppIpRoute(self, self.loop1.local_ip4, 32,
57 [VppRoutePath("0.0.0.0",
58 0xffffffff,
59 nh_table_id=1)])
60 ip_t10 = VppIpRoute(self, self.loop0.local_ip4, 32,
61 [VppRoutePath("0.0.0.0",
62 0xffffffff,
63 nh_table_id=0)], table_id=1)
64 ip_t01.add_vpp_config()
65 ip_t10.add_vpp_config()
66
67 # Start builtin server and client
68 uri = "tcp://" + self.loop0.local_ip4 + "/1234"
Florin Coras4399c2e2018-01-25 06:34:42 -080069 error = self.vapi.cli("test echo server appns 0 fifo-size 4 uri " +
Florin Corasb795bd02017-12-14 11:30:48 -080070 uri)
71 if error:
72 self.logger.critical(error)
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -080073 self.assertNotIn("failed", error)
Florin Corasb795bd02017-12-14 11:30:48 -080074
Florin Coras4399c2e2018-01-25 06:34:42 -080075 error = self.vapi.cli("test echo client mbytes 10 appns 1 " +
76 "fifo-size 4 no-output test-bytes " +
77 "syn-timeout 2 uri " + uri)
Florin Corasb795bd02017-12-14 11:30:48 -080078 if error:
79 self.logger.critical(error)
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -080080 self.assertNotIn("failed", error)
Florin Corasb795bd02017-12-14 11:30:48 -080081
82 # Delete inter-table routes
83 ip_t01.remove_vpp_config()
84 ip_t10.remove_vpp_config()
Florin Coras3ea6ce22017-12-11 09:09:05 -080085
Florin Corasa8f53812018-11-08 13:58:19 -080086
87class TestTCPUnitTests(VppTestCase):
88 "TCP Unit Tests"
89
Paul Vinciguerra7f9b7f92019-03-12 19:23:27 -070090 @classmethod
91 def setUpClass(cls):
92 super(TestTCPUnitTests, cls).setUpClass()
93
94 @classmethod
95 def tearDownClass(cls):
96 super(TestTCPUnitTests, cls).tearDownClass()
97
Florin Corasa8f53812018-11-08 13:58:19 -080098 def setUp(self):
99 super(TestTCPUnitTests, self).setUp()
100 self.vapi.session_enable_disable(is_enabled=1)
101
102 def tearDown(self):
103 super(TestTCPUnitTests, self).tearDown()
104 self.vapi.session_enable_disable(is_enabled=0)
105
106 def test_tcp_unittest(self):
107 """ TCP Unit Tests """
108 error = self.vapi.cli("test tcp all")
109
110 if error:
111 self.logger.critical(error)
Paul Vinciguerra9a6dafd2019-03-06 15:11:28 -0800112 self.assertNotIn("failed", error)
Florin Corasa8f53812018-11-08 13:58:19 -0800113
Florin Coras3ea6ce22017-12-11 09:09:05 -0800114if __name__ == '__main__':
115 unittest.main(testRunner=VppTestRunner)