blob: 398ab865b8863e181596fcad8c14a5756809338a [file] [log] [blame]
Guido van Rossumf137f752001-10-04 00:58:24 +00001"""Test suite for the profile module."""
2
Christian Heimes2202f872008-02-06 14:31:34 +00003import os
4import sys
5import pstats
6import unittest
7from difflib import unified_diff
8from io import StringIO
9from test.test_support import run_unittest
Guido van Rossumf137f752001-10-04 00:58:24 +000010
Christian Heimes2202f872008-02-06 14:31:34 +000011import profile
12from test.profilee import testfunc, timer
Tim Peters527e64f2001-10-04 05:36:56 +000013
Christian Heimes2202f872008-02-06 14:31:34 +000014
15class ProfileTest(unittest.TestCase):
16
17 profilerclass = profile.Profile
18 methodnames = ['print_stats', 'print_callers', 'print_callees']
19 expected_output = {}
20
21 @classmethod
22 def do_profiling(cls):
23 results = []
24 prof = cls.profilerclass(timer, 0.001)
25 prof.runctx("testfunc()", globals(), locals())
26 results.append(timer())
27 for methodname in cls.methodnames:
28 s = StringIO()
29 stats = pstats.Stats(prof, stream=s)
30 stats.strip_dirs().sort_stats("stdname")
31 getattr(stats, methodname)()
Brett Cannonc17b35c2008-03-01 04:28:23 +000032 output = s.getvalue().splitlines()
33 mod_name = testfunc.__module__.rsplit('.', 1)[1]
34 # Only compare against stats originating from the test file.
35 # Prevents outside code (e.g., the io module) from causing
36 # unexpected output.
37 output = [line.rstrip() for line in output if mod_name in line]
38 results.append('\n'.join(output))
Christian Heimes2202f872008-02-06 14:31:34 +000039 return results
40
41 def test_cprofile(self):
42 results = self.do_profiling()
43 self.assertEqual(results[0], 43000)
44 for i, method in enumerate(self.methodnames):
45 if results[i+1] != self.expected_output[method]:
46 print("Stats.%s output for %s doesn't fit expectation!" %
47 (method, self.profilerclass.__name__))
48 print('\n'.join(unified_diff(
49 results[i+1].split('\n'),
50 self.expected_output[method].split('\n'))))
51
52
53def regenerate_expected_output(filename, cls):
54 filename = filename.rstrip('co')
55 print('Regenerating %s...' % filename)
56 results = cls.do_profiling()
57
58 newfile = []
59 with open(filename, 'r') as f:
60 for line in f:
61 newfile.append(line)
Brett Cannonc17b35c2008-03-01 04:28:23 +000062 if line.startswith('#--cut'):
Christian Heimes2202f872008-02-06 14:31:34 +000063 break
64
65 with open(filename, 'w') as f:
66 f.writelines(newfile)
67 for i, method in enumerate(cls.methodnames):
68 f.write('%s.expected_output[%r] = """\\\n%s"""\n' % (
69 cls.__name__, method, results[i+1]))
70 f.write('\nif __name__ == "__main__":\n main()\n')
71
Armin Rigoa871ef22006-02-08 12:53:56 +000072
73def test_main():
Christian Heimes2202f872008-02-06 14:31:34 +000074 run_unittest(ProfileTest)
Guido van Rossumf137f752001-10-04 00:58:24 +000075
Christian Heimes2202f872008-02-06 14:31:34 +000076def main():
77 if '-r' not in sys.argv:
78 test_main()
Armin Rigoa871ef22006-02-08 12:53:56 +000079 else:
Christian Heimes2202f872008-02-06 14:31:34 +000080 regenerate_expected_output(__file__, ProfileTest)
Armin Rigoa871ef22006-02-08 12:53:56 +000081
Guido van Rossumf137f752001-10-04 00:58:24 +000082
Christian Heimes2202f872008-02-06 14:31:34 +000083# Don't remove this comment. Everything below it is auto-generated.
84#--cut--------------------------------------------------------------------------
85ProfileTest.expected_output['print_stats'] = """\
Christian Heimes2202f872008-02-06 14:31:34 +000086 28 27.972 0.999 27.972 0.999 profilee.py:110(__getattr__)
87 1 269.996 269.996 999.769 999.769 profilee.py:25(testfunc)
88 23/3 149.937 6.519 169.917 56.639 profilee.py:35(factorial)
89 20 19.980 0.999 19.980 0.999 profilee.py:48(mul)
90 2 39.986 19.993 599.830 299.915 profilee.py:55(helper)
91 4 115.984 28.996 119.964 29.991 profilee.py:73(helper1)
92 2 -0.006 -0.003 139.946 69.973 profilee.py:84(helper2_indirect)
93 8 311.976 38.997 399.912 49.989 profilee.py:88(helper2)
Brett Cannonc17b35c2008-03-01 04:28:23 +000094 8 63.976 7.997 79.960 9.995 profilee.py:98(subhelper)"""
Christian Heimes2202f872008-02-06 14:31:34 +000095ProfileTest.expected_output['print_callers'] = """\
Christian Heimes2202f872008-02-06 14:31:34 +000096:0(append) <- profilee.py:73(helper1)(4) 119.964
97:0(exc_info) <- profilee.py:73(helper1)(4) 119.964
Christian Heimes2202f872008-02-06 14:31:34 +000098:0(hasattr) <- profilee.py:73(helper1)(4) 119.964
99 profilee.py:88(helper2)(8) 399.912
Christian Heimes2202f872008-02-06 14:31:34 +0000100profilee.py:110(__getattr__) <- :0(hasattr)(12) 11.964
101 profilee.py:98(subhelper)(16) 79.960
102profilee.py:25(testfunc) <- <string>:1(<module>)(1) 999.767
103profilee.py:35(factorial) <- profilee.py:25(testfunc)(1) 999.769
104 profilee.py:35(factorial)(20) 169.917
105 profilee.py:84(helper2_indirect)(2) 139.946
106profilee.py:48(mul) <- profilee.py:35(factorial)(20) 169.917
107profilee.py:55(helper) <- profilee.py:25(testfunc)(2) 999.769
108profilee.py:73(helper1) <- profilee.py:55(helper)(4) 599.830
109profilee.py:84(helper2_indirect) <- profilee.py:55(helper)(2) 599.830
110profilee.py:88(helper2) <- profilee.py:55(helper)(6) 599.830
111 profilee.py:84(helper2_indirect)(2) 139.946
Brett Cannonc17b35c2008-03-01 04:28:23 +0000112profilee.py:98(subhelper) <- profilee.py:88(helper2)(8) 399.912"""
Christian Heimes2202f872008-02-06 14:31:34 +0000113ProfileTest.expected_output['print_callees'] = """\
Christian Heimes2202f872008-02-06 14:31:34 +0000114:0(hasattr) -> profilee.py:110(__getattr__)(12) 27.972
Christian Heimes2202f872008-02-06 14:31:34 +0000115<string>:1(<module>) -> profilee.py:25(testfunc)(1) 999.769
Christian Heimes2202f872008-02-06 14:31:34 +0000116profilee.py:110(__getattr__) ->
117profilee.py:25(testfunc) -> profilee.py:35(factorial)(1) 169.917
118 profilee.py:55(helper)(2) 599.830
119profilee.py:35(factorial) -> profilee.py:35(factorial)(20) 169.917
120 profilee.py:48(mul)(20) 19.980
121profilee.py:48(mul) ->
122profilee.py:55(helper) -> profilee.py:73(helper1)(4) 119.964
123 profilee.py:84(helper2_indirect)(2) 139.946
124 profilee.py:88(helper2)(6) 399.912
125profilee.py:73(helper1) -> :0(append)(4) -0.004
Christian Heimes2202f872008-02-06 14:31:34 +0000126profilee.py:84(helper2_indirect) -> profilee.py:35(factorial)(2) 169.917
127 profilee.py:88(helper2)(2) 399.912
128profilee.py:88(helper2) -> :0(hasattr)(8) 11.964
129 profilee.py:98(subhelper)(8) 79.960
Brett Cannonc17b35c2008-03-01 04:28:23 +0000130profilee.py:98(subhelper) -> profilee.py:110(__getattr__)(16) 27.972"""
Guido van Rossumf137f752001-10-04 00:58:24 +0000131
132if __name__ == "__main__":
Christian Heimes2202f872008-02-06 14:31:34 +0000133 main()