Skip to content

Commit cc346e0

Browse files
committed
Better coverage for trace_path.py unit tests.
Used coverage.py to see coverage of the tests, found out that a few code paths were not accessed, remedied by adding to the unit tests.
1 parent 7c9a912 commit cc346e0

File tree

2 files changed

+50
-35
lines changed

2 files changed

+50
-35
lines changed

tft_tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ def get_dataset(self, mydataclass, location):
510510
return transformed_ds
511511

512512
# }}}
513-
# {{{
513+
# {{{ get_subset function
514514
@MyTracePath.inspect_function_execution
515515
def get_subset(self, some_dict, some_columns):
516516
getter = itemgetter(*some_columns)

trace_path_test.py

+49-34
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ def setUp(self):
1313
self.TestTracePath = TracePath(name="TestTracePath")
1414
self.TestTracePathInstrumentationDisabled = TracePath(
1515
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+
1621

1722
def test_constructor(self):
1823
self.assertEqual(len(self.TestTracePath.function_mapping_list), 0)
@@ -30,6 +35,7 @@ def test_constructor(self):
3035
self.TestTracePath.function_measuring_list,
3136
list))
3237
self.assertTrue(isinstance(self.TestTracePath.graph, pgv.AGraph))
38+
self.assertEqual(len(self.TestTracePathInstrumentationDisabled.function_mapping_list), 0)
3339

3440
# }}}
3541
# {{{ Test Instrumentation Decorator
@@ -52,10 +58,15 @@ def myfunc(x, y="the_moon"):
5258
@self.TestTracePath.inspect_function_execution
5359
def newfunc(x):
5460
return x
61+
62+
def not_on_stack(x):
63+
return newfunc(x)
64+
5565
self.EmptyTestTracePath.construct_graph()
5666
# Instrument another function and check if we don't change behavior
5767
# and we capture arguments and execution time
5868
newfunc(2)
69+
not_on_stack(2)
5970
self.empty_graph_file_name = tempfile.mktemp(suffix='.svg')
6071
self.graph_file_name = tempfile.mktemp(suffix='.svg')
6172
# }}}
@@ -70,40 +81,44 @@ def test_inspect_function_empty_execution(self):
7081
# {{{ Test Non Empty Case
7182

7283

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)
107122
# }}}
108123
# }}}
109124
# {{{ Test Graph Construction

0 commit comments

Comments
 (0)