Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 1 | """Test suite for the cProfile module.""" |
| 2 | |
| 3 | import sys |
Benjamin Peterson | 6ccc703 | 2008-10-07 02:32:59 +0000 | [diff] [blame] | 4 | from test.support import run_unittest, TESTFN, unlink |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 5 | |
| 6 | # rip off all interesting stuff from test_profile |
| 7 | import cProfile |
| 8 | from test.test_profile import ProfileTest, regenerate_expected_output |
Sanyam Khurana | 7973e27 | 2017-11-08 16:20:56 +0530 | [diff] [blame] | 9 | from test.support.script_helper import assert_python_failure, assert_python_ok |
Serhiy Storchaka | e437a10 | 2016-04-24 21:41:02 +0300 | [diff] [blame] | 10 | |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 11 | |
| 12 | class CProfileTest(ProfileTest): |
| 13 | profilerclass = cProfile.Profile |
Giampaolo Rodola' | b071d4f | 2013-02-12 14:31:06 +0100 | [diff] [blame] | 14 | profilermodule = cProfile |
Antoine Pitrou | 8477f7a | 2014-06-27 23:49:29 -0400 | [diff] [blame] | 15 | expected_max_output = "{built-in method builtins.max}" |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 16 | |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 17 | def get_expected_output(self): |
| 18 | return _ProfileOutput |
| 19 | |
Benjamin Peterson | 6ccc703 | 2008-10-07 02:32:59 +0000 | [diff] [blame] | 20 | # Issue 3895. |
| 21 | def test_bad_counter_during_dealloc(self): |
| 22 | import _lsprof |
| 23 | # Must use a file as StringIO doesn't trigger the bug. |
Victor Stinner | 7f86811 | 2011-06-30 00:00:45 +0200 | [diff] [blame] | 24 | orig_stderr = sys.stderr |
| 25 | try: |
| 26 | with open(TESTFN, 'w') as file: |
| 27 | sys.stderr = file |
| 28 | try: |
| 29 | obj = _lsprof.Profiler(lambda: int) |
| 30 | obj.enable() |
| 31 | obj = _lsprof.Profiler(1) |
| 32 | obj.disable() |
Christian Heimes | 647f120 | 2013-12-05 07:40:29 +0100 | [diff] [blame] | 33 | obj.clear() |
Victor Stinner | 7f86811 | 2011-06-30 00:00:45 +0200 | [diff] [blame] | 34 | finally: |
| 35 | sys.stderr = orig_stderr |
| 36 | finally: |
| 37 | unlink(TESTFN) |
Benjamin Peterson | 6ccc703 | 2008-10-07 02:32:59 +0000 | [diff] [blame] | 38 | |
Sanyam Khurana | 7973e27 | 2017-11-08 16:20:56 +0530 | [diff] [blame] | 39 | # Issue 21862 |
| 40 | def test_module_path_option(self): |
| 41 | # Test -m switch with modules |
| 42 | |
| 43 | # Test that -m switch needs an argument |
| 44 | assert_python_failure('-m', 'cProfile', '-m') |
| 45 | |
| 46 | # Test failure for not-existent module |
| 47 | assert_python_failure('-m', 'cProfile', '-m', 'random_module_xyz') |
| 48 | |
| 49 | # Test successful run |
| 50 | assert_python_ok('-m', 'cProfile', '-m', 'timeit', '-n', '1') |
| 51 | |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 52 | |
| 53 | def test_main(): |
| 54 | run_unittest(CProfileTest) |
| 55 | |
| 56 | def main(): |
| 57 | if '-r' not in sys.argv: |
| 58 | test_main() |
| 59 | else: |
| 60 | regenerate_expected_output(__file__, CProfileTest) |
| 61 | |
| 62 | |
| 63 | # Don't remove this comment. Everything below it is auto-generated. |
| 64 | #--cut-------------------------------------------------------------------------- |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 65 | _ProfileOutput = {} |
| 66 | _ProfileOutput['print_stats'] = """\ |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 67 | 28 0.028 0.001 0.028 0.001 profilee.py:110(__getattr__) |
| 68 | 1 0.270 0.270 1.000 1.000 profilee.py:25(testfunc) |
| 69 | 23/3 0.150 0.007 0.170 0.057 profilee.py:35(factorial) |
| 70 | 20 0.020 0.001 0.020 0.001 profilee.py:48(mul) |
| 71 | 2 0.040 0.020 0.600 0.300 profilee.py:55(helper) |
| 72 | 4 0.116 0.029 0.120 0.030 profilee.py:73(helper1) |
| 73 | 2 0.000 0.000 0.140 0.070 profilee.py:84(helper2_indirect) |
| 74 | 8 0.312 0.039 0.400 0.050 profilee.py:88(helper2) |
| 75 | 8 0.064 0.008 0.080 0.010 profilee.py:98(subhelper)""" |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 76 | _ProfileOutput['print_callers'] = """\ |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 77 | profilee.py:110(__getattr__) <- 16 0.016 0.016 profilee.py:98(subhelper) |
| 78 | profilee.py:25(testfunc) <- 1 0.270 1.000 <string>:1(<module>) |
| 79 | profilee.py:35(factorial) <- 1 0.014 0.130 profilee.py:25(testfunc) |
| 80 | 20/3 0.130 0.147 profilee.py:35(factorial) |
| 81 | 2 0.006 0.040 profilee.py:84(helper2_indirect) |
| 82 | profilee.py:48(mul) <- 20 0.020 0.020 profilee.py:35(factorial) |
| 83 | profilee.py:55(helper) <- 2 0.040 0.600 profilee.py:25(testfunc) |
| 84 | profilee.py:73(helper1) <- 4 0.116 0.120 profilee.py:55(helper) |
| 85 | profilee.py:84(helper2_indirect) <- 2 0.000 0.140 profilee.py:55(helper) |
| 86 | profilee.py:88(helper2) <- 6 0.234 0.300 profilee.py:55(helper) |
| 87 | 2 0.078 0.100 profilee.py:84(helper2_indirect) |
| 88 | profilee.py:98(subhelper) <- 8 0.064 0.080 profilee.py:88(helper2) |
Antoine Pitrou | 8477f7a | 2014-06-27 23:49:29 -0400 | [diff] [blame] | 89 | {built-in method builtins.hasattr} <- 4 0.000 0.004 profilee.py:73(helper1) |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 90 | 8 0.000 0.008 profilee.py:88(helper2) |
Antoine Pitrou | 8477f7a | 2014-06-27 23:49:29 -0400 | [diff] [blame] | 91 | {built-in method sys.exc_info} <- 4 0.000 0.000 profilee.py:73(helper1) |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 92 | {method 'append' of 'list' objects} <- 4 0.000 0.000 profilee.py:73(helper1)""" |
Benjamin Peterson | 7d76653 | 2008-10-06 22:05:00 +0000 | [diff] [blame] | 93 | _ProfileOutput['print_callees'] = """\ |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 94 | <string>:1(<module>) -> 1 0.270 1.000 profilee.py:25(testfunc) |
| 95 | profilee.py:110(__getattr__) -> |
| 96 | profilee.py:25(testfunc) -> 1 0.014 0.130 profilee.py:35(factorial) |
| 97 | 2 0.040 0.600 profilee.py:55(helper) |
| 98 | profilee.py:35(factorial) -> 20/3 0.130 0.147 profilee.py:35(factorial) |
| 99 | 20 0.020 0.020 profilee.py:48(mul) |
| 100 | profilee.py:48(mul) -> |
| 101 | profilee.py:55(helper) -> 4 0.116 0.120 profilee.py:73(helper1) |
| 102 | 2 0.000 0.140 profilee.py:84(helper2_indirect) |
| 103 | 6 0.234 0.300 profilee.py:88(helper2) |
Antoine Pitrou | 8477f7a | 2014-06-27 23:49:29 -0400 | [diff] [blame] | 104 | profilee.py:73(helper1) -> 4 0.000 0.004 {built-in method builtins.hasattr} |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 105 | profilee.py:84(helper2_indirect) -> 2 0.006 0.040 profilee.py:35(factorial) |
| 106 | 2 0.078 0.100 profilee.py:88(helper2) |
| 107 | profilee.py:88(helper2) -> 8 0.064 0.080 profilee.py:98(subhelper) |
| 108 | profilee.py:98(subhelper) -> 16 0.016 0.016 profilee.py:110(__getattr__) |
Antoine Pitrou | 8477f7a | 2014-06-27 23:49:29 -0400 | [diff] [blame] | 109 | {built-in method builtins.hasattr} -> 12 0.012 0.012 profilee.py:110(__getattr__)""" |
Benjamin Peterson | 4e299c7 | 2008-10-06 21:03:05 +0000 | [diff] [blame] | 110 | |
| 111 | if __name__ == "__main__": |
| 112 | main() |