@@ -13,6 +13,11 @@ def setUp(self):
13
13
self .TestTracePath = TracePath (name = "TestTracePath" )
14
14
self .TestTracePathInstrumentationDisabled = TracePath (
15
15
name = "TestTracePathInstrumentationDisabled" , instrument = False )
16
+ @self .TestTracePathInstrumentationDisabled .inspect_function_execution
17
+ def instrumentation_disabled_function (x ):
18
+ return x
19
+ instrumentation_disabled_function (2 )
20
+
16
21
17
22
def test_constructor (self ):
18
23
self .assertEqual (len (self .TestTracePath .function_mapping_list ), 0 )
@@ -30,6 +35,7 @@ def test_constructor(self):
30
35
self .TestTracePath .function_measuring_list ,
31
36
list ))
32
37
self .assertTrue (isinstance (self .TestTracePath .graph , pgv .AGraph ))
38
+ self .assertEqual (len (self .TestTracePathInstrumentationDisabled .function_mapping_list ), 0 )
33
39
34
40
# }}}
35
41
# {{{ Test Instrumentation Decorator
@@ -52,10 +58,15 @@ def myfunc(x, y="the_moon"):
52
58
@self .TestTracePath .inspect_function_execution
53
59
def newfunc (x ):
54
60
return x
61
+
62
+ def not_on_stack (x ):
63
+ return newfunc (x )
64
+
55
65
self .EmptyTestTracePath .construct_graph ()
56
66
# Instrument another function and check if we don't change behavior
57
67
# and we capture arguments and execution time
58
68
newfunc (2 )
69
+ not_on_stack (2 )
59
70
self .empty_graph_file_name = tempfile .mktemp (suffix = '.svg' )
60
71
self .graph_file_name = tempfile .mktemp (suffix = '.svg' )
61
72
# }}}
@@ -70,40 +81,44 @@ def test_inspect_function_empty_execution(self):
70
81
# {{{ Test Non Empty Case
71
82
72
83
73
- def test_inspect_function_non_empty_execution (self ):
74
- # self.assertEqual(self.myfunc(2, y="the_sun"), 2)
75
- # Check if function invocations captured properly
76
- self .assertEqual (len (self .TestTracePath .function_mapping_list ), 2 )
77
- self .assertEqual (len (self .TestTracePath .function_measuring_list ), 2 )
78
- self .assertEqual (
79
- self .TestTracePath .function_mapping_list [0 ].called ,
80
- 'myfunc' )
81
- self .assertEqual (
82
- self .TestTracePath .function_mapping_list [0 ].caller ,
83
- 'setUp' )
84
- self .assertEqual (
85
- str (self .TestTracePath .function_mapping_list [0 ].args ),
86
- '(2,)' )
87
- self .assertEqual (
88
- self .TestTracePath .function_mapping_list [0 ].kwargs , {
89
- 'y' : 'the_sun' })
90
- self .assertGreater (
91
- self .TestTracePath .function_measuring_list [0 ].elapsed_time , 0 )
92
- self .assertEqual (
93
- self .TestTracePath .function_mapping_list [1 ].called ,
94
- 'newfunc' )
95
- self .assertEqual (
96
- self .TestTracePath .function_mapping_list [1 ].caller ,
97
- 'setUp' )
98
- self .assertEqual (
99
- str (self .TestTracePath .function_mapping_list [0 ].args ),
100
- '(2,)' )
101
- self .assertGreater (
102
- self .TestTracePath .function_measuring_list [1 ].elapsed_time , 0 )
103
- # Ensure graph is empty because we haven't explicitly added anything
104
- self .assertEqual (self .TestTracePath .graph .number_of_nodes (), 0 )
105
- self .assertEqual (self .TestTracePath .graph .number_of_edges (), 0 )
106
- # self.assertEqual(newfunc(2), 2)
84
+ def test_inspect_function_non_empty_execution (self ):
85
+ # self.assertEqual(self.myfunc(2, y="the_sun"), 2)
86
+ # Check if function invocations captured properly
87
+ self .assertEqual (len (self .TestTracePath .function_mapping_list ), 3 )
88
+ self .assertEqual (len (self .TestTracePath .function_measuring_list ), 3 )
89
+ self .assertEqual (
90
+ self .TestTracePath .function_mapping_list [0 ].called ,
91
+ 'myfunc' )
92
+ self .assertEqual (
93
+ self .TestTracePath .function_mapping_list [0 ].caller ,
94
+ 'setUp' )
95
+ self .assertEqual (
96
+ str (self .TestTracePath .function_mapping_list [0 ].args ),
97
+ '(2,)' )
98
+ self .assertEqual (
99
+ self .TestTracePath .function_mapping_list [0 ].kwargs , {
100
+ 'y' : 'the_sun' })
101
+ self .assertGreater (
102
+ self .TestTracePath .function_measuring_list [0 ].elapsed_time , 0 )
103
+ self .assertEqual (
104
+ self .TestTracePath .function_mapping_list [1 ].called ,
105
+ 'newfunc' )
106
+ self .assertEqual (
107
+ self .TestTracePath .function_mapping_list [1 ].caller ,
108
+ 'setUp' )
109
+ self .assertEqual (
110
+ str (self .TestTracePath .function_mapping_list [0 ].args ),
111
+ '(2,)' )
112
+ self .assertGreater (
113
+ self .TestTracePath .function_measuring_list [1 ].elapsed_time , 0 )
114
+ # Ensure graph is empty because we haven't explicitly added anything
115
+ self .assertEqual (self .TestTracePath .graph .number_of_nodes (), 0 )
116
+ self .assertEqual (self .TestTracePath .graph .number_of_edges (), 0 )
117
+ self .TestTracePath .construct_graph ()
118
+ not_on_stack_node = self .TestTracePath .get_node ('not_on_stack' )
119
+ self .assertEqual (not_on_stack_node .attr ["color" ], "orange" )
120
+ self .TestTracePath .display_performance ()
121
+ self .assertEqual (len (self .TestTracePath .stat_df ), 3 )
107
122
# }}}
108
123
# }}}
109
124
# {{{ Test Graph Construction
0 commit comments