Guido van Rossum | f137f75 | 2001-10-04 00:58:24 +0000 | [diff] [blame] | 1 | """Test suite for the profile module.""" |
| 2 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 3 | import os |
| 4 | import sys |
| 5 | import pstats |
| 6 | import unittest |
| 7 | from difflib import unified_diff |
| 8 | from io import StringIO |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 9 | from test.support import run_unittest |
Guido van Rossum | f137f75 | 2001-10-04 00:58:24 +0000 | [diff] [blame] | 10 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 11 | import profile |
| 12 | from test.profilee import testfunc, timer |
Tim Peters | 527e64f | 2001-10-04 05:36:56 +0000 | [diff] [blame] | 13 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 14 | |
| 15 | class ProfileTest(unittest.TestCase): |
| 16 | |
| 17 | profilerclass = profile.Profile |
| 18 | methodnames = ['print_stats', 'print_callers', 'print_callees'] |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 19 | |
| 20 | def get_expected_output(self): |
| 21 | return _ProfileOutput |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 22 | |
| 23 | @classmethod |
| 24 | def do_profiling(cls): |
| 25 | results = [] |
| 26 | prof = cls.profilerclass(timer, 0.001) |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 27 | start_timer = timer() |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 28 | prof.runctx("testfunc()", globals(), locals()) |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 29 | results.append(timer() - start_timer) |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 30 | for methodname in cls.methodnames: |
| 31 | s = StringIO() |
| 32 | stats = pstats.Stats(prof, stream=s) |
| 33 | stats.strip_dirs().sort_stats("stdname") |
| 34 | getattr(stats, methodname)() |
Brett Cannon | c17b35c | 2008-03-01 04:28:23 +0000 | [diff] [blame] | 35 | output = s.getvalue().splitlines() |
| 36 | mod_name = testfunc.__module__.rsplit('.', 1)[1] |
| 37 | # Only compare against stats originating from the test file. |
| 38 | # Prevents outside code (e.g., the io module) from causing |
| 39 | # unexpected output. |
| 40 | output = [line.rstrip() for line in output if mod_name in line] |
| 41 | results.append('\n'.join(output)) |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 42 | return results |
| 43 | |
| 44 | def test_cprofile(self): |
| 45 | results = self.do_profiling() |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 46 | expected = self.get_expected_output() |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 47 | self.assertEqual(results[0], 1000) |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 48 | for i, method in enumerate(self.methodnames): |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 49 | if results[i+1] != expected[method]: |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 50 | print("Stats.%s output for %s doesn't fit expectation!" % |
| 51 | (method, self.profilerclass.__name__)) |
| 52 | print('\n'.join(unified_diff( |
| 53 | results[i+1].split('\n'), |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 54 | expected[method].split('\n')))) |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 55 | |
| 56 | |
| 57 | def regenerate_expected_output(filename, cls): |
| 58 | filename = filename.rstrip('co') |
| 59 | print('Regenerating %s...' % filename) |
| 60 | results = cls.do_profiling() |
| 61 | |
| 62 | newfile = [] |
| 63 | with open(filename, 'r') as f: |
| 64 | for line in f: |
| 65 | newfile.append(line) |
Brett Cannon | c17b35c | 2008-03-01 04:28:23 +0000 | [diff] [blame] | 66 | if line.startswith('#--cut'): |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 67 | break |
| 68 | |
| 69 | with open(filename, 'w') as f: |
| 70 | f.writelines(newfile) |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 71 | f.write("_ProfileOutput = {}\n") |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 72 | for i, method in enumerate(cls.methodnames): |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 73 | f.write('_ProfileOutput[%r] = """\\\n%s"""\n' % ( |
| 74 | method, results[i+1])) |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 75 | f.write('\nif __name__ == "__main__":\n main()\n') |
| 76 | |
Armin Rigo | a871ef2 | 2006-02-08 12:53:56 +0000 | [diff] [blame] | 77 | |
| 78 | def test_main(): |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 79 | run_unittest(ProfileTest) |
Guido van Rossum | f137f75 | 2001-10-04 00:58:24 +0000 | [diff] [blame] | 80 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 81 | def main(): |
| 82 | if '-r' not in sys.argv: |
| 83 | test_main() |
Armin Rigo | a871ef2 | 2006-02-08 12:53:56 +0000 | [diff] [blame] | 84 | else: |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 85 | regenerate_expected_output(__file__, ProfileTest) |
Armin Rigo | a871ef2 | 2006-02-08 12:53:56 +0000 | [diff] [blame] | 86 | |
Guido van Rossum | f137f75 | 2001-10-04 00:58:24 +0000 | [diff] [blame] | 87 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 88 | # Don't remove this comment. Everything below it is auto-generated. |
| 89 | #--cut-------------------------------------------------------------------------- |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 90 | _ProfileOutput = {} |
| 91 | _ProfileOutput['print_stats'] = """\ |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 92 | 28 27.972 0.999 27.972 0.999 profilee.py:110(__getattr__) |
| 93 | 1 269.996 269.996 999.769 999.769 profilee.py:25(testfunc) |
| 94 | 23/3 149.937 6.519 169.917 56.639 profilee.py:35(factorial) |
| 95 | 20 19.980 0.999 19.980 0.999 profilee.py:48(mul) |
| 96 | 2 39.986 19.993 599.830 299.915 profilee.py:55(helper) |
| 97 | 4 115.984 28.996 119.964 29.991 profilee.py:73(helper1) |
| 98 | 2 -0.006 -0.003 139.946 69.973 profilee.py:84(helper2_indirect) |
| 99 | 8 311.976 38.997 399.912 49.989 profilee.py:88(helper2) |
Brett Cannon | c17b35c | 2008-03-01 04:28:23 +0000 | [diff] [blame] | 100 | 8 63.976 7.997 79.960 9.995 profilee.py:98(subhelper)""" |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 101 | _ProfileOutput['print_callers'] = """\ |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 102 | :0(append) <- profilee.py:73(helper1)(4) 119.964 |
| 103 | :0(exc_info) <- profilee.py:73(helper1)(4) 119.964 |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 104 | :0(hasattr) <- profilee.py:73(helper1)(4) 119.964 |
| 105 | profilee.py:88(helper2)(8) 399.912 |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 106 | profilee.py:110(__getattr__) <- :0(hasattr)(12) 11.964 |
| 107 | profilee.py:98(subhelper)(16) 79.960 |
| 108 | profilee.py:25(testfunc) <- <string>:1(<module>)(1) 999.767 |
| 109 | profilee.py:35(factorial) <- profilee.py:25(testfunc)(1) 999.769 |
| 110 | profilee.py:35(factorial)(20) 169.917 |
| 111 | profilee.py:84(helper2_indirect)(2) 139.946 |
| 112 | profilee.py:48(mul) <- profilee.py:35(factorial)(20) 169.917 |
| 113 | profilee.py:55(helper) <- profilee.py:25(testfunc)(2) 999.769 |
| 114 | profilee.py:73(helper1) <- profilee.py:55(helper)(4) 599.830 |
| 115 | profilee.py:84(helper2_indirect) <- profilee.py:55(helper)(2) 599.830 |
| 116 | profilee.py:88(helper2) <- profilee.py:55(helper)(6) 599.830 |
| 117 | profilee.py:84(helper2_indirect)(2) 139.946 |
Brett Cannon | c17b35c | 2008-03-01 04:28:23 +0000 | [diff] [blame] | 118 | profilee.py:98(subhelper) <- profilee.py:88(helper2)(8) 399.912""" |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 119 | _ProfileOutput['print_callees'] = """\ |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 120 | :0(hasattr) -> profilee.py:110(__getattr__)(12) 27.972 |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 121 | <string>:1(<module>) -> profilee.py:25(testfunc)(1) 999.769 |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 122 | profilee.py:110(__getattr__) -> |
| 123 | profilee.py:25(testfunc) -> profilee.py:35(factorial)(1) 169.917 |
| 124 | profilee.py:55(helper)(2) 599.830 |
| 125 | profilee.py:35(factorial) -> profilee.py:35(factorial)(20) 169.917 |
| 126 | profilee.py:48(mul)(20) 19.980 |
| 127 | profilee.py:48(mul) -> |
| 128 | profilee.py:55(helper) -> profilee.py:73(helper1)(4) 119.964 |
| 129 | profilee.py:84(helper2_indirect)(2) 139.946 |
| 130 | profilee.py:88(helper2)(6) 399.912 |
| 131 | profilee.py:73(helper1) -> :0(append)(4) -0.004 |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 132 | profilee.py:84(helper2_indirect) -> profilee.py:35(factorial)(2) 169.917 |
| 133 | profilee.py:88(helper2)(2) 399.912 |
| 134 | profilee.py:88(helper2) -> :0(hasattr)(8) 11.964 |
| 135 | profilee.py:98(subhelper)(8) 79.960 |
Brett Cannon | c17b35c | 2008-03-01 04:28:23 +0000 | [diff] [blame] | 136 | profilee.py:98(subhelper) -> profilee.py:110(__getattr__)(16) 27.972""" |
Guido van Rossum | f137f75 | 2001-10-04 00:58:24 +0000 | [diff] [blame] | 137 | |
| 138 | if __name__ == "__main__": |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 139 | main() |