stats: fix memory leakage when adding / deleting interfaces
[vpp.git] / test / test_stats_client.py
1 #!/usr/bin/env python2.7
2
3 import unittest
4 import time
5 import psutil
6 from vpp_papi.vpp_stats import VPPStats
7
8 from framework import VppTestCase, VppTestRunner
9
10
11 class StatsClientTestCase(VppTestCase):
12     """Test Stats Client"""
13
14     @classmethod
15     def setUpClass(cls):
16         super(StatsClientTestCase, cls).setUpClass()
17
18     @classmethod
19     def tearDownClass(cls):
20         super(StatsClientTestCase, cls).tearDownClass()
21
22     def test_set_errors(self):
23         """Test set errors"""
24         self.assertEqual(self.statistics.set_errors(), {})
25         self.assertEqual(self.statistics.get_counter('/err/ethernet-input/no'),
26                          [0])
27
28     def test_client_fd_leak(self):
29         """Test file descriptor count - VPP-1486"""
30
31         cls = self.__class__
32         p = psutil.Process()
33         initial_fds = p.num_fds()
34
35         for _ in range(100):
36             stats = VPPStats(socketname=cls.stats_sock)
37             stats.disconnect()
38
39         ending_fds = p.num_fds()
40         self.assertEqual(initial_fds, ending_fds,
41                          "initial client side file descriptor count: %s "
42                          "is not equal to "
43                          "ending client side file descriptor count: %s" % (
44                              initial_fds, ending_fds))
45     @unittest.skip("Manual only")
46     def test_mem_leak(self):
47         def loop():
48             print('Running loop')
49             for i in range(50):
50                 rv = self.vapi.papi.tap_create_v2(id=i, use_random_mac=1)
51                 self.assertEqual(rv.retval, 0)
52                 rv = self.vapi.papi.tap_delete_v2(sw_if_index=rv.sw_if_index)
53                 self.assertEqual(rv.retval, 0)
54
55         before = self.statistics.get_counter('/mem/statseg/used')
56         loop()
57         self.vapi.cli("memory-trace on stats-segment")
58         for j in range(100):
59             loop()
60         print(self.vapi.cli("show memory stats-segment verbose"))
61         print('AFTER', before, self.statistics.get_counter('/mem/statseg/used'))
62
63 if __name__ == '__main__':
64     unittest.main(testRunner=VppTestRunner)