blob: 672a77a0e0a6d48896cc17a4d752bf9595a15005 [file] [log] [blame]
Paul Vinciguerra59954822019-03-11 05:04:12 -07001#!/usr/bin/env python2.7
2
3import unittest
Ole Troan92e30822019-06-16 12:33:51 +02004import time
Paul Vinciguerra59954822019-03-11 05:04:12 -07005import psutil
6from vpp_papi.vpp_stats import VPPStats
7
8from framework import VppTestCase, VppTestRunner
9
10
11class 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
Ole Troan233e4682019-05-16 15:01:34 +020022 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
Paul Vinciguerra59954822019-03-11 05:04:12 -070028 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))
Ole Troan92e30822019-06-16 12:33:51 +020045 @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'))
Paul Vinciguerra59954822019-03-11 05:04:12 -070062
63if __name__ == '__main__':
64 unittest.main(testRunner=VppTestRunner)