Merge branch 'tests' into 'master'

Enhance tracetools_test

See merge request micro-ROS/ros2_tracing!14
This commit is contained in:
Christophe Bedard 2019-06-24 06:26:28 +00:00
commit 9d16302f83
7 changed files with 71 additions and 41 deletions

View file

@ -37,13 +37,12 @@ class TestServiceCallback(TraceTestCase):
start_events = self.get_events_with_name('ros2:callback_start')
for event in start_events:
self.assertValidHandle(event, 'callback')
is_intra_process_value = self.get_field(event, 'is_intra_process')
self.assertIsInstance(is_intra_process_value, int, 'is_intra_process not int')
# Should not be 1 for services (yet)
self.assertEqual(
is_intra_process_value,
self.assertFieldEquals(
event,
'is_intra_process',
0,
f'invalid value for is_intra_process: {is_intra_process_value}')
'invalid value for is_intra_process')
end_events = self.get_events_with_name('ros2:callback_end')
for event in end_events: